/* ===========================================================
   AZEES TRAVELS MAURITIUS — Brand System
   Luxury · Minimal · Premium · Warm
   =========================================================== */

:root {
  /* Brand */
  --plum:        #7c236a;
  --plum-700:    #661a56;
  --plum-900:    #3f1035;
  --plum-tint:   #f6edf4;
  --gold:        #ba9c62;
  --gold-600:    #a5854b;
  --gold-tint:   #f7f2e8;

  /* Neutrals */
  --ink:         #2a2130;
  --ink-2:       #5b5162;
  --muted:       #8a8090;
  --line:        #ece7ef;
  --line-2:      #e2dce6;
  --bg:          #ffffff;
  --bg-soft:     #faf8fb;
  --bg-cream:    #fbf9f4;

  /* Feedback */
  --wa:          #25d366;
  --wa-700:      #1da851;
  --star:        #e5a516;

  /* Shape & depth */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --sh-sm: 0 2px 10px rgba(63,16,53,.06);
  --sh-md: 0 14px 40px -18px rgba(63,16,53,.24);
  --sh-lg: 0 30px 70px -30px rgba(63,16,53,.34);
  --sh-gold: 0 14px 34px -14px rgba(186,156,98,.5);

  /* Type */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-serif:   'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-btn:     'Poppins', 'Inter', sans-serif;

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--plum); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--plum-900); }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 600; color: var(--ink); margin: 0; line-height: 1.12; letter-spacing: -.01em; }
p { margin: 0; }
button { font-family: var(--f-btn); cursor: pointer; }
:focus-visible { outline: 3px solid rgba(124,35,106,.35); outline-offset: 2px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--bg-cream); }
.center { text-align: center; }

/* ---------- Eyebrow / heads ---------- */
.eyebrow {
  font-family: var(--f-btn);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.center .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.h-xl { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.h-lg { font-size: clamp(1.9rem, 4vw, 2.75rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2rem); }
.lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-2); max-width: 60ch; }
.center .lede { margin-left: auto; margin-right: auto; }
.sec-head { margin-bottom: 44px; }
.sec-head .h-lg { margin-top: 14px; }
.gold-word { color: var(--plum); font-style: italic; font-family: var(--f-serif); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--f-btn);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  border-radius: var(--r-pill);
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--plum { background: var(--plum); color: #fff; box-shadow: var(--sh-md); }
.btn--plum:hover { background: var(--plum-700); color: #fff; }
.btn--gold { background: var(--gold); color: #3a2e12; box-shadow: var(--sh-gold); }
.btn--gold:hover { background: var(--gold-600); color: #2e2410; }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); color:#fff; }
.btn--outline { background: #fff; color: var(--plum); border: 1.5px solid var(--line-2); box-shadow: var(--sh-sm); }
.btn--outline:hover { border-color: var(--plum); color: var(--plum); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-700); color:#fff; }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Chips / tags ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-btn); font-weight: 500; font-size: 12.5px;
  padding: 7px 13px; border-radius: var(--r-pill);
  background: var(--plum-tint); color: var(--plum);
}
.chip--gold { background: var(--gold-tint); color: var(--gold-600); }
.chip--ghost { background: rgba(255,255,255,.16); color:#fff; border:1px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.tag {
  font-family: var(--f-btn); font-weight: 600; font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-600);
}

/* ---------- Star rating ---------- */
.stars { color: var(--star); letter-spacing: 1px; font-size: 13px; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__row { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 700; font-size: 20px; color: var(--plum); letter-spacing: -.01em; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--plum), var(--plum-900));
  color: var(--gold); display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 19px;
  box-shadow: inset 0 0 0 1.5px rgba(186,156,98,.5);
}
.brand small { display:block; font-family: var(--f-btn); font-weight: 500; font-size: 9.5px; letter-spacing: .28em; color: var(--gold-600); text-transform: uppercase; margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__links a {
  font-family: var(--f-btn); font-weight: 500; font-size: 14.5px; color: var(--ink);
  padding: 9px 13px; border-radius: 10px;
}
.nav__links a:hover, .nav__links a.is-active { background: var(--plum-tint); color: var(--plum); }

/* Dropdown mega-menu */
.nav__item { position: relative; }
.nav__item > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__item > a .caret { width: 13px; height: 13px; transition: transform .2s ease; }
.nav__item:hover > a .caret, .nav__item:focus-within > a .caret { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 14px; width: 340px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 70;
}
.nav__item:hover > .nav__menu, .nav__item:focus-within > .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav__menu a {
  display: flex; align-items: center; gap: 9px; padding: 10px 11px; border-radius: 9px;
  font-family: var(--f-btn); font-weight: 500; font-size: 14px; color: var(--ink);
}
.nav__menu a:hover { background: var(--plum-tint); color: var(--plum); }
.nav__menu a svg { width: 15px; height: 15px; color: var(--gold-600); flex: none; }
.nav__menu .nav__menu-all { grid-column: span 2; margin-top: 6px; border-top: 1px solid var(--line); padding-top: 12px; justify-content: center; color: var(--plum); font-weight: 600; }
.drawer__group { font-family: var(--f-btn); font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 14px 12px 4px; }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__phone { font-family: var(--f-btn); font-weight:600; font-size:14px; color: var(--ink); display:flex; align-items:center; gap:7px; white-space: nowrap; }
.nav__phone svg { width:16px;height:16px;color:var(--plum); }
.nav__toggle { display:none; background:none;border:0; width:42px;height:42px; border-radius:10px; color:var(--plum); }
.nav__toggle:hover { background: var(--plum-tint); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.drawer.is-open { display: block; }
.drawer__scrim { position:absolute; inset:0; background: rgba(40,20,44,.5); backdrop-filter: blur(2px); }
.drawer__panel {
  position: absolute; top:0; right:0; height:100%; width: min(340px, 84vw);
  background:#fff; padding: 22px; box-shadow: var(--sh-lg);
  display:flex; flex-direction:column; gap: 6px; overflow-y:auto;
  transform: translateX(8px); animation: slideIn .22s ease forwards;
}
@keyframes slideIn { to { transform: translateX(0); } }
.drawer__panel a { font-family: var(--f-btn); font-weight:500; font-size:16px; color:var(--ink); padding:13px 12px; border-radius:12px; }
.drawer__panel a:hover { background: var(--plum-tint); color: var(--plum); }
.drawer__head { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.drawer__head button { background:none;border:0;color:var(--muted); width:38px;height:38px;border-radius:10px; }

/* ===========================================================
   FLOATING WHATSAPP + MOBILE BOTTOM BAR
   =========================================================== */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color:#fff; display:grid; place-items:center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.6);
  animation: waPulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse { 0%,100%{ box-shadow:0 12px 30px -6px rgba(37,211,102,.6);} 50%{ box-shadow:0 12px 30px -2px rgba(37,211,102,.85);} }

.mbar { display: none; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--plum-900); color: #e9dcea; padding: 72px 0 0; }
.footer a { color: #d9c7da; }
.footer a:hover { color: var(--gold); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand { color: #fff; }
.footer h5 { font-family: var(--f-btn); font-weight:600; font-size:13px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold); margin:0 0 16px; }
.footer ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; font-size:14.5px; }
.footer__blurb { color:#cbb6cd; font-size:14.5px; margin:16px 0 20px; max-width: 34ch; }
.footer__office { font-size:14px; color:#d9c7da; line-height:1.7; }
.footer__office strong { color:#fff; font-family:var(--f-btn); font-weight:600; }
.socials { display:flex; gap:10px; margin-top:16px; }
.socials a { width:38px;height:38px;border-radius:10px; background:rgba(255,255,255,.09); display:grid;place-items:center; color:#e9dcea; }
.socials a:hover { background: var(--gold); color: var(--plum-900); }
.socials svg { width:18px;height:18px; }
.footer__bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:22px 0; font-size:13px; color:#bda3bf; flex-wrap:wrap; }
.footer__bottom a { color:#bda3bf; }

/* ===========================================================
   CARDS
   =========================================================== */
.card {
  background:#fff; border:1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--line-2); }
.card__media { position: relative; }
.card__media image-slot { width:100%; }
.card__badge {
  position:absolute; top:12px; left:12px; z-index:2;
  background: rgba(255,255,255,.92); color: var(--plum); backdrop-filter: blur(4px);
  font-family:var(--f-btn); font-weight:600; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 11px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
.card__wish {
  position:absolute; top:12px; right:12px; z-index:2; width:36px;height:36px;border-radius:50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px); border:0; display:grid;place-items:center;
  color: var(--plum); box-shadow: var(--sh-sm); transition: transform .15s ease, color .15s ease;
}
.card__wish:hover { transform: scale(1.12); }
.card__wish.is-on { color: #e0447a; }
.card__wish svg { width:18px; height:18px; }

/* image-slot placeholder look inside brand */
image-slot { background: linear-gradient(135deg, var(--plum-tint), var(--gold-tint)); display:block; min-height:180px; }

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Shared sub-page hero ---------- */
.subhero { background: linear-gradient(120deg, var(--plum-900), var(--plum)); color:#fff; padding: 56px 0 44px; position: relative; overflow: hidden; }
.subhero::after { content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%; background: radial-gradient(circle, rgba(186,156,98,.28), transparent 70%); }
.subhero .wrap { position: relative; z-index: 1; }
.subhero .crumbs { font-family:var(--f-btn); font-size:12.5px; color:rgba(255,255,255,.7); margin-bottom:14px; }
.subhero .crumbs a { color:rgba(255,255,255,.7); }
.subhero .crumbs a:hover { color: var(--gold); }
.subhero h1 { color:#fff; font-size: clamp(2rem,4.6vw,3.1rem); }
.subhero .eyebrow { color: var(--gold); }
.subhero .eyebrow::before, .subhero .eyebrow::after { background: var(--gold); }
.subhero p { color:rgba(255,255,255,.86); max-width:56ch; margin-top:12px; font-size:1.05rem; }

/* ---------- Prose (legal / blog body) ---------- */
.prose { max-width: 74ch; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 12px; }
.prose h3 { font-family: var(--f-btn); font-weight: 600; font-size: 1.05rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--ink-2); font-size: 15.5px; line-height: 1.75; }
.prose p { margin-bottom: 14px; }
.prose ul { padding-left: 20px; margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .muted { color: var(--muted); font-size: 13px; }

/* Utility */
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }
.hide-mob { display: initial; }
.divider { height:1px; background: var(--line); border:0; margin:0; }

@media (max-width: 960px) {
  .g-4 { grid-template-columns: repeat(2,1fr); }
  .g-3 { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 1040px) {
  .nav__phone { display: none; }
  .nav__links { gap: 2px; margin-left: 4px; }
  .nav__links a { padding: 9px 10px; font-size: 14px; }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: grid; place-items:center; }
  .section { padding: 60px 0; }
  .wa-float { bottom: 84px; }
  .mbar {
    display: grid; grid-template-columns: repeat(3,1fr);
    position: fixed; left:0; right:0; bottom:0; z-index:80;
    background:#fff; border-top:1px solid var(--line); box-shadow: 0 -6px 24px -10px rgba(63,16,53,.25);
  }
  .mbar a { display:flex; flex-direction:column; align-items:center; gap:3px; padding:9px 4px; font-family:var(--f-btn); font-weight:600; font-size:11px; color:var(--ink); }
  .mbar a svg { width:20px;height:20px; }
  .mbar a.mbar--wa { color: var(--wa-700); }
  .mbar a.mbar--book { background: var(--plum); color:#fff; }
  body { padding-bottom: 58px; }
}
@media (max-width: 560px) {
  .g-4, .g-3, .g-2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hide-mob { display:none; }
  .wrap { padding: 0 18px; }
}

/* ===========================================================
   WORDPRESS INTEGRATION OVERRIDES (added post-port)
   =========================================================== */

/* Button label colours must always win over the theme's link colour */
.btn{ text-decoration:none !important; }
.btn--plum, .btn--plum:link, .btn--plum:visited, .btn--plum:hover, .btn--plum:focus{ color:#fff !important; }
.btn--gold, .btn--gold:link, .btn--gold:visited, .btn--gold:hover, .btn--gold:focus{ color:#3a2e12 !important; }
.btn--outline, .btn--outline:link, .btn--outline:visited, .btn--outline:focus{ color:var(--plum) !important; }
.btn--outline:hover{ color:var(--plum) !important; }
.btn--ghost{ color:#fff !important; }

/* WhatsApp elements -> brand plum (was green) */
.btn--wa, .btn--wa:link, .btn--wa:visited, .btn--wa:focus{ background:var(--plum) !important; color:#fff !important; }
.btn--wa:hover{ background:var(--plum-900) !important; color:#fff !important; }
.wa-float{ background:var(--plum) !important; color:#fff !important; box-shadow:0 12px 30px -6px rgba(124,35,106,.55) !important; animation:none !important; }
.mbar a.mbar--wa{ color:var(--plum) !important; }

/* Nav 'Enquire Now' pill keeps white text */
.nav__cta .btn--plum{ color:#fff !important; }

/* Hero placeholder: rich brand gradient so the badge + headline stay readable
   until a real hero photo is uploaded (Azees Site -> Homepage hero image). */
.hero__bg .img-slot{ background:linear-gradient(150deg, var(--plum-900) 0%, var(--plum) 55%, var(--gold-600) 120%) !important; }
.hero__badge{ background:rgba(40,15,44,.30); border-color:rgba(255,255,255,.45); }

/* ----- Neutralise theme <button> styling on our custom icon/text controls ----- */
.nav__toggle, .drawer__head button{ background:transparent !important; border:0 !important; box-shadow:none !important; color:var(--plum) !important; }
.nav__toggle:hover{ background:var(--plum-tint) !important; }
.faq__q{ background:transparent !important; border:0 !important; box-shadow:none !important; color:var(--ink) !important; }
.day__head{ background:transparent !important; box-shadow:none !important; }
.card__wish{ border:0 !important; }

/* ----- Mobile hero: hide the scroll cue (was overlapping CTAs) + tidy height ----- */
@media (max-width:820px){
  .hero__scroll{ display:none !important; }
  .hero{ min-height:74vh; }
  .hero__inner{ padding-bottom:48px; }
}

/* ----- Header: solid white at all times (no translucency tint on scroll) ----- */
.nav{ background:#fff !important; -webkit-backdrop-filter:none !important; backdrop-filter:none !important; box-shadow:0 2px 12px -4px rgba(63,16,53,.12); }

/* ----- Hero refinement: smaller, more elegant headline + breathing room ----- */
.hero h1{ font-size:clamp(1.9rem, 3.4vw, 3rem) !important; line-height:1.16; letter-spacing:-.015em; max-width:19ch; font-weight:600; }
.hero__sub{ font-size:clamp(1rem, 1.25vw, 1.12rem); margin:16px 0 26px; }
.hero__badge{ margin-bottom:20px; }
@media (min-width:821px){
  .hero{ min-height:80vh; }
  .hero__inner{ padding-top:46px; padding-bottom:70px; }
}

/* ----- Mobile: hamburger as a clear plum button; tighter hero type ----- */
@media (max-width:820px){
  .nav__toggle{ background:var(--plum) !important; color:#fff !important; border-radius:12px; width:44px; height:44px; }
  .nav__toggle svg{ color:#fff; width:22px; height:22px; }
  .hero h1{ font-size:clamp(1.7rem, 7vw, 2.2rem) !important; }
  .hero__badge{ font-size:12px; }
}

/* ----- Full-bleed content area on Azees pages + destination/package singles ----- */
.azees-page .site-content, .single-destination .site-content, .single-package .site-content,
.azees-page #primary, .single-destination #primary, .single-package #primary,
.azees-page .site-main, .single-destination .site-main, .single-package .site-main{ padding:0 !important; margin:0 !important; }
.azees-page .ast-container, .single-destination .ast-container, .single-package .ast-container{ max-width:100% !important; padding-left:0 !important; padding-right:0 !important; }
.azees-page .site-main > article, .single-destination .site-main > article, .single-package .site-main > article,
.azees-page .entry-content, .single-destination .entry-content, .single-package .entry-content{ padding:0 !important; margin:0 !important; }
.azees-page #content, .single-destination #content, .single-package #content{ padding-top:0 !important; }
