/* =========================
   GROOVE GALLERIA STYLE
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat', sans-serif;
  background:#050505;
  color:#ffffff;
  overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  padding:22px 8%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:1000;

  background:rgba(0,0,0,0.25);
  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  font-size:1.2rem;
  font-weight:700;
  letter-spacing:4px;
  color:white;
}

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links a{
  position:relative;

  text-decoration:none;
  color:white;

  font-size:0.9rem;
  font-weight:500;

  transition:0.3s ease;
}

.nav-links a::after{
  content:'';

  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:1px;

  background:white;

  transition:0.3s ease;
}

.nav-links a:hover::after{
  width:100%;
}

/* =========================
   HERO SECTION
========================= */

.hero{
  position:relative;

  width:100%;
  height:100vh;

  overflow:hidden;
}

.hero-image{
  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;

  z-index:1;
}

.overlay{
  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:100%;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );

  z-index:2;
}

/* =========================
   SNOW EFFECT
========================= */

.snow{
  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:100%;

  z-index:3;

  pointer-events:none;
}

.snow span{
  position:absolute;

  display:block;

  width:6px;
  height:6px;

  background:white;

  border-radius:50%;

  opacity:0;

  animation:fall linear infinite;
}

@keyframes fall{

  0%{
    transform:translateY(-10vh);
    opacity:0;
  }

  15%{
    opacity:1;
  }

  100%{
    transform:translateY(110vh);
    opacity:0;
  }

}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
  position:absolute;

  left:8%;
  bottom:12%;

  z-index:4;

  max-width:550px;
}

.hero-tag{
  display:inline-block;

  margin-bottom:20px;
  padding:10px 18px;

  border:1px solid rgba(255,255,255,0.15);

  background:rgba(255,255,255,0.05);

  backdrop-filter:blur(10px);

  border-radius:30px;

  font-size:0.75rem;
  letter-spacing:2px;

  animation:fadeUp 1s ease;
}

.hero-content h1{
  font-size:5rem;
  line-height:0.92;
  letter-spacing:6px;

  margin-bottom:20px;

  animation:fadeUp 1s ease;
}

.hero-content p{
  font-size:1rem;
  line-height:1.7;

  opacity:0.9;

  animation:fadeUp 1.3s ease;
}

/* =========================
   HERO BUTTONS
========================= */

.hero-buttons{
  margin-top:35px;

  display:flex;
  gap:18px;

  flex-wrap:wrap;
}

.hero-btn{
  display:inline-flex;

  justify-content:center;
  align-items:center;

  padding:15px 34px;

  border:1px solid white;

  color:white;
  text-decoration:none;

  font-size:0.85rem;
  letter-spacing:2px;

  transition:0.3s ease;

  min-width:200px;

  animation:fadeUp 1.5s ease;
}

.hero-btn:hover{
  background:white;
  color:black;

  transform:translateY(-3px);
}

.secondary-btn{
  background:white;
  color:black;
}

.secondary-btn:hover{
  background:transparent;
  color:white;
}

/* =========================
   SCROLL TEXT
========================= */

.scroll-down{
  position:absolute;

  bottom:35px;
  left:50%;

  transform:translateX(-50%);

  z-index:4;

  font-size:0.7rem;
  letter-spacing:4px;

  opacity:0.6;

  animation:bounce 2s infinite;
}

@keyframes bounce{

  0%,100%{
    transform:translate(-50%,0);
  }

  50%{
    transform:translate(-50%,10px);
  }

}

/* =========================
   FEATURED SECTION
========================= */

.featured{
  padding:120px 8%;

  background:#080808;
}

.featured-title{
  text-align:center;

  margin-bottom:60px;
}

.featured-title h2{
  font-size:2.5rem;
  letter-spacing:3px;
}

.products{
  display:grid;

  grid-template-columns:
  repeat(auto-fit, minmax(280px,1fr));

  gap:35px;
}

.product-card{
  overflow:hidden;

  border-radius:24px;

  background:#111;

  transition:0.4s ease;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-card img{
  width:100%;
  height:420px;

  object-fit:cover;

  transition:0.5s ease;
}

.product-card:hover img{
  transform:scale(1.05);
}

.product-info{
  padding:25px;
}

.product-info h3{
  font-size:1.2rem;

  margin-bottom:10px;
}

.product-info p{
  opacity:0.65;

  line-height:1.7;
}

/* =========================
   GLASS EFFECT
========================= */

.glass-card{
  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(10px);

  border-radius:24px;
}

/* =========================
   FOOTER
========================= */

footer{
  padding:40px 8%;

  text-align:center;

  background:#050505;

  border-top:1px solid rgba(255,255,255,0.08);
}

footer p{
  opacity:0.5;

  font-size:0.85rem;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  .hero-content h1{
    font-size:3.5rem;
  }

}

@media(max-width:768px){

  nav{
    padding:18px 6%;
  }

  .nav-links{
    display:none;
  }

  .hero{
    height:100svh;
  }

  .hero-content{
    left:6%;
    right:6%;
    bottom:10%;
  }

  .hero-content h1{
    font-size:2.4rem;

    letter-spacing:3px;
  }

  .hero-content p{
    font-size:0.92rem;
  }

  .hero-buttons{
    flex-direction:column;

    align-items:flex-start;
  }

  .hero-btn{
    width:220px;
  }
.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

}
