/* The Soho Minimalist CSS */

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #333333;
    --light-gray: #f4f4f4;
    --font-main: 'Inter', sans-serif;
    --nav-height: 80px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Typography */
h1 {
    font-weight: 700;
    font-size: 4rem;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h2.section-title {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 10px;
    display: inline-block;
}

h3 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid var(--text-color);
    cursor: pointer;
}

.btn.primary {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.btn.primary:hover {
    background-color: transparent;
    color: var(--text-color);
}

.btn.secondary {
    background-color: transparent;
    color: var(--text-color);
}

.btn.secondary:hover {
    background-color: var(--light-gray);
}

.mt-4 {
    margin-top: 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-nav {
    border: 1px solid var(--text-color);
    padding: 8px 18px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-nav:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
}

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

/* Reel Section */
.section {
    padding: 100px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    background-color: var(--light-gray);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #999;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Photos Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s;
    cursor: pointer;
    /* Indicate clickable */
}

.gallery-item:hover img {
    filter: grayscale(0%);
}

.gallery-item figcaption {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    text-align: left;
    font-weight: 500;
}

/* Resume Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.bio p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    /* Slightly softer black for elegance */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th,
td {
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

th {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
}

.training-list {
    list-style: none;
    margin-top: 10px;
}

.training-list li {
    padding: 5px 0;
}

/* Contact Section */
.footer {
    padding: 100px 0 50px;
    background-color: var(--light-gray);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.social-links a {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
}

.social-links a:hover {
    border-bottom-color: var(--text-color);
    opacity: 1;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
    position: relative;
}

.lightbox-content img {
    max-height: 85vh;
    /* Leave room for caption */
    max-width: 100%;
    width: auto;
    border: 2px solid #fff;
}

#lightbox-caption {
    color: #fff;
    margin-top: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
}

.nav-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 0 20px;
    transition: color 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2001;
}

.nav-btn:hover {
    color: #ccc;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* In a real build, we'd add a hamburger menu */
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .gallery {
        grid-template-columns: 1fr;
        /* 1 col on mobile, per PRD */
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .nav-btn {
        padding: 0 10px;
    }
}