
/* =========================================================
   Sundown Events — The Red Carpet (Premium UI Kit)
   Colors: Red / Black / White / Gold
   ========================================================= */

:root{
  --bg:#050505;
  --bg2:#0c0c0f;
  --card:#0f0f13;
  --text:#f6f6f7;
  --muted:rgba(246,246,247,.72);
  --muted2:rgba(246,246,247,.55);

  --red:#d10f2f;
  --red2:#8d0218;
  --gold:#ffd38a;
  --gold2:#cfa24f;

  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --stroke: 1px solid rgba(255,211,138,.22);
  --radius: 22px;
  --radius2: 30px;

  --container: 1180px;
  --headerH: 78px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 520px at 70% 10%, rgba(255,211,138,.08), transparent 60%),
              radial-gradient(900px 450px at 20% 20%, rgba(209,15,47,.12), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button{font-family:inherit}
::selection{background: rgba(209,15,47,.35)}

/* Container */
.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* Top notice */
.topbar{
  position:relative;
  z-index:50;
  background: linear-gradient(90deg, rgba(209,15,47,.9), rgba(255,211,138,.45));
  color:#070707;
  font-weight:650;
  letter-spacing:.2px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar a{font-weight:800; text-decoration:underline; text-underline-offset:3px}

/* Header */
.header{
  position:sticky; top:0; z-index:100;
  height:var(--headerH);
  backdrop-filter: blur(14px);
  background: rgba(8,8,10,.55);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header .container{
  height:100%;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex; align-items:center; gap:12px; min-width:220px;
}
.brand-mark{
  width:44px; height:44px;
  border-radius:14px;
  background: radial-gradient(circle at 30% 30%, rgba(255,211,138,.24), transparent 60%),
              linear-gradient(135deg, #000, rgba(209,15,47,.95));
  border: 1px solid rgba(255,211,138,.25);
  box-shadow: 0 12px 40px rgba(209,15,47,.18);
  display:grid; place-items:center;
}
.brand-mark svg{width:28px; height:28px}
.brand-name{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand-name .kicker{font-size:12px; letter-spacing:.35em; text-transform:uppercase; color:var(--muted2)}
.brand-name .title{font-size:16px; font-weight:850; letter-spacing:.02em}
.brand-name .sub{font-size:12px; color:var(--muted); margin-top:2px}

/* Nav */
.nav{
  display:flex; align-items:center; gap:18px;
  padding:10px 16px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.22);
}
.nav a{
  font-size:14px; color:var(--muted);
  position:relative;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{color:var(--text); background: rgba(255,255,255,.05)}
.nav a.active::after{
  content:"";
  position:absolute; left:12px; right:12px; bottom:4px;
  height:2px; border-radius:999px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  opacity:.9;
}

/* Header actions */
.actions{display:flex; align-items:center; gap:10px}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}
.chip i{color:var(--gold); opacity:.9}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.01em;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}
.btn:active{transform: translateY(0px)}
.btn-primary{
  border: 1px solid rgba(255,211,138,.22);
  background: linear-gradient(135deg, rgba(209,15,47,.95), rgba(141,2,24,.92));
  box-shadow: 0 18px 55px rgba(209,15,47,.20);
}
.btn-primary:hover{box-shadow: 0 22px 68px rgba(209,15,47,.28)}
.btn-outline{
  border: 1px solid rgba(255,211,138,.24);
  background: rgba(0,0,0,.18);
}
.icon-btn{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.icon-btn:hover{background: rgba(255,255,255,.06)}
/* Mobile */
.burger{display:none}

/* Hero */
.hero{
  position:relative;
  padding: 38px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:stretch;
  margin-top: 18px;
}
.hero-card{
  position:relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.18));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 280px at 30% 15%, rgba(255,211,138,.15), transparent 60%),
              radial-gradient(520px 260px at 85% 20%, rgba(209,15,47,.22), transparent 58%);
  pointer-events:none;
}
.hero-content{
  position:relative;
  padding: 26px 26px 22px;
}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  color: var(--muted);
  font-weight:650;
  font-size:13px;
}
.badge i{color:var(--gold); opacity:.9}
.hero h1{
  margin:0;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing:-.02em;
  line-height:1.05;
}
.hero h1 span{
  background: linear-gradient(90deg, var(--gold), #fff, var(--gold2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  margin:14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height:1.55;
  max-width: 62ch;
}
.hero-cta{
  margin-top:18px;
  display:flex; flex-wrap:wrap; gap:12px;
}
.hero-meta{
  margin-top: 18px;
  display:flex; flex-wrap:wrap; gap:12px;
}
.meta-card{
  flex:1;
  min-width: 160px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
}
.meta-card .k{font-size:12px; color: var(--muted2); letter-spacing:.22em; text-transform:uppercase}
.meta-card .v{font-size:15px; font-weight:800; margin-top:6px}

/* Slider */
.slider{
  position:relative;
  height:100%;
  min-height: 440px;
  border-radius: var(--radius2);
  overflow:hidden;
}
.slides{
  display:flex;
  width:300%;
  height:100%;
  transform: translateX(0%);
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.slide{
  width:100%;
  position:relative;
}
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}
.slide::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.55) 100%);
}
.slide-caption{
  position:absolute; left:22px; bottom:22px; right:22px;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  z-index:2;
}
.slide-caption .t{font-weight:900; letter-spacing:.02em; font-size:16px}
.slide-caption .s{color:var(--muted); margin-top:6px; font-size:13px; line-height:1.45}
.slider-controls{
  position:absolute; top:14px; right:14px; z-index:3;
  display:flex; gap:10px; align-items:center;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.12);
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.dot.active{background: linear-gradient(90deg, var(--gold), var(--red)); transform: scale(1.25)}

/* Sections */
.section{
  padding: 72px 0;
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; margin-bottom: 24px;
}
.section-head h2{
  margin:0;
  font-size: clamp(24px, 2.2vw, 36px);
  letter-spacing:-.02em;
}
.section-head p{
  margin:0; color: var(--muted);
  max-width: 56ch;
  line-height:1.55;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight:700;
}

/* Cards grid */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 0 14px 45px rgba(0,0,0,.35);
  overflow:hidden;
  position:relative;
}
.card .pad{padding: 18px 18px}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(380px 180px at 18% 10%, rgba(255,211,138,.10), transparent 55%),
              radial-gradient(420px 220px at 85% 5%, rgba(209,15,47,.14), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.card > *{position:relative}

.kicker{
  color: var(--muted2);
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
}
.h{
  font-weight:900;
  margin:10px 0 8px;
  letter-spacing:-.02em;
}
.copy{color: var(--muted); line-height:1.6; margin:0}
.list{
  margin:14px 0 0; padding:0;
  list-style:none;
  display:grid; gap:10px;
}
.list li{display:flex; gap:10px; color: var(--muted)}
.list i{color: var(--gold); margin-top:2px}

/* Event highlight */
.event-split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.event-poster img{border-radius: var(--radius2); border:1px solid rgba(255,255,255,.08); box-shadow: var(--shadow)}
.event-details{
  display:grid; gap: 14px;
}
.detail{
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  display:flex; gap:12px;
}
.detail i{color: var(--gold); margin-top:3px}
.detail .t{font-weight:900}
.detail .s{color:var(--muted); margin-top:3px; font-size:13px; line-height:1.5}

/* Ticket cards */
.ticket{
  grid-column: span 4;
  display:flex; flex-direction:column;
}
.ticket .media{height: 200px}
.ticket .media img{width:100%; height:100%; object-fit:cover}
.price{
  margin-top: 10px;
  display:flex; align-items:baseline; justify-content:space-between;
  gap:10px;
}
.price .amt{font-size:20px; font-weight:950}
.price .note{color: var(--muted2); font-size:12px}
.ticket .btn{margin-top:14px; width:100%}

/* Partners */
.partner{
  grid-column: span 3;
  padding: 14px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.16);
}
.partner img{max-height:80px; width:auto; opacity:.95; transition: transform .18s ease, opacity .18s ease}
.partner:hover img{transform: translateY(-2px) scale(1.01); opacity:1}

/* Testimonials */
.testimonial{grid-column: span 4}
.stars{display:flex; gap:4px; color:var(--gold)}
.person{display:flex; align-items:center; gap:12px; margin-top:14px}
.avatar{
  width:44px; height:44px; border-radius:16px;
  background: linear-gradient(135deg, rgba(209,15,47,.7), rgba(255,211,138,.25));
  border:1px solid rgba(255,255,255,.08);
}
.person .name{font-weight:900}
.person .role{color:var(--muted2); font-size:12px; margin-top:2px}

/* Gallery */
.gallery{grid-column: span 4}
.gallery .media{height: 230px}
.gallery .media img{width:100%; height:100%; object-fit:cover}

/* FAQ */
.faq{grid-column: span 6}
.accordion{
  display:grid; gap:12px;
}
.acc{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}
.acc button{
  width:100%;
  padding: 14px 14px;
  display:flex; justify-content:space-between; align-items:center;
  background:transparent; border:0; color:var(--text);
  cursor:pointer;
  font-weight:850;
  text-align:left;
}
.acc .ans{
  max-height:0;
  overflow:hidden;
  transition: max-height .28s ease;
  color: var(--muted);
  padding: 0 14px;
}
.acc.open .ans{padding: 0 14px 14px}
.acc.open .ans{max-height:220px}

/* CTA strip */
.cta{
  padding: 64px 0;
}
.cta-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(209,15,47,.22), rgba(0,0,0,.18));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.cta-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(620px 300px at 10% 10%, rgba(255,211,138,.14), transparent 55%),
              radial-gradient(700px 300px at 90% 30%, rgba(209,15,47,.22), transparent 58%);
  pointer-events:none;
}
.cta-inner{
  position:relative;
  padding: 26px;
  display:flex; justify-content:space-between; align-items:center;
  gap:16px; flex-wrap:wrap;
}
.cta-inner h3{margin:0; font-size:26px; letter-spacing:-.02em}
.cta-inner p{margin:8px 0 0; color:var(--muted); max-width:58ch}

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.25);
  padding: 36px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 16px;
}
.footer a{color:var(--muted); display:inline-block; margin:6px 0}
.footer a:hover{color:var(--text)}
.small{color:var(--muted2); font-size:13px; line-height:1.55}

/* Floating WhatsApp */
.whatsapp{
  position:fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #25d366, #0bb053);
  color:#fff;
  box-shadow: 0 16px 42px rgba(0,0,0,.45);
  z-index: 200;
  transform: translateZ(0);
  transition: transform .18s ease, filter .18s ease;
}
.whatsapp:hover{transform: translateY(-2px) scale(1.02); filter: brightness(1.05)}
.whatsapp .tip{
  position:absolute;
  right: 64px;
  bottom: 10px;
  white-space:nowrap;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-weight:800;
  opacity:0;
  transform: translateX(8px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.whatsapp:hover .tip{opacity:1; transform: translateX(0)}

/* Reveal animations (IntersectionObserver) */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .65s ease, transform .65s ease}
.reveal.show{opacity:1; transform: translateY(0)}

/* Modal (mobile nav) */
.backdrop{
  position:fixed; inset:0; z-index:150;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(10px);
  display:none;
}
.backdrop.open{display:block}
.mobile-nav{
  position:fixed; top: 18px; left: 18px; right: 18px;
  z-index:160;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,12,.92);
  box-shadow: var(--shadow);
  padding: 16px;
  display:none;
}
.mobile-nav.open{display:block}
.mobile-nav a{
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 12px;
  border-radius: 16px;
  color: var(--muted);
}
.mobile-nav a:hover{background: rgba(255,255,255,.05); color:var(--text)}
.mobile-nav .row{display:flex; gap:10px; margin-top:10px}
.mobile-nav .row .btn{flex:1}

/* Forms */
.form{
  display:grid;
  gap:12px;
}
.input{
  width:100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
.input:focus{border-color: rgba(255,211,138,.30); box-shadow: 0 0 0 4px rgba(255,211,138,.08)}
textarea.input{min-height:120px; resize:vertical}

/* Utility */
.spacer{height:18px}
.hr{
  height:1px;
  background: rgba(255,255,255,.08);
  margin: 18px 0;
}
.tag{
  display:inline-flex; align-items:center;
  padding:8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight:750;
  font-size:12px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .event-split{grid-template-columns: 1fr}
  .ticket{grid-column: span 6}
  .partner{grid-column: span 6}
  .testimonial{grid-column: span 6}
  .gallery{grid-column: span 6}
  .faq{grid-column: span 12}
  .footer-grid{grid-template-columns: 1fr}
  .nav{display:none}
  .burger{display:inline-grid}
  .brand{min-width:auto}
}
@media (max-width: 620px){
  .ticket{grid-column: span 12}
  .partner{grid-column: span 12}
  .testimonial{grid-column: span 12}
  .gallery{grid-column: span 12}
  .topbar .container{flex-direction:column; align-items:flex-start}
  .chip{display:none}
  .hero-meta{flex-direction:column}
  .meta-card{min-width:unset}
}


/* Logo-based brand */
.brand-title img{display:block;height:20px;width:auto;}
.footer-brand img{display:block;}

/* Header logo lockup */
.brand-icon{width:36px;height:36px;object-fit:contain;filter:drop-shadow(0 12px 22px rgba(0,0,0,.45));}
.brand-wordmark{height:22px;width:auto;object-fit:contain;filter:drop-shadow(0 12px 22px rgba(0,0,0,.35));}
@media (max-width: 560px){ .brand-wordmark{height:18px} }

.footer-logo{height:52px;width:auto;object-fit:contain;display:block;margin-bottom:10px;filter:drop-shadow(0 14px 24px rgba(0,0,0,.35));}

/* Red Carpet header wordmark */
.brand-wordmark--rc{height:34px}
@media (max-width:560px){ .brand-wordmark--rc{height:26px} }
