:root{
--gold:#c9a961;
--gold-hover:#e0c878;
--dark:#0a0a0a;
--muted:#9a9a9a;
}

body{
margin:0;
background:#000;
color:#fff;
font-family:'Inter',sans-serif;
overflow-x:hidden;
}

/* NAVBAR */
.navbar{
background:rgba(0,0,0,.85);
backdrop-filter:blur(14px);
}
.navbar-brand{
display:flex;
align-items:center;
gap:18px;
font-family:'Playfair Display',serif;
letter-spacing:3px;
color:var(--gold)!important;
}
.navbar-brand img{
height:64px;
}

/* HERO */
.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}
.hero video{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}
.hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.65);
z-index:-1;
}
.hero h1{
font-family:'Playfair Display',serif;
font-size:4.5rem;
letter-spacing:5px;
}
.hero p{
color:#d0d0d0;
letter-spacing:3px;
margin-top:1rem;
}
.hero .cta{
margin-top:3rem;
padding:1.2rem 3.5rem;
background:var(--gold);
color:#000;
border:none;
letter-spacing:3px;
transition:.4s;
}
.hero .cta:hover{
background:var(--gold-hover);
box-shadow:0 25px 70px rgba(201,169,97,.4);
}

/* SECTIONS */
section{padding:120px 0}

/* TITLES */
.section-title{
font-family:'Playfair Display',serif;
font-size:3rem;
letter-spacing:2px;
text-align:center;
}
.section-sub{
color:var(--muted);
text-align:center;
max-width:700px;
margin:1.5rem auto 4rem;
letter-spacing:1px;
}

/* ABOUT */
.about{
background:#0e0e0e;
}
.about-card{
background:#121212;
padding:3rem;
border:1px solid rgba(201,169,97,.2);
transition:.4s;
}
.about-card:hover{
transform:translateY(-12px);
box-shadow:0 30px 80px rgba(0,0,0,.6);
}

/* BOOKING */
.booking{
background:#000;
}
.form-control{
background:transparent;
border:1px solid var(--gold);
color:#fff;
padding:1rem;
}
.form-control::placeholder{color:#aaa}
.form-control:focus{
box-shadow:0 0 30px rgba(201,169,97,.35);
border-color:var(--gold-hover);
}

/* BUTTON */
.submit-btn{
background:var(--gold);
color:#000;
border:none;
padding:1.2rem 3.5rem;
letter-spacing:3px;
transition:.4s;
}
.submit-btn:hover{
background:var(--gold-hover);
box-shadow:0 25px 70px rgba(201,169,97,.45);
}

/* FOOTER */
footer{
background:#000;
padding:3rem 0;
text-align:center;
color:#777;
}
footer i{
margin:0 1rem;
font-size:1.5rem;
}
footer i:hover{color:var(--gold)}

@media(max-width:768px){
.hero h1{font-size:2.5rem}
.navbar-brand img{height:52px}
}

/* PAST EVENTS */
.past-events{
  background:#0e0e0e;
  padding:120px 0;
}
.event-card{
  background:#121212;
  border:1px solid rgba(201,169,97,.2);
  overflow:hidden;
  transition:.4s;
}
.event-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition: transform .5s;
}
.event-card:hover img{
  transform: scale(1.05);
}
.event-info{
  padding:1.5rem;
}
.event-info h5{
  font-family:'Playfair Display',serif;
  color:var(--gold);
  margin-bottom:0.5rem;
}
.event-info p{
  color:#d0d0d0;
  font-size:0.95rem;
  line-height:1.5;
}
/* UPCOMING EVENT */
.upcoming-event{
  background:#000;
  padding:120px 0;
}

.event-image{
  position:relative;
  overflow:hidden;
  border-radius:12px;
}
.event-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:transform .8s ease;
}
.event-image:hover img{
  transform:scale(1.06);
}

/* Glass Card */
.event-card-glass{
  background:rgba(18,18,18,.75);
  backdrop-filter:blur(18px);
  border:1px solid rgba(201,169,97,.25);
  padding:3rem;
  border-radius:14px;
  transition:.4s;
}
.event-card-glass:hover{
  box-shadow:0 30px 90px rgba(201,169,97,.15);
  transform:translateY(-6px);
}

.event-card-glass h3{
  font-family:'Playfair Display',serif;
  font-size:2.1rem;
  color:var(--gold);
  margin-bottom:.5rem;
}

.event-location{
  letter-spacing:2px;
  color:#cfcfcf;
  margin-bottom:2rem;
}

.event-meta{
  list-style:none;
  padding:0;
  margin-bottom:2rem;
}
.event-meta li{
  margin-bottom:1rem;
  color:#e0e0e0;
  letter-spacing:.5px;
}
.event-meta i{
  color:var(--gold);
  margin-right:10px;
}

.event-description{
  color:#d6d6d6;
  line-height:1.7;
}

/* Mobile */
@media(max-width:768px){
  .event-image img{
    height:300px;
  }
  .event-card-glass{
    padding:2rem;
  }
}

/* LOCATION SECTION */
.location-section{
  background:#0e0e0e;
  padding:120px 0;
}

.location-card{
  background:#121212;
  border:1px solid rgba(201,169,97,.25);
  padding:3rem;
  border-radius:14px;
  transition:.4s;
}

.location-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

.location-card h4{
  font-family:'Playfair Display',serif;
  color:var(--gold);
  letter-spacing:3px;
  margin-bottom:1.2rem;
}

.location-card p{
  color:#ddd;
  line-height:1.8;
  letter-spacing:.5px;
}

.map-wrapper{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(201,169,97,.25);
}

.map-wrapper iframe{
  width:100%;
  height:420px;
  border:0;
  filter: saturate(1.15) contrast(1.05);
}

@media(max-width:768px){
  .map-wrapper iframe{
    height:300px;
  }
}

.map-link{
  display:inline-block;
  margin-top:1.5rem;
  color:var(--gold);
  font-size:.9rem;
  letter-spacing:2px;
  text-transform:uppercase;
  text-decoration:none;
  border-bottom:1px solid rgba(201,169,97,.4);
  padding-bottom:4px;
  transition:.3s;
}

.map-link:hover{
  color:#fff;
  border-color:#fff;
}
.map-inline{
  margin-left:.5rem;
  font-size:.85rem;
  color:var(--gold);
  text-decoration:none;
  letter-spacing:1px;
  border-bottom:1px solid rgba(201,169,97,.4);
  padding-bottom:2px;
  transition:.3s;
}

.map-inline:hover{
  color:#fff;
  border-color:#fff;
}

.event-city{
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-left: .4rem;
    font-weight: bold;
}
.form-status{
  margin-top:1rem;
  text-align:center;
  font-size:.9rem;
  letter-spacing:1px;
  opacity:0;
  transition:opacity .4s ease;
}

.form-status.success{
  color:#c9a961;
  opacity:1;
}

.form-status.error{
  color:#d9534f;
  opacity:1;
}

.submit-btn.loading{
  pointer-events:none;
  opacity:.6;
}
.whatsapp-contact{
  margin-top:1.5rem;
  text-align:center;
}

.whatsapp-contact a{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.7rem 1.4rem;
  border:1px solid rgba(201,169,97,.5);
  border-radius:30px;
  color:#c9a961;
  font-size:.85rem;
  letter-spacing:1px;
  text-decoration:none;
  transition:.35s ease;
  backdrop-filter:blur(6px);
}

.whatsapp-contact i{
  font-size:1.1rem;
}

.whatsapp-contact a:hover{
  background:rgba(201,169,97,.1);
  color:#fff;
  border-color:#fff;
}
.location-section{
  padding:6rem 0;
}

.location-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(201,169,97,.3);
  padding:2.5rem;
  border-radius:18px;
  backdrop-filter:blur(12px);
}

.location-card h4{
  font-family:'Playfair Display', serif;
  letter-spacing:2px;
  margin-bottom:1rem;
}

.location-address{
  color:#bbb;
  line-height:1.7;
  margin-bottom:1.5rem;
}

.location-contacts{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-bottom:1.8rem;
}

.contact-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.6rem 1.2rem;
  border-radius:30px;
  border:1px solid rgba(201,169,97,.5);
  color:#c9a961;
  font-size:.85rem;
  text-decoration:none;
  transition:.3s ease;
}

.contact-pill:hover{
  background:rgba(201,169,97,.12);
  color:#fff;
  border-color:#fff;
}

.map-cta{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-top:.5rem;
  padding:.7rem 1.5rem;
  border-radius:30px;
  background:#c9a961;
  color:#000;
  font-size:.85rem;
  letter-spacing:1px;
  text-decoration:none;
  transition:.3s ease;
}

.map-cta:hover{
  background:#fff;
  color:#000;
}

/* MAP STYLING */
.map-wrapper{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(201,169,97,.3);
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.map-wrapper iframe{
  width:100%;
  height:320px;
  border:0;
  filter:saturate(1.15) contrast(1.05);
}
/* EVENT STACK */
.event-stack{
  display:flex;
  flex-direction:column;
  gap:4rem;
}

/* EVENT CARD */
.lux-event{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
  background:rgba(18,18,18,.6);
  border:1px solid rgba(201,169,97,.25);
  border-radius:22px;
  padding:2.8rem;
  backdrop-filter:blur(18px);
  transition:.6s cubic-bezier(.19,1,.22,1);
  position:relative;
}

/* Alternate layout automatically */
.lux-event:nth-child(even){
  direction:rtl;
}
.lux-event:nth-child(even) *{
  direction:ltr;
}

/* Hover cinematic lift */
.lux-event:hover{
  transform:translateY(-10px) scale(1.01);
  box-shadow:0 40px 120px rgba(201,169,97,.18);
}

/* MEDIA */
.lux-event-media{
  overflow:hidden;
  border-radius:18px;
}
.lux-event-media img{
  width:100%;
  height:360px;
  object-fit:cover;
  transition:transform .9s ease;
}
.lux-event:hover img{
  transform:scale(1.08);
}

/* BODY */
.lux-event-body h3{
  font-family:'Playfair Display',serif;
  color:var(--gold);
  font-size:2.2rem;
  margin-bottom:.5rem;
}

.lux-location{
  letter-spacing:2px;
  color:#bbb;
  margin-bottom:1.8rem;
}

/* BADGE */
.lux-badge{
  display:inline-block;
  margin-bottom:1rem;
  padding:.45rem 1.2rem;
  font-size:.75rem;
  letter-spacing:2px;
  border-radius:30px;
  border:1px solid rgba(201,169,97,.5);
  color:var(--gold);
  text-transform:uppercase;
}

.lux-badge.gold{
  background:var(--gold);
  color:#000;
}

/* MOBILE */
@media(max-width:992px){
  .lux-event{
    grid-template-columns:1fr;
  }
  .lux-event-media img{
    height:260px;
  }
}
/* EVENT STACK */
.event-stack{
  display:flex;
  flex-direction:column;
  gap:4.5rem;
}

/* EVENT CARD */
.lux-event{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:3.5rem;
  align-items:center;
  background:rgba(18,18,18,.65);
  border:1px solid rgba(201,169,97,.25);
  border-radius:22px;
  padding:3rem;
  backdrop-filter:blur(18px);
  transition:.6s cubic-bezier(.19,1,.22,1);
}

/* Alternating layout */
.lux-event:nth-child(even){
  direction:rtl;
}
.lux-event:nth-child(even) *{
  direction:ltr;
}

/* Hover motion */
.lux-event:hover{
  transform:translateY(-10px);
  box-shadow:0 40px 120px rgba(201,169,97,.18);
}

/* MEDIA */
.lux-event-media{
  border-radius:18px;
  overflow:hidden;
}
.lux-event-media img{
  width:100%;
  height:380px;
  object-fit:cover;
  transition:transform .9s ease;
}
.lux-event:hover img{
  transform:scale(1.08);
}

/* TEXT */
.lux-event-body h3{
  font-family:'Playfair Display',serif;
  color:var(--gold);
  font-size:2.2rem;
  margin-bottom:.4rem;
}

.lux-location{
  letter-spacing:2px;
  color:#cfcfcf;
  margin-bottom:2rem;
}

/* BADGE */
.lux-badge{
  display:inline-block;
  margin-bottom:1rem;
  padding:.45rem 1.3rem;
  font-size:.75rem;
  letter-spacing:2px;
  border-radius:30px;
  border:1px solid rgba(201,169,97,.5);
  color:var(--gold);
  text-transform:uppercase;
}
.lux-badge.gold{
  background:var(--gold);
  color:#000;
}

/* MOBILE */
@media(max-width:992px){
  .lux-event{
    grid-template-columns:1fr;
    padding:2.2rem;
  }
  .lux-event-media img{
    height:260px;
  }
}


/* LUXURY FOOTER */
.lux-footer{
  background:#000;
  padding:5rem 0 3rem;
  text-align:center;
  border-top:1px solid rgba(201,169,97,.15);
}

.footer-brand{
  font-family:'Playfair Display',serif;
  font-size:1.8rem;
  letter-spacing:4px;
  color:var(--gold);
  margin-bottom:.5rem;
}

.footer-tagline{
  color:#aaa;
  letter-spacing:2px;
  margin-bottom:1.5rem;
}

.footer-email{
  color:#888;
  margin-bottom:2.5rem;
  font-size:.95rem;
}

.social-links{
  display:flex;
  justify-content:center;
  gap:1.8rem;
  margin-bottom:3rem;
}

.social-links a{
  width:46px;
  height:46px;
  border:1px solid rgba(201,169,97,.4);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:1.2rem;
  transition:.4s;
}

.social-links a:hover{
  background:var(--gold);
  color:#000;
  box-shadow:0 15px 40px rgba(201,169,97,.4);
  transform:translateY(-4px);
}

.footer-divider{
  width:80px;
  height:1px;
  background:rgba(201,169,97,.4);
  margin:0 auto 2rem;
}

.footer-copy a{
  color:var(--gold);
  text-decoration:none;
}
.footer-copy a:hover{
  text-decoration:underline;
}

/* FIX SOCIAL ICON GOLD FILL ISSUE */
.lux-footer .social-links a:hover,
.lux-footer .social-links a:active,
.lux-footer .social-links a:focus{
  background:transparent !important;
  color:var(--gold) !important;
  border-color:var(--gold-hover);
  box-shadow:0 12px 28px rgba(201,169,97,.35);
  transform:translateY(-4px);
}

/* Optional: icon turns white instead */
.lux-footer .social-links a:hover i{
  color:#fff;
}

