/* --- 1. HERO SECTION --- */
.hero {
  position: relative;
  width: 100%;
  height: 450px;
  background-image: url("/assets/images/holiday-packages/holiday-packages-hero.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero h1 {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 3.5em;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
  margin: 0;
  padding: 0 20px;
}

/* --- 2. LAYOUT & CONTAINERS --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro {
  margin: 80px auto 60px;
  text-align: center;
  max-width: 1000px;
}

.intro p {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  font-weight: 400;
}

.intro .whatsapp {
  font-weight: 600;
  color: #25d366;
}

/* --- 3. SECTIONS & HEADINGS --- */
.packages {
  margin-bottom: 80px;
  text-align: center;
}

.packages h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #83c1e0;
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
  display: block;
  border: none;
}

/* --- 4. CARD GRID  --- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* --- 5. PACKAGE CARDS --- */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Text Styling */
.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #333;
  margin: 25px 20px 10px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}

.card .price {
  display: block;
  margin: 5px 20px 10px;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #88d086;
  font-weight: 400;
  text-align: center;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  .hero {
    height: 350px;
  }
  .hero h1 {
    font-size: 2.2em;
  }

  .intro {
    margin: 50px auto;
  }
  .intro p {
    font-size: 16px;
    padding: 0 15px;
  }

  .packages h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .card-grid {
    gap: 20px;
  }
  .card {
    max-width: 100%;
  }
  .card img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 280px;
  }
  .hero h1 {
    font-size: 1.8em;
  }

  .packages h2 {
    font-size: 28px;
  }
  .card h3 {
    font-size: 18px;
  }
}
