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

:root {
    --primary: #1a1a2e;
    --secondary: #c9a227;
    --accent: #e94560;
    --dark: #0f0f0f;
    --dark-light: #1a1a1a;
    --gray: #888;
    --gray-light: #aaa;
    --light: #f5f5f5;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-primary:hover {
    background: #d4ad32;
}

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

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

.btn-nav {
    background: var(--secondary);
    color: var(--dark) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.accent {
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.features {
    padding: 60px 0;
    background: var(--dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

.courses {
    padding: 100px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.course-card {
    background: var(--dark-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.course-image {
    height: 180px;
}

.course-image.beginner { background: linear-gradient(135deg, #667eea, #764ba2); }
.course-image.portrait { background: linear-gradient(135deg, #f093fb, #f5576c); }
.course-image.landscape { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.course-image.editing { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.course-content {
    padding: 20px;
}

.course-level {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-card h3 {
    font-size: 1.25rem;
    margin: 8px 0;
}

.course-content > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.course-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: var(--gray);
}

.course-price {
    margin-bottom: 16px;
}

.course-price .original {
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 8px;
}

.course-price .current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.instructors {
    padding: 100px 0;
    background: var(--dark-light);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.instructor {
    text-align: center;
    padding: 32px;
}

.instructor-avatar {
    font-size: 5rem;
    margin-bottom: 16px;
}

.instructor h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.instructor-specialty {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.instructor p {
    color: var(--gray);
    font-size: 0.9rem;
}

.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.gallery-item {
    border-radius: 8px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.curriculum {
    padding: 100px 0;
    background: var(--dark-light);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.curriculum-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.curriculum-modules {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.module h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.module ul {
    list-style: none;
}

.module li {
    padding: 6px 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.video-preview {
    background: var(--primary);
    border-radius: 8px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.video-preview:hover {
    background: var(--dark);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.video-preview span {
    color: var(--white);
}

.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--dark-light);
    border-radius: 8px;
    padding: 32px;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
}

.testimonial-author span {
    color: var(--secondary);
    font-size: 0.9rem;
}

.enroll-cta {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        var(--dark);
}

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

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-content > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.bundle-price {
    margin-bottom: 32px;
}

.bundle-price .original {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.5rem;
    margin-right: 12px;
}

.bundle-price .current {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.bundle-price .label {
    display: block;
    color: var(--gray);
    margin-top: 8px;
}

.guarantee {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 16px;
}

.footer {
    padding: 60px 0 32px;
    background: var(--dark-light);
}

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

.footer-brand .logo {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray);
    margin-top: 16px;
}

.footer-links h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructors-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 150px);
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
