@media (max-width: 768px) {
  header h1 {
    font-size: 1.6em;
  }

  .banner {
    padding: 80px 15px;
    background-position: center;
  }

  .card img {
    height: 160px;
  }

  footer {
    font-size: 0.85em;
    padding: 15px;
  }
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
  scroll-behavior: smooth;
}

header {
  background: linear-gradient(135deg, #2c3e50, #1abc9c);
  color: #fff;
  padding: 25px 0;
  text-align: center;
  letter-spacing: 1px;
  animation: fadeDown 1s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

nav {
  display: flex;
  justify-content: center;
  background: #34495e;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: #fff;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #1abc9c;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #1abc9c;
}

nav a:hover::after {
  width: 60%;
}

/* ===== BANNER ===== */
.banner {
  background: url("../images/24066.webp") no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 140px 20px;
  animation: zoomIn 2s ease;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.banner h1, .banner p {
  position: relative;
  z-index: 1;
}

.banner h1 {
  font-size: 3em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  margin-bottom: 10px;
}

.banner p {
  font-size: 1.2em;
  opacity: 0.95;
}

.container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.container h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2em;
  margin-bottom: 35px;
  position: relative;
}

.container h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #1abc9c;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  transform: translateY(0);
  opacity: 0;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card h3 {
  margin: 12px;
  color: #2c3e50;
}

.card p {
  margin: 0 12px 18px;
  font-size: 0.9em;
  color: #555;
}

#video {
  text-align: center;
  background: #f9f9f9;
  padding: 70px 20px;
  border-top: 2px solid #eee;
}

#video h2 {
  font-size: 2em;
  color: #2c3e50;
  margin-bottom: 25px;
}

#video iframe {
  width: 80%;
  max-width: 800px;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

#video iframe:hover {
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 25px;
  background: #2c3e50;
  color: #fff;
  font-size: 0.95em;
  margin-top: 40px;
  letter-spacing: 0.5px;
}

footer a {
  color: #1abc9c;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #16a085;
}

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes zoomIn {
  from {transform: scale(1.1); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

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