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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Helvetica, Arial, sans-serif;
}

/* Navigation */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 25px 20px;
    z-index: 1000;

    display: flex;
    justify-content: center;
    gap: 50px;

    border-bottom: 1px solid #222;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.6;
}

/* Hero */

header {
    text-align: center;
    padding-top: 90px;
    padding-bottom: 100px;
}

.hero {
    min-height: 85vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: -2px;
}

.hero p {
    margin-top: 15px;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Sections */

section {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 60px;
}

.gallery-group {
    margin-bottom: 120px;
}

.gallery-group h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* Photos */

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

.photo-grid img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 4px;
}

/* Videos */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

/* YouTube Embeds */

.youtube-video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

/* Contact */

footer {
    text-align: center;
    padding: 120px 20px;
    border-top: 1px solid #222;
}

footer h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

footer p {
    margin: 12px 0;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Tablet */

@media (max-width: 900px) {

    nav {
        gap: 20px;
        padding: 20px 10px;
    }

    nav a {
        font-size: 16px;
    }

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

/* Mobile */

@media (max-width: 768px) {

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

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

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

    nav {
        flex-wrap: wrap;
    }
}


.reel-grid {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    justify-content: center;
    gap: 25px;
}

.reel-grid video {
    width: 350px;
    height: 622px; /* 9:16 ratio */
    object-fit: cover;
}

.about {
    max-width: 850px;
    margin: 0 auto 120px auto;
    padding: 0 30px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    max-width: 750px;
    margin: 0 auto;
}

.about {
    max-width: 850px;
    margin: 0 auto 120px auto;
    padding: 80px 30px 0;
    text-align: center;
    border-top: 2px solid #222;
}


/* Mobile fixes for reels and video */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    section {
        width: 92%;
        padding: 70px 0;
    }

    .reel-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
    }

    .reel-grid video {
        width: 100%;
        max-width: 360px;
        aspect-ratio: 9 / 16;
        object-fit: cover;
    }

    .video-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
    }

    .youtube-thumbnail,
    .youtube-video {
        width: 100%;
        max-width: 360px;
    }

    .youtube-thumbnail img {
        width: 100%;
        display: block;
    }
}

.left-focus {
    object-position: 20% center;
}
