
/* =========================================================
   RESET
========================================================= */

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

html{
  scroll-behavior:smooth;
}

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

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

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;

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

  backdrop-filter:blur(10px);

  border-bottom:1px solid rgba(0,0,0,0.06);
}

.nav-container{
  width:min(1400px,92%);
  margin:auto;

  height:72px;

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

.logo{
  font-size:1.2rem;
  font-weight:800;
  letter-spacing:-0.04em;
}

.nav-links{
  display:flex;
  gap:32px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-size:0.95rem;
  font-weight:500;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:16px;
}

.theme-btn{
  width:42px;
  height:42px;

  border-radius:50%;

  border:none;

  background:#f2f2f2;

  cursor:pointer;

  font-size:1rem;
}

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

.hero{
  height:100svh;

  position:relative;

  overflow:hidden;
}

.hero video,
.hero img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;

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

.hero-content{
  position:absolute;
  bottom:90px;
  left:7%;

  color:white;

  z-index:2;
}

.hero-sub{
  font-size:0.95rem;
  margin-bottom:12px;
}

.hero-title{
  font-size:clamp(3.5rem,9vw,8rem);
  line-height:0.9;
  font-weight:800;
  letter-spacing:-0.06em;
}

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

  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 28px;

  border-radius:999px;

  border:none;

  font-weight:600;

  cursor:pointer;

  transition:0.3s;
}

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

.btn-dark{
  background:#111;
  color:white;
}

.btn:hover{
  transform:scale(1.04);
}

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

.section{
  width:min(1400px,92%);
  margin:auto;

  padding:90px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;

  margin-bottom:40px;
}

.section-title{
  font-size:2.6rem;
  font-weight:800;
  letter-spacing:-0.04em;
}

.section-sub{
  color:#666;
  margin-top:10px;
}

/* =========================================================
   PRODUCTS
========================================================= */

.product-grid{
  display:grid;

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

  gap:24px;
}

.product-card{
  cursor:pointer;
}

.product-image-wrap{
  position:relative;

  overflow:hidden;

  border-radius:24px;

  background:#f5f5f5;
}

.product-image{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;

  transition:0.5s;
}

.product-card:hover .product-image{
  transform:scale(1.08);
}

.product-tag{
  position:absolute;
  top:16px;
  left:16px;

  background:white;

  padding:8px 14px;

  border-radius:999px;

  font-size:0.8rem;
  font-weight:600;
}

.product-info{
  padding-top:18px;
}

.product-name{
  font-size:1.1rem;
  font-weight:700;
}

.product-category{
  margin-top:5px;

  color:#666;

  font-size:0.92rem;
}

.product-price{
  margin-top:14px;

  font-weight:700;
}

/* =========================================================
   BIG BANNER
========================================================= */

.banner{
  position:relative;

  height:650px;

  overflow:hidden;

  border-radius:40px;

  margin-top:40px;
}

.banner img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.banner-overlay{
  position:absolute;
  inset:0;

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

.banner-content{
  position:absolute;
  left:60px;
  bottom:60px;

  color:white;
}

.banner-title{
  font-size:4rem;
  line-height:0.9;
  font-weight:800;
  letter-spacing:-0.05em;
}

/* =========================================================
   MEMBERSHIP
========================================================= */

.member-box{
  background:#111;
  color:white;

  border-radius:40px;

  padding:60px;

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

  flex-wrap:wrap;
}

.member-title{
  font-size:3rem;
  line-height:0.95;
  font-weight:800;
}

.member-desc{
  margin-top:18px;

  color:#aaa;

  max-width:600px;

  line-height:1.8;
}

.member-form{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.member-input{
  width:320px;
  max-width:100%;

  height:58px;

  border:none;

  border-radius:999px;

  padding:0 24px;

  font-size:1rem;
}

.member-btn{
  height:58px;

  padding:0 30px;

  border:none;

  border-radius:999px;

  background:white;

  font-weight:700;

  cursor:pointer;
}

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

footer{
  padding:80px 0 40px;
}

.footer-top{
  width:min(1400px,92%);
  margin:auto;

  display:flex;
  justify-content:space-between;
  gap:50px;
  flex-wrap:wrap;

  padding-bottom:40px;

  border-bottom:1px solid #eee;
}

.footer-logo{
  font-size:2rem;
  font-weight:800;
}

.footer-links{
  display:flex;
  gap:60px;
  flex-wrap:wrap;
}

.footer-links h4{
  margin-bottom:14px;
}

.footer-links a{
  display:block;

  margin-bottom:10px;

  text-decoration:none;
  color:#666;
}

.footer-bottom{
  width:min(1400px,92%);
  margin:auto;

  padding-top:30px;

  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;

  color:#666;
}

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

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .hero-content{
    left:24px;
    bottom:50px;
  }

  .hero-title{
    font-size:4rem;
  }

  .banner{
    height:500px;
    border-radius:28px;
  }

  .banner-content{
    left:24px;
    bottom:24px;
  }

  .banner-title{
    font-size:2.6rem;
  }

  .member-box{
    padding:34px 24px;
  }

  .member-title{
    font-size:2.2rem;
  }





   .section {
    width: 100%;
    padding: 60px 18px;
  }

  .member-box {
    border-radius: 0;
    margin: 0 -18px;
    padding: 36px 20px;
  }

  .banner {
    border-radius: 18px;
  }

  body {
    overflow-x: hidden;
  }


}

.dark{
  background:#0b0b0b;
  color:white;
}

.dark nav{
  background:rgba(15,15,15,0.85);
  border-color:rgba(255,255,255,0.08);
}

.dark .nav-links a{
  color:white;
}

.dark .theme-btn{
  background:#222;
  color:white;
}

.dark .section-sub,
.dark .product-category,
.dark .footer-bottom,
.dark .footer-links a{
  color:#999;
}

.dark .product-image-wrap{
  background:#151515;
}




/* =========================================================
   SEARCH BAR
========================================================= */

.search-wrapper{

  position:fixed;

  top:84px;

  left:50%;

  transform:translateX(-50%);

  width:min(900px,92%);

  z-index:998;

}

.search-bar{

  height:64px;

  display:flex;
  align-items:center;
  gap:14px;

  padding:0 22px;

  border-radius:999px;

  background:rgba(0,0,0,0.35);

  backdrop-filter:blur(24px);

  -webkit-backdrop-filter:blur(24px);

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

  box-shadow:
  0 10px 40px rgba(0,0,0,0.15);

  transition:0.3s;
}

.search-bar:hover{

  background:rgba(0,0,0,0.45);

  transform:scale(1.01);

}

.search-bar svg{

  color:white;

  opacity:0.7;

  flex-shrink:0;

}

.search-bar input{

  width:100%;

  height:100%;

  background:transparent;

  border:none;

  outline:none;

  color:white;

  font-size:1rem;

  font-family:'Inter',sans-serif;

}

.search-bar input::placeholder{

  color:rgba(255,255,255,0.6);

}

/* =========================================================
   LIGHT MODE
========================================================= */

body:not(.dark) .search-bar{

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

  border:1px solid rgba(0,0,0,0.06);

}

body:not(.dark) .search-bar svg{

  color:#111;

}

body:not(.dark) .search-bar input{

  color:#111;

}

body:not(.dark) .search-bar input::placeholder{

  color:rgba(0,0,0,0.45);

}

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

@media(max-width:768px){

  .search-wrapper{

    top:78px;

    width:94%;

  }

  .search-bar{

    height:58px;

    padding:0 18px;

  }

}







/* =========================================================
   BURGER BUTTON
========================================================= */

.burger-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  position: relative;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}

.dark .burger-btn {
  background: #222;
}

.dark .burger-btn span {
  background: white;
}

/* =========================================================
   HAMBURGER MENU
========================================================= */

.hamburger-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100svh;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 36px 50px;

  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu.open {
  right: 0;
}

.dark .hamburger-menu {
  background: rgba(15, 15, 15, 0.75);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.ham-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ham-links a {
  text-decoration: none;
  color: #111;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  transition: opacity 0.2s;
}

.ham-links a:hover {
  opacity: 0.5;
}

.dark .ham-links a {
  color: white;
}

.ham-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}

.dark .ham-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

/* =========================================================
   OVERLAY
========================================================= */

.ham-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.ham-overlay.open {
  opacity: 1;
  pointer-events: all;
}
