:root {
    --bg-primary: #0B3D2E;
    --bg-secondary: #092F24;
    --accent: #D4AF37;
    --text-main: #F5F5F0;
    --text-muted: #A8B2A1;
}

:root {
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 40px;
    --space-5: 80px;
    --space-6: 120px;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background: radial-gradient(circle at top, var(--bg-primary), var(--bg-secondary));
    color: var(--text-main);
    overflow-x: hidden;
}



/* GRAIN EFFECT */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
}

html,
body {
    height: auto;
    scroll-behavior: auto;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-size: 18px;
    letter-spacing: 2px;
}

.logo a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: white;
}

.nav-btn {
    border: 1px solid var(--accent);
    padding: 8px 18px;
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--accent);
    color: #000;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.subtext {
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

/* SECTION */
.section {
    padding: 120px 20px;
    text-align: center;
}

.section-content {
    max-width: 700px;
    margin: 0 auto;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.section p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* MEMBERSHIP GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.grid div {
    font-size: 15px;
    color: var(--text-muted);
}

/* FOOTER */
.footer {
    padding: 40px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
    }
}




/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGER */
.fade-up.delay-1 {
    transition-delay: 0.2s;
}

.fade-up.delay-2 {
    transition-delay: 0.4s;
}

.fade-up.delay-3 {
    transition-delay: 0.6s;
}

/* BUTTON PREMIUM HOVER */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 0.6s;
}

.btn:hover::after {
    opacity: 1;
    transform: translateX(100%);
}

/* NAV SCROLL EFFECT */
.navbar.scrolled {
    backdrop-filter: blur(8px);
    background: rgba(9, 47, 36, 0.7);
}




.cursor {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s, height 0.2s, opacity 0.3s;
    z-index: 9999;
}

/* HOVER EFFECT */
.cursor.hover {
    width: 40px;
    height: 40px;
    border-color: var(--accent);
    opacity: 0.8;
}


.logo {}



h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

body,
p,
input,
button {
    font-family: 'Inter', sans-serif;
}

/* 
.hero h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
p {
  font-size: 16px;
  line-height: 1.7;
}
.small {
  font-size: 14px;
  color: var(--text-muted);
}
.label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
} */



.section {
    padding: var(--space-6) 20px;
}

.hero p {
    margin-bottom: var(--space-4);
}