/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-text: #ffffff;
    --color-text-dark: #1a1a2e;
    --color-bg-light: #f8f5f2;
    --color-bg-dark: #1a1a2e;
    --color-accent: #d4a574;
    --color-accent-hover: #c49464;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
}

/* Hero Section - Full Screen */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-text);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 600px;
}

.name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.btn {
    display: block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-text);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Footer */
.hero-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 2;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--color-text);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-dark);
}

/* About Section */
.about {
    background: var(--color-bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
}

/* Teaching Philosophy Section */
.teaching {
    background: #fff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.philosophy-card {
    padding: 2rem;
    background: var(--color-bg-light);
    border-left: 3px solid var(--color-accent);
}

.philosophy-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.philosophy-card p {
    color: #666;
    line-height: 1.7;
}

/* Performance Reel Section */
.reel {
    background: var(--color-bg-dark);
    color: var(--color-text);
}

.reel h2 {
    color: var(--color-text);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-placeholder:hover img {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

/* Photos Section */
.photos {
    background: var(--color-bg-light);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.photo-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.08);
}

/* Contact Section */
.contact {
    background: #fff;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact .btn {
    color: var(--color-text-dark);
    border-color: var(--color-text-dark);
}

.contact .btn:hover {
    background: var(--color-text-dark);
    color: var(--color-text);
}

.contact .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.contact .btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.languages {
    color: #888;
    font-size: 0.9rem;
}

.languages strong {
    color: var(--color-text-dark);
    font-weight: 500;
}

/* Main Footer */
.main-footer {
    background: var(--color-bg-dark);
    color: var(--color-text);
    padding: 3rem 2rem;
    text-align: center;
}

.main-footer .social-icons {
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-text);
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero {
        background-position: 50% 0%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

@media (max-width: 600px) {
    .hero {
        background-attachment: scroll;
        background-position: 50% 0%;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .cta-buttons {
        max-width: 280px;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-options .btn {
        width: 100%;
        max-width: 280px;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}
