*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#ffffff;
  color:#111;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */

.header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
}

.nav-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
}

.logo{
  font-size:32px;
  font-weight:700;
  color:#fff;
}

.logo span{
  color:#d4af37;
}

.nav{
  display:flex;
  gap:30px;
}

.nav a{
  text-decoration:none;
  color:#fff;
  font-size:15px;
  transition:0.3s;
}

.nav a:hover{
  color:#d4af37;
}

/* BUTTONS */

.btn{
  display:inline-block;
  text-decoration:none;
  border-radius:50px;
  transition:0.3s ease;
}

.btn-nav{
  background:#d4af37;
  color:#000;
  padding:12px 26px;
  font-weight:600;
}

.btn-nav:hover{
  background:#fff;
}

.btn-primary{
  background:#d4af37;
  color:#000;
  padding:15px 34px;
  font-weight:600;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:1px solid #fff;
  color:#fff;
  padding:15px 34px;
}

.btn-secondary:hover{
  background:#fff;
  color:#000;
}

.btn-card{
  margin-top:20px;
  background:#d4af37;
  color:#000;
  padding:14px 28px;
  font-weight:600;
}

/* HERO */

/* HERO SECTION */

.hero{
  position:relative;

  min-height:auto;

  padding:180px 0 120px;

  background:
  linear-gradient(
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.72)
  ),
  url("img/luxury-banner.png");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  overflow:hidden;
}

/* OVERLAY */

.overlay{
  position:absolute;
  inset:0;
}

/* CONTAINER */

.hero-content{
  position:relative;
  z-index:2;

  display:grid;

  grid-template-columns:
  1.1fr 0.9fr;

  gap:80px;

  align-items:center;
}

/* LEFT SIDE */

.hero-text{
  color:#fff;
  max-width:700px;
}

.mini-title{
  display:inline-block;

  color:#d4af37;

  text-transform:uppercase;

  letter-spacing:2px;

  margin-bottom:25px;

  font-size:14px;

  font-weight:600;
}

.hero-text h1{
  font-size:68px;

  line-height:1.08;

  margin-bottom:30px;

  font-weight:700;

  color:#fff;
}

.hero-description{
  font-size:19px;

  line-height:1.9;

  color:#e0e0e0;

  margin-bottom:45px;

  max-width:620px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;

  gap:20px;

  margin-bottom:55px;

  flex-wrap:wrap;
}

.btn-primary{
  background:#d4af37;

  color:#000;

  padding:16px 34px;

  border-radius:10px;

  font-weight:700;

  text-decoration:none;

  transition:0.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.35);

  color:#fff;

  padding:16px 34px;

  border-radius:10px;

  text-decoration:none;

  transition:0.3s;
}

.btn-secondary:hover{
  background:#fff;
  color:#000;
}

/* STATS */

.hero-stats{
  display:flex;

  gap:60px;

  flex-wrap:wrap;
}

.hero-stats h3{
  font-size:38px;

  color:#d4af37;

  margin-bottom:5px;
}

.hero-stats span{
  color:#d0d0d0;

  font-size:15px;
}

/* RIGHT CARD */

.hero-card{
  display:flex;
  justify-content:flex-end;
}

.card-box{
  width:100%;

  max-width:430px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.15);

  backdrop-filter:blur(18px);

  padding:50px 42px;

  border-radius:28px;

  color:#fff;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.35);
}

.card-box h3{
  font-size:34px;

  margin-bottom:22px;
}

.card-box p{
  color:#ddd;

  line-height:1.8;

  margin-bottom:30px;
}

.card-box ul{
  list-style:none;
  padding:0;
}

.card-box ul li{
  margin-bottom:16px;

  color:#f1f1f1;

  font-size:16px;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero-content{
    grid-template-columns:1fr;
    gap:60px;
  }

  .hero-card{
    justify-content:flex-start;
  }

  .card-box{
    max-width:100%;
  }

}

@media(max-width:768px){

  .hero{
    padding:150px 0 90px;
  }

  .hero-text h1{
    font-size:48px;
  }

  .hero-description{
    font-size:17px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:600px){

  .hero{
    padding:130px 0 80px;
  }

  .hero-text h1{
    font-size:38px;
    line-height:1.2;
  }

  .card-box{
    padding:35px 28px;
  }

  .hero-stats{
    flex-direction:column;
    gap:25px;
  }

}

/* HERO CARD */

.card-box{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  padding:40px;
  border-radius:24px;
  backdrop-filter:blur(20px);
}

.card-box h3{
  font-size:30px;
  margin-bottom:20px;
}

.card-box p{
  color:#ddd;
  margin-bottom:20px;
}

.card-box ul{
  list-style:none;
}

.card-box ul li{
  margin-bottom:12px;
  color:#eee;
}

/* FEATURES */

.features{
  padding:120px 0;
  background:#fff;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:44px;
  margin-bottom:18px;
}

.section-title p{
  max-width:700px;
  margin:auto;
  color:#666;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-box{
  background:#f7f7f7;
  padding:40px;
  border-radius:20px;
  transition:0.3s;
}

.feature-box:hover{
  transform:translateY(-8px);
}

.icon{
  font-size:42px;
  margin-bottom:20px;
}

.feature-box h3{
  margin-bottom:14px;
  font-size:24px;
}

/* MEMBERS */

.members{
  background:#0d0d0d;
  padding:120px 0;
}

.light h2,
.light p{
  color:#fff;
}

.member-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.member-card{
  background:#151515;
  border-radius:24px;
  overflow:hidden;
}

.member-card img{
  width:100%;
  height:360px;
  object-fit:cover;
}

.member-content{
  padding:25px;
  color:#fff;
}

.member-content h3{
  margin-bottom:8px;
}

/* CTA */

.cta{
  padding:100px 0;
  background:#d4af37;
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.cta h2{
  font-size:46px;
  margin-bottom:15px;
}

.cta p{
  max-width:700px;
  color:#222;
}

/* FOOTER */

.footer{
  background:#000;
  color:#aaa;
  padding-top:80px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
  padding-bottom:60px;
}

.footer h4{
  color:#fff;
  margin-bottom:20px;
}

.footer ul{
  list-style:none;
}

.footer ul li{
  margin-bottom:12px;
}

.footer ul li a{
  color:#aaa;
  text-decoration:none;
}

.footer ul li a:hover{
  color:#d4af37;
}

.footer-logo{
  margin-bottom:20px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  padding:25px;
  font-size:14px;
}

/* RESPONSIVE */

@media(max-width:992px){

  .hero-content{
    grid-template-columns:1fr;
    padding-top:120px;
  }

  .feature-grid,
  .member-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-text h1{
    font-size:48px;
  }

  .nav{
    display:none;
  }

}

@media(max-width:600px){

  .hero-text h1{
    font-size:38px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-stats{
    flex-direction:column;
    gap:20px;
  }

  .section-title h2{
    font-size:34px;
  }

  .cta h2{
    font-size:34px;
  }

}

/* CTA BUTTON SPACING */

.cta-section .btn-primary{
  display:inline-block;
  margin-top:30px;
}

.cta-section .btn-primary{
  display:inline-block;
  margin-top:30px;
  margin-bottom:40px;
}

/* FOOTER GRID */

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
  align-items:flex-start;
}

/* RESPONSIVE */

@media(max-width:992px){

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }

}

@media(max-width:600px){

  .footer-grid{
    grid-template-columns:1fr;
  }

}

