/* ===================== BASE ===================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#0d0d0d;
  color:white;
}

/* ===================== PALETTE ===================== */
:root{
  --a:#3e0015;
  --b:#7a002b;
  --c:#a0038c;
  --d:#d1033e;
  --e:#e45f43;
  --f:#f8af63;
}

/* ===================== HERO ===================== */

.hero{
  height:100vh;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  /* 📌 BACKGROUND IMAGE */
  background:url('assets/background.jpg') center/cover no-repeat;
  filter:brightness(0.4);
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(62,0,21,0.7), rgba(0,0,0,0.9));
}

.nav{
  position:absolute;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:20px 40px;
  align-items:center;
}

.nav ul{
  display:flex;
  gap:20px;
  list-style:none;
}

.nav a{
  color:white;
  text-decoration:none;
}

.logo img{
  height:60px;
}

.hero-content{
  z-index:2;
}

.hero h1{
  font-size:70px;
  color:var(--f);
  letter-spacing:2px;
}

.tagline{
  max-width:700px;
  margin-top:20px;
  opacity:0.9;
}

/* ===================== SECTIONS ===================== */

.section{
  padding:80px 20px;
  max-width:1000px;
  margin:auto;
}

.section h2{
  color:var(--f);
  margin-bottom:20px;
  font-size:32px;
}

.dark{
  background:#120008;
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.highlight{
  margin-top:20px;
  color:var(--f);
  font-weight:bold;
}

/* ===================== GALLERY ===================== */

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(150px,1fr));
  gap:15px;
}

.gallery img{
  width:100%;
  height:150px;
  object-fit:cover;
  cursor:pointer;
  border-radius:10px;
  transition:0.3s;
}

.gallery img:hover{
  transform:scale(1.05);
}

/* ===================== LIGHTBOX ===================== */

#lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}

/* ===================== FORM ===================== */

form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

input, textarea{
  padding:12px;
  border:none;
  border-radius:8px;
}

button{
  padding:12px;
  background:var(--d);
  color:white;
  border:none;
  cursor:pointer;
  border-radius:8px;
}

button:hover{
  background:var(--c);
}

/* ===================== QR ===================== */

.qr{
  margin-top:30px;
  display:flex;
  gap:20px;
}

.qr img{
  width:120px;
}

/* ===================== FOOTER ===================== */

footer{
  text-align:center;
  padding:20px;
  background:#000;
  font-size:12px;
}

/* ===================== RESPONSIVE ===================== */

@media(max-width:768px){
  .hero h1{font-size:40px;}
  .nav{flex-direction:column;}
  .qr{flex-direction:column;}
}