/* ================================
   General
================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    background-color: #080808;
    color: #ffffff;

    line-height: 1.6;
}


/* ================================
   Navigation
================================ */

.navbar {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 50px;

    z-index: 10;
}

.logo {
    color: #ffffff;

    text-decoration: none;

    font-size: 1.4rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}

nav {
    display: flex;

    gap: 30px;
}

nav a {
    color: #ffffff;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: opacity 0.2s ease;
}

nav a:hover {
    opacity: 0.65;
}


/* ================================
   Hero
================================ */

.hero {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background-color: #080808;
}


/* ================================
   Hero Image
================================ */

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* ================================
   Hero Overlay
================================ */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.65)
        );

    z-index: 1;
}


/* ================================
   Hero Content
================================ */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 20px;
}

.hero h1 {
    margin: 0;

    font-size: clamp(3rem, 8vw, 7rem);

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: 5px;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero p {
    margin: 25px 0 35px;

    font-size: 1.4rem;

    text-transform: uppercase;

    letter-spacing: 6px;
}


/* ================================
   Button
================================ */

.button {
    display: inline-block;

    padding: 14px 30px;

    color: #ffffff;

    border: 2px solid #ffffff;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.button:hover {
    background-color: #ffffff;

    color: #000000;
}


/* ================================
   Sections
================================ */

.section {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 45px 40px;
}

.section h2 {
    margin: 0 0 15px;

    font-size: 3rem;

    text-transform: uppercase;

    letter-spacing: 3px;
}

.section p {
    margin-top: 0;
}


/* ================================
   YouTube Video
================================ */

.video-container {
    position: relative;

    width: 100%;

    max-width: 900px;

    aspect-ratio: 16 / 9;

    margin: 20px auto 0;

    overflow: hidden;
}

.video-container iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ================================
   Google Calendar
================================ */

.calendar-container {
    width: 100%;

    max-width: 1100px;

    margin: 20px auto 0;

    overflow: hidden;
}

.calendar-container iframe {
    display: block;

    width: 100%;

    height: 600px;

    border: 0;
}


/* ================================
   Contact
================================ */

#contact a {
    color: #ffffff;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

#contact a:hover {
    opacity: 0.65;
}

.contact-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    margin-top: 20px;
}

.contact-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 1rem;
}

.contact-icon {
    width: 18px;
    height: 18px;

    display: block;

    fill: currentColor;

    flex-shrink: 0;
}


/* ================================
   Footer
================================ */

footer {
    padding: 30px;

    text-align: center;

    background-color: #000000;
}

footer p {
    margin: 0;

    font-size: 0.85rem;
}


/* ================================
   Mobile
================================ */

@media (max-width: 700px) {

    /* ----------------------------
       Navigation
    ---------------------------- */

    .navbar {
        position: relative;

        width: 100%;

        padding: 20px 15px;

        display: flex;

        flex-direction: column;

        justify-content: center;
        align-items: center;

        gap: 15px;

        background-color: #080808;
    }

    .logo {
        font-size: 1.1rem;

        text-align: center;
    }

    nav {
        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        flex-wrap: wrap;

        gap: 12px 18px;
    }

    nav a {
        font-size: 0.7rem;

        letter-spacing: 1px;
    }


    /* ----------------------------
       Hero
    ---------------------------- */

    .hero {
        width: 100%;

        aspect-ratio: 16 / 9;

        min-height: 0;
    }

    .hero-image {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }


    /* ----------------------------
       Hero Content
    ---------------------------- */

    .hero-content {
        width: 100%;

        padding: 15px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);

        line-height: 1.05;

        letter-spacing: 2px;
    }

    .hero p {
        margin: 12px 0 20px;

        font-size: 0.8rem;

        letter-spacing: 3px;
    }

    .button {
        padding: 10px 18px;

        font-size: 0.7rem;

        letter-spacing: 1px;
    }


    /* ----------------------------
       Sections
    ---------------------------- */

    .section {
        width: 100%;

        padding: 35px 20px;
    }

    .section h2 {
        margin-bottom: 12px;

        font-size: 2.2rem;

        letter-spacing: 2px;
    }


    /* ----------------------------
       YouTube
    ---------------------------- */

    .video-container {
        width: 100%;

        margin-top: 15px;

        aspect-ratio: 16 / 9;
    }


    /* ----------------------------
       Google Calendar
    ---------------------------- */

    .calendar-container {
        width: 100%;

        margin-top: 15px;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .calendar-container iframe {
        width: 100%;

        height: 500px;
    }


    /* ----------------------------
       Contact
    ---------------------------- */

    #contact p {
        margin-bottom: 15px;
    }

    .contact-links {
        gap: 12px;

        margin-top: 15px;
    }

    .contact-link {
        font-size: 0.95rem;

        gap: 8px;
    }

    .contact-icon {
        width: 17px;
        height: 17px;
    }


    /* ----------------------------
       Footer
    ---------------------------- */

    footer {
        padding: 25px 15px;
    }

}