/* ============================================
   VANDANISM ART — Les Art Page Styles
   css/les.css
   ============================================ */

#les { background: var(--white); }

/* --- HEADER --- */
.les-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

/* --- MEDIUM TABS --- */
.medium-tabs-wrap {
  max-width: 1100px; margin: 0 auto 16px;
  display: flex; justify-content: center;
}

.medium-tabs {
  display: inline-flex;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 40px;
  padding: 4px;
  gap: 4px;
}

.medium-tab {
  padding: 11px 32px;
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 30px;
  cursor: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.25s, color 0.25s;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.medium-tab.active {
  background: var(--coral);
  color: var(--white);
}
.medium-tab:not(.active):hover {
  background: var(--cream-dark);
  color: var(--ink-soft);
}

/* --- PACKAGES TITLE --- */
.les-packages-title {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 20px; color: var(--wood);
  margin-bottom: 36px;
}

/* --- MEDIUM CONTENT PANELS --- */
.medium-panel { display: none !important; }
.medium-panel.active { display: block !important; }

/* --- PACKAGES GRID --- */
.les-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* --- PACKAGE CARD --- */
.package-card {
  border: 1.5px solid var(--cream-dark);
  border-radius: 24px;
  padding: 36px 28px;
  background: var(--white);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(139,94,60,0.12);
}
.package-card.featured {
  border-color: var(--coral);
  background: var(--ink);
}

.featured-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
}

.package-emoji { font-size: 32px; margin-bottom: 16px; }

.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; margin-bottom: 4px;
  color: var(--ink);
}
.package-card.featured .package-name { color: var(--cream); }

.package-tagline {
  font-size: 13px; color: var(--muted);
  margin-bottom: 24px; font-style: italic;
}
.package-card.featured .package-tagline { color: var(--wood-pale); }

.package-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.package-card.featured .package-price { border-color: rgba(245,239,224,0.15); }

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 600;
  color: var(--coral);
}
.price-unit { font-size: 13px; color: var(--muted); }
.package-card.featured .price-unit { color: var(--wood-pale); }

/* --- FEATURES LIST --- */
.package-features { list-style: none; margin-bottom: 24px; }
.package-features li {
  font-size: 14px; padding: 7px 0;
  color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--cream-dark);
}
.package-features li:last-child { border-bottom: none; }
.package-card.featured .package-features li {
  color: rgba(245,239,224,0.85);
  border-color: rgba(245,239,224,0.08);
}
.package-features li::before {
  content: '✦';
  color: var(--coral);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* --- BENEFITS BOX --- */
.package-benefits {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--cream);
  margin-bottom: 28px;
  font-size: 13px; color: var(--muted);
  line-height: 1.8;
}
.package-card.featured .package-benefits {
  background: rgba(245,239,224,0.07);
  color: var(--wood-pale);
}

/* --- BOOK BUTTON --- */
.btn-book {
  display: block; text-align: center;
  background: var(--coral);
  color: var(--white);
  padding: 14px;
  border-radius: 40px;
  font-size: 14px; font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn-book:hover { background: var(--wood); transform: translateY(-2px); }

/* --- NOTE --- */
.les-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px; color: var(--muted);
  font-style: italic;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .medium-tab { padding: 11px 20px; font-size: 13px; }
  .les-packages { grid-template-columns: 1fr; max-width: 420px; }
}