/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  scroll-behavior: smooth;
  transition: background-color 0.5s ease;
}

/* Header */
header {
  text-align: center;
  padding: 2rem;
  background-color: #1f1f1f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  animation: fadeInDown 1s ease-in-out;
}

.subtitle {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

/* Language Buttons */
.lang-switch button {
  margin: 0.3rem;
  padding: 0.5rem 1rem;
  border: none;
  background-color: #444;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-switch button:hover {
  background-color: #ff3333;
  transform: scale(1.05);
}

/* Section Styling */
section {
  padding: 2rem;
  border-bottom: 1px solid #333;
  animation: fadeIn 0.8s ease;
}

h2 {
  color: #ff3333;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

h2:hover {
  color: #ff6666;
}

/* News List */
ul {
  padding-left: 1.2rem;
  list-style-type: none;
  margin: 0;
}

/* News Card */
.news-item {
  display: flex;
  gap: 10px;
  background-color: #222;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(10px);
  opacity: 0;
  animation: slideUp 0.6s ease forwards;
}

.news-img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.news-img:hover {
  transform: scale(1.05);
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 1rem;
  font-weight: bold;
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title:hover {
  color: #ffa500;
  text-decoration: underline;
}

.news-meta {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.3rem;
}

/* Map */
#map {
  height: 400px;
  width: 100%;
  margin: 1rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease;
}

/* Video Embeds */
iframe {
  margin: 1rem 0;
  border-radius: 8px;
  width: 100%;
  height: 315px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background-color: #1f1f1f;
  padding: 1rem;
  text-align: center;
  color: #aaa;
  font-size: 0.85rem;
  border-top: 1px solid #333;
}

/* Small Notes */
.note {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 1rem;
  animation: fadeIn 1s ease-in;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
