@import url('https://fonts.cdnfonts.com/css/euclid-circular-a');

@font-face {
    font-family: "Euclid Circular A";
    src: url("../font/EuclidCircularA-Medium.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    }

    /* Euclid Circular A - SemiBold */
    @font-face {
    font-family: "Euclid Circular A";
    src: url("../font/Euclid CircularA-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    }

    /* Baskerville (Italic, Regular) */
    @font-face {
    font-family: "Baskerville Custom";
    src: url("../font/baskervi.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    }

    /* Baskerville Bold Italic */
    @font-face {
    font-family: "Baskerville Custom";
    src: url("../font/BaskervilleBoldItalicBT.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
    }

/* Theme */
:root{
  --bg: #fffbf5;
  --theme: #a95917;
  --yellow: #fbf7ba;
    /* Animation helpers */
  --ease-swag:cubic-bezier(.22,1,.36,1);
  --shadow:0 10px 30px rgba(0,0,0,.07);
  --green:#25D366;
  --green-dark:#1ebe5d;
  --accent:#7b3f14;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family: 'Euclid Circular A', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--theme);
  overflow-x: hidden;
}

/* Header (same feel as main site) */
.navbar{
  position: sticky; top:0; z-index: 20;
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 5%;
  background: var(--bg);
  border-bottom: 1px solid rgba(169,89,23,.08);
}
.logo img{ height: 54px; width:auto; display:block; }
.nav-right{ display:flex; align-items:center; gap:14px; }
.book-btn{
  background: var(--theme); color: var(--bg);
  text-decoration:none;
  padding: 10px 22px; border-radius: 999px; font-weight: 700; letter-spacing:.06em;
}
.menu-icon{ display:flex; flex-direction:column; gap:6px; background:none; border:0; cursor:pointer; }
.menu-icon span{ width:28px; height:2px; background:var(--theme); display:block; border-radius:2px; }

/* ---------- Hero ---------- */
.event-hero{
  position: relative;     
  background: var(--bg);
  width: 100%;
  overflow: hidden;
}

.events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 80px);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
}

.events-header h2 {
  font-family: "Baskerville Custom", serif;
  font-size: clamp(88px, 4.5vw, 52px);
  color: #a95917;
  font-style: italic;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.events-header p {
  margin: 0;
  max-width: 600px;
  color: var(--theme);
  font-size: 16px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.15s;
}

/* show the header immediately */
.events-header h2,
.events-header p {
  opacity: 1;
  transform: none;
}


/* add this below the existing rules */
.events-header.show h2,
.events-header.show p {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
  @media (max-width: 768px) {
    .events-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
    .events-header h2 {
      font-size: 34px;
    }
  }


/* Banner image wrapper */
.event-hero-image{
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0;              /* image touches edges like design */
  z-index: 1;
}

.event-hero-image img{
  width: 100%;
  height: clamp(340px, 55vw, 520px);
  object-fit: cover;
  display:block;
  /* sit under the overlapping title */
  margin-top: -38px;
  object-position: center 80%;
  height: 70vh;
}


/* ---------- Events Types Grid ---------- */
.event-types{
  background: var(--bg);              /* slightly darker band like the mock */
  padding: clamp(28px, 5vw, 44px) 5% clamp(36px, 6vw, 56px);
}

.et-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}

/* Card */
.et-card{
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
}

/* Media with hover zoom-out */
.et-media{
  position: relative;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 16 / 10;            /* matches screenshot proportions */
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
}
.et-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);           /* start slightly zoomed IN */
  transition: transform .35s ease;  /* hover will ZOOM OUT a bit */
}
.et-card:hover .et-media img{
  transform: scale(1.0);            /* zoom OUT by ~6% on hover */
}

/* Text */
.et-title{
  font-weight: 700;
  color: var(--theme);
  letter-spacing: .04em;
  font-size: clamp(16px, .7vw + 14px, 18px);
}

.et-desc{
  color: rgba(0,0,0,.68);
  line-height: 1.7;
  letter-spacing: .02em;
  font-size: clamp(13px, .6vw + 10px, 15px);
}

/* Responsive */
@media (max-width: 860px){
  .et-wrap{ grid-template-columns: 1fr; }
  .et-media{ aspect-ratio: 16/9; }
}


/* Responsive */
@media (max-width: 900px){
  .hero-caption{
    left: 5%;
    right: 5%;
    top: 16px;
    max-width: none;
  }
  .event-title{
    transform: translateY(18px);
  }
  .event-hero-image img{
    margin-top: -30px;
    object-position: center 70%;
  }
}

/* ===== Brand Showcase Slider (combined) ===== */
.brand-tabs {
  background: var(--bg);
  display: flex;
  justify-content: center;
}

.tabs-container.single-brand-slider {
  max-width: 1200px;
  width: 100%;
}

/* hide old brand list (no more tabs) */
.brand-list {
  display: none;
}

/* Outer slider viewport */
.brand-slider {
  position: relative;
  border-radius: 18px;
  background: var(--bg);

  overflow: hidden;          /* keep to clip neighbours left/right */
  padding-block: 40px;       /* gives vertical breathing room */
}


/* allow neighbours to peek in */
.brand-slider-single {
  display: flex;
  align-items: center;
  padding-inline: 40px;
}

/* The sliding row */
.brand-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  transition: transform .6s var(--ease-swag);
  will-change: transform;
}

/* Each slide */
.brand-item {
  position: relative;
  flex: 0 0 70%;        /* neighbours can still peek in */
  aspect-ratio: 4 / 3;  /* 🔸 fixed card shape */
  border-radius: 14px;
  overflow: hidden;

  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;

  /* neighbour look */
  opacity: 0.7;
  transform: scale(0.9);
  transition:
    transform .4s var(--ease-swag),
    opacity .4s ease;
}

/* Active (center) slide */
.brand-item.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Make images fill card evenly */
.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* crop instead of squish; all equal height */
  display: block;
}




/* Brand label chip */
.brand-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--theme);
  color: #fff;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Arrows */
.brand-slider-single .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.brand-slider-single .slider-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-slider-single .slider-btn:hover {
  transform: translateY(-50%) scale(1.03);
}

.brand-slider-single .slider-btn.prev { left: 12px; }
.brand-slider-single .slider-btn.next { right: 12px; }


/* Responsive tweaks */
@media (max-width: 1024px) {
  .brand-slider {
    min-height: 400px;
  }
  .brand-slider-single {
    padding-inline: 24px;
  }
  .brand-item {
    flex-basis: 80%;
  }
}

/* ===== Mobile: Past Events slider ===== */
@media (max-width: 768px) {

  /* tighten spacing above "Past Events" */
  .core-content-1 {
    padding-top: 1.5rem;
    margin-bottom: 0.25rem;
  }

  /* section padding left/right + smaller vertical */
  .brand-tabs {
    padding: 8px 16px 24px;   /* top | left/right | bottom */
  }

  /* smaller vertical padding inside box */
  .brand-slider {
    padding-block: 12px;
  }

  /* content already padded by .brand-tabs */
  .brand-slider-single {
    padding-inline: 0;
  }

  /* only one slide visible – no peeking */
  .brand-track {
    gap: 0;
  }

  .brand-item {
    flex: 0 0 100%;           /* full width within slider */
    max-width: 100%;
    opacity: 1;
    transform: scale(1);
  }

  /* slightly smaller arrows, pulled inwards */
  .brand-slider-single .slider-btn {
    width: 40px;
    height: 40px;
  }

  .brand-slider-single .slider-btn.prev { left: 4px; }
  .brand-slider-single .slider-btn.next { right: 4px; }
}






:root{
  --brand:#c79a5a;
  --theme:#a95917;
  --page-bg:#0e0e0e;
  --ease:cubic-bezier(.22,1,.36,1);
  --card-w:350px; --card-h:500px;
}

img{max-width:100%;height:auto;display:block}

/* ===== Section ===== */
.core{
  min-height:100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:40px 18px 60px;
}

.core-content{ 
  text-align:center; 
}

.core-title{
  font-family:'Baskerville';
  font-weight:700; letter-spacing:.02em;
  font-size:clamp(24px,4vw,40px);
  margin:0 0 6px;
  opacity:0; transform:translateY(14px);
  animation: fadeUp .9s var(--ease) .1s forwards;
  color: var(--theme);
}

.core-content-1{ 
  text-align:center; 
  padding-top: 3rem;
}

.core-title-1{
  font-family:'Baskerville';
  font-weight:700; letter-spacing:.02em;
  font-size:clamp(24px,4vw,40px);
  opacity:0; transform:translateY(14px);
  animation: fadeUp .9s var(--ease) .1s forwards;
  color: var(--theme);
} 

.core-sub{
  margin:0 0 20px; color:rgba(255,255,255,.9);
  font-size:clamp(14px,2vw,16px);
  opacity:0; transform:translateY(14px);
  animation: fadeUp .9s var(--ease) .22s forwards;
}

/* ===== Cards row ===== */
.core-card{ display:flex; justify-content:center; align-items:center; gap:40px; margin-top:10px; }

.card{
  width:var(--card-w); height:var(--card-h);
  border-radius:20px; overflow:hidden; position:relative; cursor:pointer;
  background:#111; box-shadow:0 14px 36px rgba(0,0,0,.35);
  transform:translateY(18px) scale(.98); opacity:0;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card.inview{ opacity:1; transform:translateY(0) scale(1); }
.card:hover{ transform:translateY(-2px) scale(1.04); box-shadow:0 22px 58px rgba(0,0,0,.55); }

.card-rotate{ position:relative; inset:0; width:100%; height:100%; }

.card-front,.card-back{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; align-items:center;
  border-radius:20px; overflow:hidden; transition:opacity .6s var(--ease);
}
.card-front{ z-index:2; }
.card-back{ z-index:1; opacity:0; }
.card:hover .card-front{ opacity:0; }
.card:hover .card-back{ opacity:1; }

.card-image{ width:100%; height:100%; object-fit:cover; transform:scale(1.02); }
/* Ken Burns (gentle zoom) */
.card .card-image{ animation: kenBurns 10s ease-in-out infinite alternate; }

.mission-bottom{
  position:absolute; bottom:16px; display:flex; flex-direction:column; align-items:center;
}
.mission-bottom i{ 
  font-size:22px; color:#fff; padding:6px;
  animation: floatPulse 3.2s ease-in-out infinite;
}
.mission-text{
  margin-top:6px; background:rgba(0,0,0,.45);
  padding:8px 12px; border-radius:999px; font-size:15px; font-weight:600;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
  backdrop-filter:saturate(120%) blur(2px);
  color: white;
}

.back-scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.75) 100%); }
.mission-content{
  position:absolute; inset:auto 0 0 0; padding:18px 18px 20px; color:#fff; text-align:left;
  font-size:14px; line-height:1.55;
  opacity:0; transform:translateY(10px);
  transition:opacity .45s var(--ease), transform .45s var(--ease);
}

/* Let articles stack and push CTA to the bottom */
.event-types .et-card {
  display: flex;
  flex-direction: column;
}

/* WhatsApp CTA button */
.event-types .et-card .wa-cta {
  margin-top: auto;            /* pushes the button to the bottom */
  align-self: center; 
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #25d366;         /* WhatsApp green */
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.event-types .et-card .wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
}

.event-types .et-card .wa-cta i {
  font-size: 1rem;
  line-height: 1;
}


.card:hover .mission-content{ opacity:1; transform:translateY(0); }

.badges{ display:flex; gap:10px; flex-wrap:wrap; margin:0 0 8px; }
.badge{
  display:inline-flex; align-items:center; gap:8px; font-size:13px;
  background:rgba(0,0,0,.45); padding:6px 10px; border-radius:999px;
  transform:translateY(6px); opacity:0;
  transition:transform .4s var(--ease), opacity .4s var(--ease);
}
.card:hover .badge{ transform:translateY(0); opacity:1; }
.card:hover .badge:nth-child(2){ transition-delay:.05s; }

/* ===== Mobile slider ===== */
.original-cards{ display:flex; }
.responsive-cards{ display:none; width:100%; max-width:340px; position:relative; }
.responsive-cards .card{ width:100%; height:460px; display:none; }
.responsive-cards .card.active{ display:block; }

.dotsContainer{ display:flex; justify-content:center; gap:8px; margin-top:12px; }
.dot{ width:10px; height:10px; border:3px solid #bbb; border-radius:50%; transition:background-color .3s var(--ease), transform .3s var(--ease); }
.dot.active{ background:#fff; border-color:#fff; transform:scale(1.05); }

@media (max-width:900px){
  .original-cards{ display:none; }
  .responsive-cards{ display:block; }
}

/* ===== Keyframes ===== */
@keyframes fadeUp{
  from{ opacity:0; transform:translateY(14px); }
  to  { opacity:1; transform:translateY(0); }
}
@keyframes kenBurns{
  from{ transform:scale(1.02); }
  to  { transform:scale(1.08); }
}
@keyframes floatPulse{
  0%,100%{ transform:translateY(0); filter:drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
  50%{ transform:translateY(-4px); filter:drop-shadow(0 6px 10px rgba(0,0,0,.4)); }
}

/* Reduce motion preference */
@media (prefers-reduced-motion:reduce){
  .card,.card-image,.mission-content,.badge,.mission-bottom i{ animation:none !important; transition:none !important; }
}


 /* ===== HRD SECTION ===== */
  #hrd-claimable{
    --bg:#fff7ee;
    --ink:#5a4a3b;
    --muted:#8a7a6b;
    background:var(--bg);
    color:var(--ink);
    padding: clamp(32px, 6vw, 64px) clamp(20px, 5vw, 48px) 0;
    overflow:hidden;
    position:relative;
  }

  .hrd-grid{
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    align-items:center;
    gap: clamp(20px, 4vw, 48px);
    max-width:1100px;
    margin:0 auto clamp(28px, 6vw, 56px);
  }

  .hrd-logo{
    display:flex; justify-content:center; align-items:center;
    border-radius:24px;
    padding: clamp(16px, 3.5vw, 28px);
    position:relative;
    isolation:isolate;
  }
  .hrd-logo img{
    width:min(640px, 100%);
    height:auto; display:block;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.08));
    transform: translateY(6px);
    border-radius: 12px;
  }

  .hrd-copy .eyebrow {
  font-family:"Baskerville Custom", Georgia, serif;
  font-style:italic;
  font-size: clamp(28px, 4.2vw, 44px);
  color:var(--accent);
  margin:0 0 .25rem 0;
  letter-spacing:.02em;
  text-decoration:none;     
  border-bottom:none;      
  }

  .hrd-copy .sub{
    font-family:"Baskerville Custom", Georgia, serif;
    font-style:italic;
    font-size: 14px;
    color:var(--muted);
    margin:0 0 1rem 0;
  }
  .hrd-copy p{ font-size:14px; line-height:1.8; margin:.6rem 0; max-width:62ch; }
  .hrd-list{ margin:.6rem 0 0 0; padding-left:1.2rem; }
  .hrd-list li{
    font-size:14px; line-height:1.8; color:var(--ink); margin:.15rem 0;
    opacity:0; transform:translateY(12px);
    transition: opacity .5s var(--ease-swag), transform .5s var(--ease-swag);
    transition-delay: var(--d, 0s);
  }
  .hrd-help{ font-size:13px; color:var(--muted); margin-top:.6rem; }

  /* ===== CTA ===== */
  .hrd-cta{
    max-width:1100px;
    margin: 0 auto clamp(56px, 9vw, 92px);
    background: linear-gradient(180deg, #7b3f14 0%, #5c2e0f 100%);
    color:#fff;
    border-radius:18px;
    display:grid;
    grid-template-columns: 1fr auto;
    align-items:center;
    gap: clamp(16px,3vw,28px);
    padding: clamp(18px, 3.6vw, 26px) clamp(18px, 4vw, 28px);
    box-shadow: var(--shadow);
    position:relative;
    overflow:hidden;
  }
  /* Subtle shimmer highlight that sweeps across */
  .hrd-cta::after{
    content:"";
    position:absolute; inset:-20%;
    background:
      radial-gradient(1200px 120px at -20% 50%, rgba(255,255,255,.18), transparent 60%),
      linear-gradient(100deg, transparent 30%, rgba(255,255,255,.12) 48%, transparent 66%);
    transform: translateX(-40%);
    animation: shimmer 6s linear infinite;
    pointer-events:none;
    mix-blend-mode: screen;
  }

  .hrd-cta h3{
    font-family:"Baskerville Custom", Georgia, serif;
    font-style:italic;
    font-weight:700;
    letter-spacing:.04em;
    font-size: clamp(22px, 3.2vw, 32px);
    margin:0 0 .25rem 0;
  }
  .hrd-cta p{ margin:0; font-size:13px; opacity:.95; }

  /* WhatsApp button with pulse ring + micro-wiggle on hover */
  .cta-whatsapp{
    justify-self:end;
    background:var(--green);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    border-radius:999px;
    padding:.78rem 1.15rem;
    display:inline-flex;
    align-items:center;
    gap:.55rem;
    transition: transform .2s var(--ease-swag), background .2s ease, box-shadow .2s ease;
    box-shadow:0 6px 16px rgba(0,0,0,.14);
    position:relative;
  }
  .cta-whatsapp i{ font-size:1.1em; }
  .cta-whatsapp::before{
    content:"";
    position:absolute; inset:-6px;
    border-radius:inherit;
    border:2px solid rgba(255,255,255,.35);
    opacity:.0; transform: scale(.9);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events:none;
  }
  .cta-whatsapp:hover{
    background:var(--green-dark);
    transform: translateY(-1px) rotateZ(-.25deg);
  }
  .cta-whatsapp:hover::before{
    opacity:1; transform: scale(1);
  }
  .cta-whatsapp:active{
    transform: translateY(0);
  }
  /* Gentle attention pulse every 7s */
  @keyframes pulseGlow{
    0%, 95%, 100% { box-shadow:0 6px 16px rgba(0,0,0,.14); }
    40% { box-shadow:0 10px 28px rgba(37,211,102,.35); }
  }
  .cta-whatsapp{
    animation: pulseGlow 7s ease-in-out infinite;
  }

  /* ===== Scroll reveal base ===== */
  [data-animate]{
    opacity:0;
    transform: translateY(18px);
    transition: opacity .7s var(--ease-swag), transform .7s var(--ease-swag);
  }
  [data-animate].in{
    opacity:1; transform:none;
  }
  /* Eyebrow underline grows when in view */
  .hrd-copy .eyebrow.in{
    background-size: 100% 2px;
  }
  /* Floaty logo */
  @keyframes floatY{
    0%,100%{ transform: translateY(6px); }
    50%{ transform: translateY(-4px); }
  }
  .hrd-logo.in img{
    animation: floatY 5.5s ease-in-out infinite;
  }

  /* CTA shimmer sweep */
  @keyframes shimmer{
    0%{ transform: translateX(-40%); }
    100%{ transform: translateX(40%); }
  }

  /* Decorative corner sparkles (super subtle) */
  #hrd-claimable::before{
    content:"";
    position:absolute;
    top:-80px; right:-80px;
    width:220px; height:220px;
    background: radial-gradient(closest-side, rgba(199,154,90,.25), transparent 70%);
    filter: blur(6px);
    transform: rotate(15deg);
    pointer-events:none;
  }

  /* Responsive */
  @media (max-width: 880px){
    .hrd-grid{ grid-template-columns: 1fr; }
    .hrd-logo{ order:1 }
    .hrd-copy{ order:2 }
    .hrd-cta{ grid-template-columns: 1fr; }
    .cta-whatsapp{ justify-self:start; }
  }

  /* Motion-safe: reduce/disable if user prefers */
  @media (prefers-reduced-motion: reduce){
    *{ animation: none !important; transition: none !important; }
    .hrd-cta::after{ display:none; }
  }

    /* ====== FLOATING ACTION BUTTONS ====== */
  .fab-wrap{
    position:fixed;
    right:clamp(30px, 2vw, 20px);
    bottom:clamp(14px, 2vw, 20px);
    z-index:9999;
    display:flex; flex-direction:column; gap:14px;
    pointer-events:none;
  }
  .fab-btn{
    width:70px; height:70px; border-radius:50%;
    background:#3d2a1a;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 26px rgba(0,0,0,.25);
    transition:transform .18s ease, box-shadow .18s ease;
    cursor:pointer; pointer-events:auto; border:none; outline:none;
    text-decoration:none !important;
  }
  .fab-btn:hover{ transform:translateY(-2px); box-shadow:0 14px 34px rgba(0,0,0,.33); }

  .fab-btn, .fab-btn:hover, .fab-btn:focus, .fab-btn:active, .fab-btn:visited, .fab-btn *{
    text-decoration:none !important;
  }

  /* WhatsApp brand button */
  .fab-btn.whatsapp{ background:#25D366; }
  .fab-btn.whatsapp i{ font-size:30px; color:#fff; line-height:1; display:block; }

  @media (max-width:600px){
    .fab-btn{ width:50px; height:50px; }
    .fab-btn.whatsapp i{ font-size:22px; }
  }

/* ===== AFTER DARK SECTION ===== */
.after-dark{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
  align-items:center;
  gap:clamp(32px,5vw,56px);
  padding:clamp(40px,6vw,80px) clamp(32px,6vw,80px);
  background: var(--bg);            /* same beige as page */
}

/* Left image column */
.ad-media{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;                        /* no extra dark band */
  background: transparent;
}

.ad-media .ad-card{
  position: relative;
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  background: transparent;
}

/* remove dark overlay */
.ad-media .ad-card::after{
  content: none;
}

.ad-media img{
  width: 100%;
  height: auto;
  object-fit: cover;                 /* fill nicely, no black bars */
  object-position: center;
  display: block;
  border-radius: inherit;
  cursor: zoom-in;                   /* hint fullscreen */
}


.ad-badge{
  position:absolute;top:18px;left:18px;
  background:rgba(199,154,90,.95);
  color:#fff;font-weight:700;font-size:.85rem;
  padding:.4rem .8rem;border-radius:999px;
}

.ad-copy{
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:22px;
  padding:clamp(24px,6vw,60px) 0;
  height:auto;                       /* align with image height */
}


/* ---- Title ---- */
.ad-title{
  font-family:"Baskerville Custom","Times New Roman",serif;
  font-style:italic;font-weight:700;
  color:#a95917;
  font-size:clamp(2rem,4.2vw,3rem);
  letter-spacing:.2px;line-height:1.12;
  margin-bottom:.35rem;
}
.ad-desc{
  color:var(--muted);
  font-size:clamp(.98rem,1.1vw,1.08rem);
  line-height:1.55;
}

/* ---- Icon list ---- */
.ad-points{
  list-style:none;
  display:grid;
  gap:16px;
  align-content:start;
  margin:0;padding:0;
}
.ad-points li{
  display:flex;align-items:center;
  gap:14px;
  color:var(--muted);
  font-weight:600;
  line-height:1.35;
}
.ad-points i{
  font-size:20px;line-height:1;
  color:var(--muted);
  width:20px;height:20px;
  display:inline-flex;align-items:center;justify-content:center;
}

/* ---- Footer ---- */
.ad-footer{align-self:end;}
.ad-question{
  font-family:"Baskerville Custom","Times New Roman",serif;
  font-style:italic;
  font-weight:700;
  font-size:28px;
  color:var(--theme);
  margin:0 0 .9rem 0;
}

/* ---- CTA ---- */
.ad-cta,
.ad-cta:visited{
  display:inline-block;
  background:var(--theme);
  color:#fff;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:.9rem 1.8rem;
  border-radius:999px;
  text-decoration:none!important;
  box-shadow:0 8px 24px rgba(169,89,23,.25);
  transition:transform .25s cubic-bezier(.22,1,.36,1),
             box-shadow .25s cubic-bezier(.22,1,.36,1);
}
.ad-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(169,89,23,.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .after-dark{
    grid-template-columns:1fr;
    gap: 24px;
    padding:clamp(32px,8vw,56px) clamp(18px,6vw,40px);
  }

  /* Text first, image second on mobile */
  .ad-copy{
    order: 1;
    padding:0;
  }

  .ad-media{
    order: 2;
    padding:0;
  }

  .ad-media .ad-card{
    width: 100%;
    max-width:none;
  }
}


/* ===== Fullscreen Help Section ===== */
.help-full {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url('assets/Events-img/11.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.help-overlay { position:absolute; inset:0; background:rgba(0,0,0,.45); z-index:1; }
.help-content { position:relative; z-index:2; color:#fff; max-width:900px; padding:0 20px; animation: fadeUp 1.4s var(--ease) forwards; }
.help-content h2 { 
  font-family: "Baskerville Custom", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 12px;
  color: var(--yellow);
} 
.help-content p {   
  font-family: 'Euclid Circular A', sans-serif;
  font-size: clamp(13px, 1.3vw, 23px);
  letter-spacing: 2px;
  margin-bottom: 22px;
  color: var(--yellow);
}

.shoutout{
  font-family: 'Euclid Circular A', sans-serif;
  font-size: clamp(18px, 1.7vw, 28px);
  letter-spacing: 2px;
  margin-bottom: 22px;
  color: var(--theme);
  background-color: var(--yellow);
  border-radius:99px;
  padding: 1rem;
}

.help-desc{
  font-family: 'Euclid Circular A', sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 251, 245, 0.9);
  max-width: 480px;
  margin: 0 auto;
  text-align: justify;
  margin-bottom: 1rem;
}

@media(max-width:900px){
  .help-content h2{
    font-size: 35px;
  }

  .help-content p{
    font-size: 18px;
  }

  .help-desc{
    font-size: 13px;
    padding-left: 2rem; 
    padding-right: 2rem;
  }
}

.help-btn { display:inline-flex; align-items:center; gap:10px; padding:14px 26px; border-radius:999px; background:#25D366; color:#fff; font-weight:600; text-decoration:none; box-shadow:0 10px 30px rgba(0,0,0,.25); transition:all .25s var(--ease); }
.help-btn:hover { filter:brightness(1.1); transform:translateY(-2px); }
.help-btn i { font-size:20px; }
@keyframes fadeUp { from{opacity:0; transform:translateY(20px)} to{opacity:1; transform:translateY(0)} }


/* ===== Fullscreen image lightbox ===== */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 9999;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* close button */
.image-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* cursor hint on thumbnails */
.brand-item img {
  cursor: zoom-in;
}

/* slider nav buttons in fullscreen */
.image-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.image-lightbox-nav.prev { left: 18px; }
.image-lightbox-nav.next { right: 18px; }

.image-lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* when lightbox is used for a single image (e.g. After Dark), hide nav */
.image-lightbox.no-slider .image-lightbox-nav {
  display: none;
}

/* slightly smaller buttons on mobile */
@media (max-width: 768px) {
  .image-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}


