/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#0b0b0b;
  color:white;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:20px 8%;
  background:rgba(10,10,10,.7);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,0,102,.15);
  z-index:1000;
}

.back-btn{
  text-decoration:none;
  color:white;
  font-weight:600;
  transition:0.2s;
}

.back-btn:hover{
  color:#ff0066;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
  padding:120px 8%;
}

.hero::before{
  content:"";
  position:absolute;
  width:800px;
  height:800px;
  background:#ff0066;
  filter:blur(220px);
  opacity:.15;
  border-radius:50%;
}

.hero-bg{
  position:absolute;
  font-size:clamp(6rem,18vw,18rem);
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.05);
  white-space:nowrap;
  pointer-events:none;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
}

.hero h1{
  font-size:clamp(3rem,7vw,6rem);
  margin-bottom:20px;
}

.hero p{
  color:#bdbdbd;
  font-size:1.2rem;
  margin-bottom:40px;
}

.stats-preview{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.stats-preview div{
  padding:18px 30px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:#141414;
  transition:0.3s;
}

.stats-preview div:hover{
  transform:translateY(-4px);
  border-color:rgba(255,0,102,.4);
}

.stats-preview strong{
  display:block;
  font-size:1.8rem;
  color:#ff0066;
}

/* GALLERY SECTION */
.gallery{
  padding:120px 8%;
  background:#0f0f0f;
}

.gallery h2{
  text-align:center;
  font-size:2.5rem;
  margin-bottom:60px;
  letter-spacing:2px;
}

/* CLEAN MODERN GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  max-width:1200px;
  margin:0 auto;
}

/* IMAGE ITEM */
.gallery-grid img{
  width:100%;
  height:320px;
  object-fit:cover;

  border-radius:16px;
  cursor:pointer;

  transition:0.35s ease;
  filter:brightness(0.9);
}

/* HOVER EFFECT (very common modern style) */
.gallery-grid img:hover{
  transform:scale(1.03);
  filter:brightness(1.1);
}

/* subtle lift */
.gallery-grid img:hover{
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* CTA */
.cta{
  padding:140px 8%;
  text-align:center;
  background:#111;
}

.cta h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta p{
  color:#bdbdbd;
  margin-bottom:35px;
}

.btn{
  display:inline-block;
  text-decoration:none;
  background:#ff0066;
  color:white;
  padding:16px 40px;
  border-radius:50px;
  font-weight:600;
  transition:.3s;
}

.btn:hover{
  background:#ff3385;
  transform:translateY(-3px);
}

/* FOOTER */
footer{
  padding:30px;
  text-align:center;
  color:#777;
}

/* RESPONSIVE */
@media(max-width:900px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid img{
    height:280px;
  }

  .hero{
    min-height:auto;
    padding-top:180px;
    padding-bottom:100px;
  }
}

@media(max-width:600px){
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid img{
    height:260px;
  }

  .hero h1{
    font-size:2.8rem;
  }
}
/* CLICKABLE IMAGE */
.gallery-item img{
  cursor:pointer;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;
  pointer-events:none;
  transition:0.25s ease;

  z-index:9999;
  padding:40px;
}

/* ACTIVE STATE */
.lightbox.active{
  opacity:1;
  pointer-events:auto;
}

/* IMAGE INSIDE LIGHTBOX */
.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:18px;

  transform:scale(0.9);
  transition:0.25s ease;
}

/* zoom in effect */
.lightbox.active img{
  transform:scale(1);
}