@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #0A0A0A;
    --bg-card: #141414;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #f4d03f 50%, #D4AF37 100%);
    --white: #F8F8F8;
    --text-muted: #A0A0A0;
    --border: rgba(212, 175, 55, 0.2);
    
    /* Layout */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .luxury-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.mobile-only {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Grid Sections */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    transition: var(--transition);
    border-radius: 4px;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Page Specific */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-image {
    position: relative;
    border: 1px solid var(--gold);
    padding: 20px;
}

.about-image img {
    display: block;
}

/* Benefits Section */
.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item span {
    color: var(--gold);
    font-weight: 700;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
}

input, textarea {
    width: 100%;
    background: #1A1A1A;
    border: 1px solid var(--border);
    padding: 16px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-split, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex; /* Override display: none if any */
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-content .btn-primary {
        display: none; /* Hide desktop button on mobile header */
    }
    
    .nav-links .btn-primary {
        display: block !important;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* Testimonials Slider */
.testimonials-section {
    background: #080808;
    padding: var(--section-padding);
    overflow: hidden;
}

.slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-slide {
    min-width: 100%;
    text-align: center;
    padding: 20px;
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin: 0 auto 30px;
    padding: 5px;
    object-fit: cover;
}

.testimony-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
}

.testimony-text::before {
    content: '"';
    font-size: 5rem;
    color: var(--gold-glow);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.member-info h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

/* Modal / Pop-up */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    padding: 60px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px var(--gold-glow);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-logo {
    margin-bottom: 30px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--white);
}

.modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.modal-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.invitation-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-top: 20px;
}

/* Responsive updates for modal */
@media (max-width: 576px) {
    .modal-content {
        padding: 40px 24px;
    }
    .modal-content h2 {
        font-size: 1.8rem;
    }
}

/* Membership Benefits Section */
.membership-benefits {
    background: #0B0B0B;
    padding: 100px 0;
    color: var(--white);
}

.membership-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.membership-visual {
    flex: 0 0 50%;
    position: relative;
    max-width: 500px;
}

.radar-panel {
    background: #0B0B0B;
    border: 1px solid rgba(201, 162, 74, 0.1);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.radar-svg {
    width: 100%;
    height: auto;
}

.stat-card {
    position: absolute;
    top: 60px;
    right: -20px;
    background: #121212;
    border: 1px solid #C9A24A;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
    min-width: 200px;
}

.stat-card .label {
    font-size: 0.7rem;
    color: #C9A24A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.stat-card .number {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: #C9A24A;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .caption {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.visual-caption {
    margin-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.membership-content {
    flex: 0 0 50%;
}

.content-label {
    color: #C9A24A;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.membership-content h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.content-description {
    color: #B8B8B8;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

.benefit-list-item {
    display: flex;
    gap: 24px;
}

.icon-box {
    flex: 0 0 40px;
    height: 40px;
    background: rgba(201, 162, 74, 0.1);
    border: 1px solid #C9A24A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A24A;
}

.benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-weight: 600;
}

.benefit-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .membership-container {
        flex-direction: column;
        gap: 60px;
    }
    .membership-visual, .membership-content {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    .stat-card {
        right: 0;
    }
}
