/*-------------------------------------- VARIABLES --------------------------------------------------------*/
:root {
    --primary-color: #d95e4b;

    --accent-color-one: #0808f5;
    --accent-color-two: #fcffb2;
    --accent-color-three: #b4e6b3;
    --accent-color-four: #ccb0f4;
    --accent-color-five: #b5c5f9;

    --hover-color-one: #848484;
    --hover-color-two: #dd2a0f;
    --hover-color-three: #0505af;
}

/*-------------------------------------- CSS RESET --------------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

#root,
#__next {
    isolation: isolate;
}

/*---------------------------------------- TYPOGRAPHY ------------------------------------------------------*/
/* FONTS */
@font-face {
    font-family: "Futura PT Medium";
    font-style: normal;
    font-weight: normal;
    src: local("Futura PT Medium"),
        url("assets/FuturaCyrillicMedium.woff") format("woff");
}

@font-face {
    font-family: "Futura PT Book";
    font-style: normal;
    font-weight: normal;
    src: local("Futura PT Book"),
        url("assets/FuturaCyrillicBook.woff") format("woff");
}

h1,
h2,
h3 {
    font-family: "Futura PT Medium", sans-serif;
}

p,
li {
    font-family: "Futura PT Book", sans-serif;
}

/*---------------------------------------- HEADER ------------------------------------------------------*/
body {
    position: relative;
}

.no-scroll {
    overflow: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: solid 2px #eeeeee;
}

#header-left-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#header-logo {
    width: 60px;
    cursor: pointer;
}

.menu-btn {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
}

#header-menu-icon {
    font-size: 30px;
    color: black;
}

#header-menu-container {
    display: none;
}

.menu-items {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    font-size: 1.5rem;
}

header a,
#mobile-menu-container a {
    text-decoration: none;
    color: inherit;
}

header a:hover {
    color: var(--hover-color-one);
}

.highlight-primary {
    color: var(--primary-color);
}

.highlight-primary:hover {
    color: var(--hover-color-two);
}

#header-right-container {
    display: none;
}

.highlight-accent {
    color: var(--accent-color-one);
}

.bold {
    font-weight: bold;
}

/*---------------------------------------- MOBILE MENU ------------------------------------------------------*/
#mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    transform: translateY(-110%);
    transition: transform 0.4s ease-in-out;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
}

#mobile-menu-container.active {
    transform: translateY(0);
}

#close-icon-container {
    display: flex;
    justify-content: end;
    padding: 0 2rem;
}

#header-close-menu-icon {
    font-size: 35px;
    color: white;
    padding-top: 1.125rem;
}

#header-close-menu-icon:hover {
    color: var(--accent-color-one);
}

#mobile-menu-items {
    flex-direction: column;
    gap: 1rem;
    color: white;
    font-weight: 600;
    margin-top: 2rem;
}

#mobile-menu-items li:hover {
    color: var(--accent-color-one);
}

header li {
    cursor: pointer;
}

/*---------------------------------------- HERO SECTION ------------------------------------------------------*/
#hero-container {
    display: flex;
    justify-content: center;
}

#hero-image-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

#hero-image {
    max-width: 850px;
}

#hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Futura PT Book";
    font-size: clamp(3.75rem, -2.3214rem + 19.4286vw, 8rem);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
}

/*---------------------------------------- INFORMATIONAL SECTIONS ------------------------------------------------------*/
.informational-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 2rem;
}

.informational-text-container h2 {
    font-size: 1.25rem;
    font-weight: 400;
}

.highlight-accent-description {
    color: var(--accent-color-one);
    cursor: pointer;
}

.highlight-accent-description:hover {
    color: var(--hover-color-three);
}

/*---------------------------------------- ACCENT SECTIONS ------------------------------------------------------*/
.accent-container-right {
    display: flex;
    align-items: center;
    width: 100%;
    aspect-ratio: 1.8/1;
    background: linear-gradient(
        to left,
        var(--accent-color-two) 60%,
        transparent 60%
    );
}

.accent-container-left {
    display: flex;
    align-items: center;
    width: 100%;
    aspect-ratio: 1.5/1;
    background: linear-gradient(
        to right,
        var(--accent-color-three) 60%,
        transparent 60%
    );
}

.accent-container-center {
    display: flex;
    align-items: center;
    width: 100%;
    aspect-ratio: 1.8/1;
    background: linear-gradient(
        to right,
        transparent 15%,
        var(--accent-color-four) 15%,
        var(--accent-color-four) 85%,
        transparent 85%
    );
}

.accent-image-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 2rem;
}

.accent-image-container:first-of-type {
    justify-content: space-between;
}

#accent-image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

#full-studio-pic-container {
    margin: 2rem;
}

#studio-pic-one,
#studio-pic-two,
#studio-pic-five,
#studio-pic-seven,
#studio-pic-eight {
    width: 45%;
}

#studio-pic-three,
#studio-pic-four {
    min-width: 45%;
}

#video-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

#youtube-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 2rem;
    border: none;
}

#job-link-container {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 2rem 2rem;
}

#job-description-container {
    background: var(--accent-color-five);
    padding: 1.5rem;
}

.job-description-text {
    font-size: 1.125rem;
    font-weight: 400;
}

#job-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
}

/*---------------------------------------- FOOTER ------------------------------------------------------*/
footer {
    border-top: solid 2px #eeeeee;
    margin: 0 2rem;
    padding: 1.5rem 0;
}

#footer-heading-text {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 1.5rem;
}

.footer-small-headings {
    font-weight: bold;
    font-size: 1rem;
    font-family: "Futura PT Book";
}

.nav-footer ul {
    padding: 0;
    list-style: none;
}

.nav-footer li {
    width: fit-content;
}

.nav-footer li:hover {
    color: var(--accent-color-one);
    cursor: pointer;
}

.footer-padding-bottom {
    padding-bottom: 1.5rem;
}

#newsletter-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

#email-form {
    display: flex;
    width: 100%;
}

#email-form input {
    font-family: "Futura PT Book";
    background: #ececec;
    padding: 0.35rem 0.75rem;
    border: none;
    flex: 1;
}

#email-form input:focus {
    box-shadow: inset 0 0 0 2px var(--accent-color-one);
    border-color: var(--accent-color-one);
    outline: none;
}

#email-form button {
    font-family: "Futura PT Book";
    font-weight: bold;
    color: white;
    background: var(--accent-color-one);
    padding: 0.35rem 1.6rem;
    border: none;
    cursor: pointer;
}

#email-form button:hover {
    background: var(--hover-color-three);
}

.social-icon-container {
    display: flex;
    gap: 0.8rem;
}

.social-icon-container img {
    width: 35px;
    margin-top: 0.75rem;
    cursor: pointer;
}

#lang-loc-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.dropdown-container {
    position: relative;
    width: 175px;
}

.dropdown-container::after {
    content: "\25b6";
    position: absolute;
    font-size: 10px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: all 0.3s;
    pointer-events: none;
}

.dropdown-container:hover::after {
    transform: translateY(-50%) rotate(90deg);
    color: var(--accent-color-one);
}

.dropdown {
    font-family: "Futura PT Book";
    font-size: 0.875rem;
    font-weight: bold;
    color: black;
    background: #ececec;
    padding: 0.5rem;
    border: none;
    width: 100%;
    appearance: none;
}

.dropdown:hover {
    cursor: pointer;
}

.dropdown:focus {
    outline: none;
}

#footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#footer-logo-container img {
    width: 50px;
    cursor: pointer;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*---------------------------------------- MEDIA QUERIES ------------------------------------------------------*/
/* HEADER */
@media (width > 815px) {
    header {
        padding: 0 2rem;
    }

    #header-menu-container {
        display: block;
    }

    #header-right-container {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    #header-menu-btn {
        display: none;
    }

    #header-menu-items {
        flex-direction: row;
        gap: 2rem;
        margin: 0;
        font-size: 1rem;
    }
    /* HERO */
    #hero-container {
        padding: 2rem 5rem 0 5rem;
    }

    #hero-image {
        max-width: 1200px;
    }
    /* INFORMATIONAL */
    .informational-text-container {
        gap: 1.5rem;
        margin: 6rem 0;
        padding: 0 2rem;
    }

    .informational-text-container h2 {
        width: 650px;
        font-size: 1.875rem;
    }

    .informational-text-container p {
        width: 650px;
        font-size: 1.25rem;
    }

    .accent-image-container {
        gap: 5rem;
        margin: 0 5rem;
    }

    #full-studio-pic-container {
        margin: 0 5rem;
    }

    #accent-image-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    #job-link-container {
        flex-direction: row;
        margin: 0 5rem 6.5rem 5rem;
    }

    .job-link-image-container {
        width: 50%;
    }

    .job-link-image-container img {
        height: 100%;
        object-fit: cover;
    }

    #job-description-container {
        background: var(--accent-color-five);
        width: 50%;
        padding: 4rem;
    }

    .job-description-text {
        font-size: 1.75rem;
    }
}

@media (width > 1020px) {
    /* FOOTER */
    footer {
        padding: 6.5rem 5rem 2rem 5rem;
        margin: 0;
    }

    #footer-heading-text {
        font-size: 4rem;
    }

    footer p,
    footer li {
        font-size: clamp(1rem, 0.7615rem + 0.7634vw, 1.25rem);
    }

    .footer-small-headings {
        font-size: 1.25rem;
    }

    #grid-container {
        display: grid;
        grid-template: auto auto / 33% auto auto;
        gap: 2rem;
    }

    #lang-loc-container {
        display: grid;
        gap: 0.25rem;
        margin-top: 0.5rem;
    }

    .dropdown-container {
        width: 250px;
    }

    #footer-logo-container {
        grid-column: 3;
        grid-row: -1;
        justify-self: end;
        align-self: end;
    }
}
