/* BASE STYLES & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overscroll-behavior-y: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* HEADER & NAVIGATION */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.logo {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover { 
    opacity: 0.7; 
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0px; 
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.cta-button:hover { 
    transform: translateY(-2px); 
    background-color: #f0f0f0;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 6rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* LAYOUT UTILITIES */
.section-padding { 
    padding: 8rem 4rem; 
}

.bg-light { 
    background-color: #f9f9f9; 
}

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* VIDEOGRAPHY SECTION */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.video-item {
    aspect-ratio: auto;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.item-caption {
    padding-top: 1rem;
}

.item-caption h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.item-caption p {
    color: #666;
    font-size: 0.95rem;
}

/* Lite Embed Container */
.yt-lite {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.yt-lite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.yt-lite:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Play Button Styling */
.yt-lite .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(15, 15, 15, 0.8);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.yt-lite .play-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 9px 0 9px 16px;
    border-color: transparent transparent transparent #ffffff;
}

.yt-lite:hover .play-btn {
    background-color: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.yt-lite iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* PHOTOGRAPHY & HEADSHOT BANNER */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #eaeaea;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.headshot-banner {
    margin-top: 5rem;
    padding: 4rem;
    background-color: #111;
    color: #fff;
    border-radius: 4px;
}

.headshot-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.headshot-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.headshot-banner .cta-button {
    background-color: #fff;
    color: #000;
}

.headshot-banner .cta-button:hover {
    background-color: #e0e0e0;
}

/* FOOTER */
footer {
    background-color: #111;
    color: #fff;
    padding: 6rem 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.footer-email {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.3rem;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.footer-email:hover { 
    opacity: 0.7; 
    border-color: #fff;
}

.footer-right {
    text-align: right;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.6;
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
    header { 
        padding: 1.2rem 1.5rem !important; 
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .nav-links {
        display: none;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .section-padding { padding: 5rem 1.5rem; }
    .hero { padding: 4rem 1.5rem; }
    
    .hero-content h1 { font-size: 3rem; }
    .section-header h2 { font-size: 2.2rem; }
    
    .video-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem;
    }

    .headshot-banner {
        padding: 2.5rem 1.5rem;
    }

    .headshot-content h3 {
        font-size: 1.6rem;
    }

    footer { padding: 4rem 1.5rem; }
    .footer-content { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 3rem;
    }
    .footer-left h2 { font-size: 2rem; }
    .footer-right { text-align: left; }
    .footer-social { justify-content: flex-start; }
}

/* LOAD IN ANIMATIONS */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo, 
.nav-links li, 
.cta-button, 
.hero-content p, 
.hero-content h1 {
    opacity: 0; 
    animation: slideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo { animation-delay: 0.1s; }
.nav-links li:nth-child(1) { animation-delay: 0.2s; }
.nav-links li:nth-child(2) { animation-delay: 0.3s; }
.cta-button { animation-delay: 0.4s; }

.hero-content p { animation-delay: 0.6s; }
.hero-content h1 { animation-delay: 0.8s; }
