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

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gold: #d4af37;
    --light-gold: #f4e4a6;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f8f8;
    --text-gray: #666666;
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Source Sans Pro', sans-serif;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans-font);
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--primary-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h1 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-cta {
    background: var(--accent-gold) !important;
    color: var(--primary-black) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 0;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--light-gold) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--primary-white);
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title {
    font-family: var(--serif-font);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-white);
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
    letter-spacing: 1px;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-accent {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 40%;
    height: 120%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
    transform: translateY(-50%) rotate(15deg);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-family: var(--serif-font);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.about p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: var(--primary-white);
}

.section-title {
    font-family: var(--serif-font);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-white);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-black);
}

.benefit-card h3 {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Videos Section */
.videos {
    padding: 8rem 0;
    background: var(--light-gray);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.video-card {
    background: var(--primary-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 250px;
}

.video-card h3 {
    padding: 1.5rem;
    font-family: var(--serif-font);
    font-size: 1.2rem;
    color: var(--primary-black);
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: var(--primary-black);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--serif-font);
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--primary-white);
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--accent-gold);
}

.footer p {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}
