/* ═══════════════════════════════════════════════
   PACKAGES PAGE — packages.css
   Vesora Films
   ═══════════════════════════════════════════════ */

/* ---- HERO ---- */
.pkg-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1612 0%, #2c2420 35%, #0e0e0e 70%, #1c1c1c 100%);
}

.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.pkg-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}

.pkg-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.pkg-hero-subtitle {
  font-size: 0.7rem;
  letter-spacing: 6px;
  font-weight: 300;
  color: var(--champagne);
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- INTRO ---- */
.pkg-intro {
  background: var(--cream);
  padding: 80px 5% 60px;
  text-align: center;
}

.pkg-intro-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pkg-intro-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 24px;
}

.pkg-intro-body {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: #555;
}

.pkg-intro-body em {
  color: var(--rose);
  font-style: italic;
}

/* ---- PACKAGES GRID ---- */
.pkg-grid-section {
  background: var(--cream);
  padding: 20px 5% 80px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 32px;
  align-items: start;
}

/* ---- PACKAGE CARD ---- */
.pkg-card {
  background: #fff;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 2px;
  padding: 44px 36px 40px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

/* Featured card */
.pkg-card--featured {
  background: var(--dark);
  border-color: var(--champagne);
  transform: translateY(-8px);
}

.pkg-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* Badge */
.pkg-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--champagne);
  color: #fff;
  font-size: 0.55rem;
  letter-spacing: 3px;
  font-weight: 400;
  padding: 6px 16px;
  white-space: nowrap;
  border-radius: 0 0 2px 2px;
}

/* Card header */
.pkg-card-header {
  text-align: center;
  margin-bottom: 28px;
}

.pkg-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--champagne);
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}

.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.pkg-card--featured .pkg-name { color: #fff; }

.pkg-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pkg-starting {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 400;
}

.pkg-card--featured .pkg-starting { color: rgba(255,255,255,0.5); }

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.pkg-card--featured .pkg-price { color: var(--champagne); }

/* Divider */
.pkg-divider {
  width: 40px;
  height: 1px;
  background: var(--champagne);
  margin: 0 auto 28px;
  opacity: 0.5;
}

/* List */
.pkg-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.5;
  color: #444;
}

.pkg-card--featured .pkg-list li { color: rgba(255,255,255,0.75); }

.pkg-icon {
  color: var(--champagne);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Button */
.pkg-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  color: var(--dark);
  background: transparent;
  border-radius: 1px;
  transition: background 0.25s ease, color 0.25s ease;
}

.pkg-btn:hover {
  background: var(--dark);
  color: #fff;
}

.pkg-btn--light {
  border-color: var(--champagne);
  color: var(--champagne);
  background: transparent;
}

.pkg-btn--light:hover {
  background: var(--champagne);
  color: #fff;
}

/* Note below grid */
.pkg-note {
  text-align: center;
  font-size: 0.72rem;
  color: #aaa;
  letter-spacing: 0.5px;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

/* ---- FAQ ---- */
.pkg-faq {
  background: #EDE8E2;
  padding: 80px 5%;
}

.pkg-faq-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pkg-faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 1px;
}

.pkg-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.pkg-faq-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: #8a6d3b;
  margin-bottom: 12px;
}

.pkg-faq-item p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 900px) {
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pkg-card--featured {
    transform: none;
    order: -1;
  }

  .pkg-card--featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  .pkg-faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pkg-card { padding: 36px 24px 32px; }
  .pkg-hero { height: 50vh; min-height: 300px; }
  .pkg-faq { padding: 60px 5%; }
}
