/* ==========================================================
   ThinkAndFilm
   Global styles
   ========================================================== */


   * {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
}


body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #111;
    background: #fff;
}


a {
    color: inherit;
    text-decoration: none;
}


/* ==========================================================
   Header
   ========================================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}


.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 30px 40px;
}


.site-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}


.site-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}


.site-navigation a {
    font-size: 14px;
}


.site-navigation a.is-active {
    text-decoration: underline;
}


.menu-toggle {
    display: none;

    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}


/* ==========================================================
   Hero
   ========================================================== */

.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 816;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: blue;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.hero-introduction {
    padding: 60px 40px;
}


/* ==========================================================
   Footer
   ========================================================== */

.site-footer {
    padding: 70px 40px;
}


.site-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}


.site-footer p {
    margin-top: 0;
}


/* ==========================================================
   Mobile
   ========================================================== */

@media screen and (max-width:700px) {

    .hero {
        aspect-ratio: 1080 / 350;
        background: red;
    }

    .site-header-inner {
        padding: 20px;
    }

    .site-navigation {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: currentColor;
    }

    .hero-introduction {
        padding: 20px;
    }

    .site-footer {
        padding: 50px 20px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
    }

}