/*
Theme Name: 2belges_theme
Author: Romain Adler
Version: 2.0
*/



:root {
  --dark-purple: #3B00A1;
  --purple: #5600EA;
  --yellow: #DBF038;
  --black: #000000;
  --white: #FFFFFF;
  --disabled-text: #808080;
  --purple-gradient: linear-gradient(0.25turn, var(--dark-purple), var(--purple));
  --big-h1: 5.625rem;
  --medium-h1: 3.75rem;
  --medium-h2: 2.8rem;
  --big-h3: 2.1rem;
  --small-h3: 1.6875rem;
  --big-text: 1.125rem;
  --small-text: 0.85rem;
}

@font-face {
    font-family: "CodecPro";
    src: url("./css/fonts/Codec_Pro_Variable.ttf") format("truetype");
    font-weight: 100 900;
}


body {
    background: var(--purple-gradient);
    margin: 0;
    width: 100vw;
    overflow-x: hidden;
    font-family: "CodecPro", sans-serif;
    font-weight: 100;
}

section {
    padding: 0 4.6vw;
}

h1 {
    margin: 0;
    color: var(--yellow);
    line-height: 6rem;
    font-size: var(--big-h1);
    font-weight: 400;
}

h2 {
    margin: 0;
    color: var(--white);
    line-height: 3rem;
    font-size: var(--medium-h2);
    font-weight: 400;
}

h3 {
    margin: 0;
    color: var(--white);
    font-size: var(--small-h3);
    font-weight: 300;
}

p {
    margin: 0;
    color: var(--white);
    line-height: 1.3rem;
    font-size: var(--big-text);
    font-weight: 100;
}

strong {
    font-weight: 300;
}

select > option {
    background-color: var(--white);
    color: var(--black);
    font-weight: 300;
}

select > option:disabled {
    color: var(--disabled-text);
}

.my-primary-button {
    padding-top: 16px;
    padding-bottom: 14px;
    padding-right: 36px;
    padding-left: 36px;
    border-radius: 10px;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: var(--yellow);
    color: var(--purple);
    text-decoration: none;
    font-family: "CodecPro", sans-serif;;
    font-size: var(--big-text);
    font-weight: 300;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all ease 300ms;
}

.my-primary-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px -3px var(--black);
}

.my-primary-button:active {
    transform: scale(1.02);
}

nav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    height: 36px;
    width: calc(100% - 60px);
    margin-top: 24px;
    padding: 0 30px;
    z-index: 100;
}

.custom-logo-link {
    display: block;
    height: 100%;
}

.custom-logo-link > img {
    object-fit: contain;
    height: 100%;
    width: unset;
}

.nav-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: stretch;
}

.nav-links {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    text-shadow: 0 0 12px var(--black);
    font-size: var(--small-text);
    font-weight: 400;
}

.nav-links > li {
    margin-left: 34px;
    color: var(--yellow);
}

.nav-links > li > a {
    color: var(--yellow);
    text-decoration: none;
    white-space: nowrap;
}

.nav-links > li:last-child > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    padding: 0 22px;
    border-radius: 10px;
    box-shadow: 0 0 22px -6px var(--black);
    background-color: var(--yellow);
    color: var(--purple);
    text-shadow: none;
}

.nav-social {
    display: flex;
    margin-left: 8%;
}

.nav-social > a {
    display: block;
    height: 18px;
    margin-left: 15px;
}

.nav-social > a > img {
    height: 100%;
    object-fit: contain;
}

nav img {
    filter: drop-shadow(0 0 12px var(--black));
}

.burger-menu {
    display: none;
}

.more-shows-section {
    background-color: var(--white);
    padding-top: 72px;
    padding-bottom: 72px;
}

.more-shows-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}

.more-shows-header > h2 {
    color: var(--purple);
}

.more-shows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3vw;
}

.show-card {
    position: relative;
    width: 100%;
    border-radius: 0.5vw;
    overflow: hidden;
}

.show-card:hover > .poster-overlay {
    opacity: 1;
}

.show-card:hover > img {
    transform: scale(1.1);
}

.show-card > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    transition: transform ease 300ms;
}

.poster-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
    padding: 10px;
    background-color: rgba(219, 240, 56, 1);
    transition: opacity ease 300ms;
}

.poster-overlay > h3 {
    color: var(--purple);
    margin-bottom: 10px;
    text-align: center;
}

.poster-overlay > span {
    color: var(--purple);
    text-align: center;
    font-size: var(--big-text);
    font-weight: 200;
}

.about-us-excerpt-section {
    background-color: var(--white);
}

.about-us-excerpt-container {
    display: flex;
    justify-content: space-between;
    margin-right: -4.6vw;
    margin-left: -4.6vw;
}

.abous-us-img-wrapper {
    width: 48%;
    background-position: center;
    background-size: cover;
}

.about-us-infos {
    width: 48%;
    padding: 100px 0;
}

.about-us-infos > h2 {
    width: 80%;
    margin-bottom: 10px;
    color: var(--purple);
}

.about-us-excerpt {
    width: 80%;
    padding-bottom: 20px;
}

.about-us-excerpt p {
    color: var(--purple);
    font-weight: 300;
}

.about-us-excerpt-button-wrapper {
    display: flex;
}

.footer-menus {
    display: flex;
    width: 100vw;
}

.footer-menus > div {
    width: 50%;
}

.footer-left {
    margin: 60px 0;
    padding-left: 4.6vw;
}

.footer-left > h3 {
    margin-bottom: 16px;
    line-height: 1.8rem;
}

.footer-left > .newsletter-button-wrapper {
    display: flex;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 45px;
    margin-bottom: 24px;
}

.footer-logo > * {
    width: 50%;
}

.footer-socials {
    display: flex;
}

.footer-socials > a {
    display: block;
    height: 18px;
}

.footer-socials > a:not(:first-child) {
    margin-left: 15px;
}

.footer-socials > a > img {
    height: 100%;
    object-fit: contain;
}

.footer-contacts {
    display: flex;
}

.footer-contacts > div {
    width: 50%;
}

.footer-contacts h3 {
    margin-bottom: 3px;
}

.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 28px;
    background-color: var(--white);
    color: var(--dark-purple);
    font-size: var(--big-text);
}

.footer-credits a {
    color: var(--dark-purple);
    text-decoration: none;
}

@media (min-width: 2000px) {
    section {
        width: 1920px;
        padding-right: calc((100vw - 1920px) / 2);
        padding-left: calc((100vw - 1920px) / 2);
    }
}

@media (max-width: 992px) {
    :root {
        --big-h1: 3.125rem;
        --medium-h1: 3.125rem;
        --medium-h2: 2.5rem;
        --big-h3: 2.5rem;
        --big-text: 1.5rem;
    }

    section {
        padding: 0 8.4vw;
    }

    h1 {
        line-height: 3.2rem;
    }

    p {
        line-height: 1.6rem;
    }

    nav {
        height: 44px;
        width: calc(100% - 16.8vw);
        margin-top: 30px;
        padding: 0 8.4vw;
    }

    nav img {
        filter: none;
    }

    .nav-logo-wrapper {
        width: 46px;
        overflow: hidden;
        filter: drop-shadow(0 0 12px var(--black));
        z-index: 101;
    }

    .burger-icon-label {
        margin-right: 10px;
        color: var(--yellow);
        cursor: pointer;
        font-size: 18px;
        font-weight: 300;
        text-shadow: 0 0 12px var(--black);
        z-index: 101;
    }

    .nav-buttons {
        display: none;
    }

    .burger-menu {
        display: flex;
        align-items: center;
    }

    .burger-icon {
        cursor: pointer;
        z-index: 101;
    }

    .burger-icon span{
        display: block;
        width: 30px;
        height: 5px;
        background-color: var(--yellow);
        position: relative;
        box-shadow: 0 0 12px var(--black);
        transition: all .3s ease-in-out;
    }

    .burger-icon span:not(:last-child){
        margin-bottom: 6px;
    }

    .burger-icon.open span:nth-child(2) {
        opacity: 0;
    }

    .burger-icon.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }

    .burger-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: -11px;
        box-shadow: none;
    }

    .burger-nav-container {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 1;
        background: var(--purple-gradient);
        z-index: 100;
        transition: all 0.3s ease;
    }

    .burger-nav-container.hidden {
        opacity: 0;
    }

    .burger-nav-container.fully-hidden {
        display: none;
    }

    #burger-nav-links {
        flex-direction: column;
        align-items: center;
        text-shadow: none;
        font-size: 30px;
    }

    #burger-nav-links > li
    {
        margin-left: 0px;
    }

    #burger-nav-links > li > a
    {
        display: flex;
        align-items: center;
        height: 60px;
    }

    #burger-nav-links > li:last-child > a {
        margin-top: 20px;
        padding-top: 5px;
        box-shadow: none;
    }

    .burger-contact-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 45px;
        margin-bottom: 20px;
    }

    .burger-contact-wrapper > span {
        color: var(--white);
        font-size: var(--big-h3);
        font-weight: 300;
    }

    .burger-nav-social {
        margin-left: 0;
    }

    .burger-nav-social > a {
        height: 24px;
        margin-left: 0;
    }

    .burger-nav-social > a:not(:last-child) {
        margin-right: 20px;
    }

    .more-shows-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .more-shows-header > .my-primary-button {
        display: none;
    }

    .more-shows-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 5.5vw;
    }

    .show-card {
        border-radius: 2.3vw;
    }

    .poster-overlay {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .poster-overlay > h3,
    .poster-overlay > span {
        color: var(--white);
    }

    .about-us-excerpt-container {
        flex-direction: column;
        margin-right: 0vw;
        margin-left: 0vw;
        margin-bottom: 10px;
    }

    .abous-us-img-wrapper {
        width: 100vw;
        aspect-ratio: 26/17;
        margin-right: -8.4vw;
        margin-left: -8.4vw;
    }

    .about-us-infos {
        width: 100%;
        padding: 32px 0;
    }

    .about-us-infos > h2 {
        width: 100%;
    }

    .about-us-excerpt {
        width: 100%;
    }

    .footer-menus {
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-menus > div {
        width: 100%;
    }

    .footer-left {
        margin: 50px 0;
        padding-left: 0;
    }

    .footer-left > .newsletter-button-wrapper {
        justify-content: center;
    }

    .footer-logo {
        flex-direction: column;
        height: unset;
        margin-bottom: 36px;
    }

    .custom-logo-link {
        height: 44px;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 25px;
    }

    .footer-contacts {
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
    }

    .footer-contacts > div {
        margin-bottom: 36px;
        width: 100%;
    }

    .footer-credits {
        flex-wrap: wrap;
        padding-left: 8.4vw;
        padding-right: 8.4vw;
        padding-top: 20px;
        padding-bottom: 28px;
        font-size: var(--small-text);
    }
}