/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  --bg: #070B14;
  --bg2: #0F172A;
  --gold: #D4AF37;
  --gold-light: #F5D77A;
  --silver: #C7CDD6;
  --blue: #3B82F6;
  --white: #F8FAFC;
  --text: #B7C1D3;
  --border: #233047;
  --container: 1280px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at top right, #17315f 0%, #070B14 45%, #05070d 100%);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--container));
  margin: auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(7, 11, 20, 0.45);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.35s;
}

.site-header.scrolled {
  background: rgba(5, 8, 18, 0.82);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.site-header .container {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 62px;
}

.main-navigation ul {
  display: flex;
  gap: 40px;
}

.main-navigation a {
  color: var(--text);
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.main-navigation a:hover {
  color: #fff;
}

.main-navigation a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: 0.3s;
}

.main-navigation a:hover:after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  transition: 0.35s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-flex;
  padding: 15px 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0.15;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-1 {
  width: 650px;
  height: 650px;
  background: #2563eb;
  opacity: 0.12;
  right: -220px;
  top: -180px;
}

.glow-2 {
  width: 450px;
  height: 450px;
  background: #d4af37;
  opacity: 0.10;
  left: -180px;
  bottom: -180px;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-visual {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
  animation: pulseGlow 8s infinite ease-in-out;
}

.hero-visual img {
  max-width: 420px;
  position: relative;
  z-index: 2;
}

@keyframes pulseGlow {
  50% {
    transform: scale(1.12);
    opacity: 0.45;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 78px;
  line-height: 1.02;
  margin-bottom: 28px;
}

.hero p {
  font-size: 20px;
  color: var(--text);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features {
  padding: 50px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: auto;
  margin-bottom: 70px;
}

.section-header span {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.section-header p {
  color: var(--text);
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px;
  border-radius: 24px;
  transition: 0.35s;
  backdrop-filter: blur(20px);
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: #D4AF37;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  padding: 120px 0;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 45px;
  border-radius: 24px;
  text-align: center;
  transition: 0.35s;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
}

.stat-item h3 {
  font-size: 56px;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-item span {
  color: var(--text);
}

/* ==========================================================================
   PREMIUM CLUBS
   ========================================================================== */
.clubs {
  padding: 50px 0;
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.club-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: 0.45s;
  background: #111827;
}

.club-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 1s;
}

.club-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.25), transparent);
  z-index: 2;
}

.club-overlay {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
  z-index: 3;
}

.club-overlay span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.club-overlay h3 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #fff;
}

.club-overlay p {
  color: #d6dde8;
  font-size: 17px;
  line-height: 1.8;
  max-width: 420px;
}

.club-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.club-card:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  padding: 50px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #111827);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 32px;
  padding: 90px 70px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
  top: -220px;
  right: -150px;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  bottom: -180px;
  left: -120px;
}

.cta-box > * {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
  max-width: 850px;
  margin-inline: auto;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #05070d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 90px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 80px;
  margin-bottom: 25px;
}

.footer-brand p {
  color: var(--text);
  line-height: 1.9;
  max-width: 420px;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--text);
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8f9bb0;
  font-size: 0.95rem;
}

/* ==========================================================================
   UTILITIES & SCROLLBAR
   ========================================================================== */
::selection {
  background: #D4AF37;
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #070B14;
}

::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #F7D774;
}

/* ==========================================================================
   RESPONSIVE (Base)
   ========================================================================== */
@media (max-width: 992px) {
  .main-navigation,
  .header-buttons {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero p {
    margin: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero p {
    font-size: 17px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/*=========================
FAQ
=========================*/

.faq{

padding:120px 0;

}

.faq-list{

max-width:900px;

margin:auto;

}

.faq-item{

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

margin-bottom:20px;

overflow:hidden;

transition:.35s;

}

.faq-item:hover{

border-color:var(--gold);

}

.faq-question{

width:100%;

padding:28px 35px;

background:none;

border:none;

color:#fff;

display:flex;

justify-content:space-between;

align-items:center;

cursor:pointer;

font-size:20px;

font-weight:600;

text-align:left;

}

.faq-question span{

font-size:30px;

color:var(--gold);

transition:.3s;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .4s ease;

}

.faq-answer p{

padding:0 35px 30px;

color:var(--text);

line-height:1.9;

}

.faq-item.active .faq-answer{

max-height:300px;

}

.faq-item.active .faq-question span{

transform:rotate(45deg);

}