/* ============================================================
   L'ORÉE DORÉE & MARINA — Service Pages Base (Luxury)
   ============================================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:     #ffffff;
  --cream:     #faf8f4;
  --light:     #f2ece0;
  --gold:      #c9a84c;
  --gold-dim:  rgba(201,168,76,.12);
  --dark:      #1a1a18;
  --charcoal:  #2c2c2a;
  --muted:     #6a6a68;
  --line:      rgba(26,26,24,.09);
  --green:     #1a5244;
  --blue:      #0e4e72;
  --shadow-sm: 0 2px 16px rgba(26,26,24,.06);
  --shadow-md: 0 8px 40px rgba(26,26,24,.1);
  --ease:      cubic-bezier(.25,.46,.45,.94);
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--dark);
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }
ul { list-style: none; padding: 0; }

/* --- Typography ---------------------------------------------- */
h1,h2,h3,h4 { font-family: 'Cinzel', serif; line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(1.8rem,4.5vw,3rem); }
h2 { font-size: clamp(1.4rem,3.2vw,2.2rem); }
h3 { font-size: clamp(1rem,2vw,1.3rem); }
.kicker {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.gold-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 16px 0;
}

/* --- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn.primary {
  background: var(--gold);
  color: #1a1a18;
  border-color: var(--gold);
}
.btn.primary:hover {
  background: #b8942f;
  border-color: #b8942f;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
}
.btn.ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(26,26,24,.3);
}
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn.outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn.outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* --- Hero Section --------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 6vw 72px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,12,10,.75) 0%, rgba(26,26,24,.55) 60%, transparent 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(880px,92vw);
  display: grid;
  gap: 16px;
  color: #fff;
}
.page-hero-inner .eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero-inner h1 { color: #fff; letter-spacing: .02em; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.page-hero-inner p { color: rgba(255,255,255,.82); max-width: 640px; line-height: 1.7; font-size: 1.02rem; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* --- Page Wrap ----------------------------------------------- */
.page-wrap {
  width: min(1400px,90vw);
  margin: 0 auto;
  padding: 64px 0 100px;
  display: grid;
  gap: 20px;
}

.grise-img, #grise-cart {
  opacity: 0.5;
}
/* --- Panels -------------------------------------------------- */
.panel {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px,4vw,48px);
}
.panel-head {
  margin-bottom: 36px;
}
.panel-head h2 { margin-top: 8px; }
.panel-head p { color: var(--muted); margin-top: 10px; font-size: .97rem; line-height: 1.65; max-width: 680px; }

/* --- Info Highlights ---------------------------------------- */
.highlights-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 12px;
}
.highlight-item {
  padding: 18px 20px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--cream);
  display: grid;
  gap: 5px;
}
.highlight-item strong {
  font-family: 'Cinzel', serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
}
.highlight-item span { color: var(--muted); font-size: .84rem; line-height: 1.5; }

/* --- Activity Cards ----------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(min(100%,280px),1fr));
  gap: 20px;
}
.activity-card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  position: relative;
}
.activity-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
#vtt-image{
  object-position: center 35%;
}
.activity-card:hover img { transform: scale(1.05); }
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card-body p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 12px; }
.price-table {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.price-row {
  display: flex;
  justify-content: space-between;      
  align-items: center;     
  font-size: .82rem;
}
.price-row .duration { color: var(--muted); }
.price-row .amount { font-weight: 700; color: var(--gold); }
.price { color: var(--gold); font-weight: 700; font-size: .88rem; }

/* --- Status Badges ------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.badge-available {
  background: rgba(26,82,68,.1);
  color: #1a5244;
  border: 1px solid rgba(26,82,68,.2);
}
.badge-soon {
  background: rgba(201,168,76,.1);
  color: #8a6e1e;
  border: 1px solid rgba(201,168,76,.25);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.badge-available .badge-dot { background: #1a5244; }
.badge-soon .badge-dot { background: #c9a84c; }

/* Card overlay for "bientôt disponible" */
.card-soon {
  position: relative;
  opacity: .7;
  filter: grayscale(20%);
}
.card-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250,248,244,.4);
  z-index: 1;
  pointer-events: none;
  border-radius: 6px;
}

/* --- Pack Cards --------------------------------------------- */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(100%,240px),1fr));
  gap: 16px;
}
.bundle-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 22px;
  background: var(--cream);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.bundle-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(201,168,76,.12); }
.bundle-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.bundle-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 14px; }
.bundle-card ul { display: grid; gap: 7px; }
.bundle-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.bundle-card ul li::before {
  content: '';
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}

/* --- FAQ Items ----------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 20px;
  background: var(--cream);
}
.faq-item h3 { font-size: .92rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: .86rem; line-height: 1.6; }

/* --- Final CTA Panel ---------------------------------------- */
.final-cta {
  text-align: center;
  padding: clamp(36px,5vw,56px) clamp(20px,4vw,48px);
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  border-radius: 6px;
  display: grid;
  gap: 16px;
  justify-items: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,.1) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(26,82,68,.12) 0%, transparent 50%);
}
.final-cta h2 { color: #fff; position: relative; font-size: clamp(1.2rem,3vw,1.8rem); }
.final-cta p { color: rgba(255,255,255,.65); max-width: 600px; font-size: .95rem; position: relative; line-height: 1.65; }
.final-cta .btn { position: relative; }

/* --- Practical Info ----------------------------------------- */
.practical-info {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: .8rem;
  color: var(--charcoal);
  font-weight: 500;
}
.info-chip strong { color: var(--dark); }

/* --- WhatsApp FAB -------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.whatsapp-fab svg { width: 26px; height: 26px; fill: #fff; }

/* --- Footer -------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: clamp(56px,8vw,90px) clamp(20px,6vw,56px) 0;
}
.footer-container {
  max-width: 1400px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: .86rem; line-height: 1.7; margin-bottom: 20px; }
.footer-brand .contact-list { display: grid; gap: 8px; }
.footer-brand .contact-list p { margin: 0; font-size: .84rem; }
.footer-brand .contact-list a { color: var(--gold); }
.footer-links h4, .footer-contact h4 {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-links a,
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .25s, padding-left .2s;
  line-height: 1.6;
  text-decoration: none;
}
.footer-links a:last-child,
.footer-contact a:last-child,
.footer-contact p:last-child {
  border-bottom: none;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-bottom {
  max-width: 1400px;
  margin-inline: auto;
  padding: 20px 0;
  font-size: .76rem;
  color: rgba(255,255,255,.28);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Reveal on scroll ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive ---------------------------------------------- */
@media (max-width: 1100px) {
  .page-wrap { width: min(1400px,93vw); }
  .cards-grid { grid-template-columns: repeat(auto-fill,minmax(min(100%,260px),1fr)); }
}
@media (max-width: 900px) {
  .bundle-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .highlights-strip { grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); }
}
@media (max-width: 768px) {
  .page-hero { min-height: 62vh; padding: 100px 5vw 56px; }
  .panel { padding: clamp(18px,4vw,32px); }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .page-wrap { padding: 36px 0 64px; width: 94vw; }
  .cards-grid { grid-template-columns: 1fr; }
  .bundle-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .page-hero-actions { flex-direction: column; align-items: flex-start; }
  .page-hero { min-height: 55vh; padding: 90px 5vw 48px; }
  .highlights-strip { grid-template-columns: 1fr 1fr; }
  .btn { padding: 12px 24px; font-size: .78rem; }
  h1 { font-size: clamp(1.6rem,6vw,2.4rem); }
  h2 { font-size: clamp(1.3rem,5vw,1.8rem); }
}
