@font-face {
    font-family: 'Spartan';
    src: url('../fonts/spartan/Spartan-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Spartan';
    src: url('../fonts/spartan/Spartan-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Spartan';
    src: url('../fonts/spartan/Spartan-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Spartan';
    src: url('../fonts/spartan/Spartan-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Spartan';
    src: url('../fonts/spartan/Spartan-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Spartan';
    src: url('../fonts/spartan/Spartan-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'ShantellSansBouncy';
    src: url('../fonts/Shantell_Sans/ShantellSans-Bouncy.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'ShantellSansBouncyLight';
    src: url('../fonts/Shantell_Sans/Shantell-Sans-Bouncy-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'ShantellSans';
    src: url('../fonts/Shantell_Sans/ShantellSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'ShantellSans';
    src: url('../fonts/Shantell_Sans/ShantellSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'ShantellSans';
    src: url('../fonts/Shantell_Sans/ShantellSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'ShantellSans';
    src: url('../fonts/Shantell_Sans/ShantellSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

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

html {
    box-sizing: border-box;
}

body {
    font-family: 'Spartan', sans-serif;
    margin: 0;
    color: #070707;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
div#page {
    overflow: hidden;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.08vw 8.28vw;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff; 
}

.header-logo img {
    width: 8.64vw;
    height: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 3.13vw;
}

.header-nav-link {
    font-family: 'Spartan', sans-serif;
    font-size: 0.625vw;
    font-weight: 700;
    color: #920026;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    white-space: nowrap;
    position: relative;
    padding-bottom: 2px;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #920026;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.header-nav-link:hover::after,
.header-nav-link.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 1.5vw;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 7vw;
    height: 7vw;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #920026;
    border-radius: 2px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #920026;
    z-index: 1000;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay-logo {
    position: absolute;
    top: 5vw;
    left: 7%;
    display: block;
}

.menu-overlay-logo img {
    width: 32vw;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.menu-overlay-social {
    position: absolute;
    bottom: 10vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6vw;
}

.menu-overlay-social a {
    display: block;
    width: 5vw;
    height: 5vw;
    transition: opacity 0.3s ease;
}

.menu-overlay-social a:hover {
    opacity: 0.7;
}

.menu-overlay-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.menu-overlay.active {
    visibility: visible;
}

.menu-image-left,
.menu-image-right {
    display: none;
}

.menu-close {
    position: absolute;
    top: 7vw;
    right: 7%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 9vw;
    height: 9vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close::before,
.menu-close::after {
    content: '';
    position: absolute;
    width: 8vw;
    height: 2px;
    background-color: #Fff;
    border-radius: 2px;
}

.menu-close::before {
    transform: rotate(45deg);
}

.menu-close::after {
    transform: rotate(-45deg);
}

.menu-close img {
    display: none;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12vw;
}

.menu-link {
    font-family: 'Spartan', sans-serif;
        font-size: 4vw;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    line-height: 1;
    position: relative;
    padding-bottom: 1vw;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fff;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-link:hover::after,
.menu-link.is-active::after {
    transform: scaleX(1);
}

@media only screen and (max-width: 767px) {
    .site-header {
        padding: 5vw 7%;
    }

    .header-logo img {
        width: 32vw;
    }

    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 7vw;
        height: 7vw;
        gap: 1.8vw;
    }
}
