@font-face {
    font-family: 'Kapakana';
    src: url('../fonts/Kapakana/Kapakana.ttf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'CormorantGaramond';
    src: url('../fonts/Cormorant_Garamond/CormorantGaramond.ttf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'CormorantGaramond-italic';
    src: url('../fonts/Cormorant_Garamond/CormorantGaramond-Italic.ttf') format('opentype');
    font-display: swap;
}

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

html {
    box-sizing: border-box;
}

body {
    font-family: 'CormorantGaramond', sans-serif;
    margin: 0;
    background-color: #111111;
}

h1, h2, h3, h4, h5 {
    font-family: 'Kapakana';
    margin: 0;
    padding: 0;
}

p, a {
    font-family: 'CormorantGaramond';
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.site-header {
    display: flex;
        align-items: flex-start;
    justify-content: space-between;
    padding: 2.24vw 15vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
}

.header-contact {
    font-family: 'CormorantGaramond', serif;
    font-size: 1.04vw;
    font-weight: 300;
    color: #F1E9E0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-contact:hover {
    opacity: 0.8;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo img {
    width: 5.9vw;
    height: auto;
}

.menu-toggle {
    font-family: 'CormorantGaramond', serif;
    font-size: 1.04vw;
    font-weight: 300;
    color: #F1E9E0;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding: 0;
}

.menu-toggle:hover {
    opacity: 0.8;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #111111;
    z-index: 1000;
    visibility: hidden;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s;
}

.menu-overlay.active {
    visibility: visible;
    clip-path: inset(0 0 0 0);
}

.menu-close {
    position: absolute;
    top: 1.72vw;
    right: 14.95vw;
    width: 3.54vw;
    height: 3.54vw;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

.menu-close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-close:hover {
    opacity: 0.8;
}

.menu-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 13vw;
}

.menu-image {
    flex-shrink: 0;
}

.menu-image-left {
    position: absolute;
    left: 13vw;
    top: 5.26vw;
}

.menu-image-left img {
    width: 17.08vw;
    height: 20.73vw;
    object-fit: cover;
    border-radius: 1000px;
}

.menu-image-right {
    position: absolute;
    right: 10.97vw;
    bottom: 6.72vw;
}

.menu-image-right img {
    width: 18.65vw;
    height: 13.54vw;
    object-fit: cover;
}

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

.menu-link {
    font-family: 'CormorantGaramond', serif;
    font-size: 3.125vw;
    font-weight: 500;
    color: #363635;
    text-decoration: none;
    line-height: 1.15vw;
    transition: color 0.3s ease;
    padding: 1.56vw 0;
}

.menu-link:hover {
    color: #F1E9E0;
}

.menu-link.is-active {
    font-family: 'CormorantGaramond-italic', serif;
    font-style: italic;
    color: #F1E9E0;
}

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

    .header-contact {
        font-size: 4vw;
    }

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

    .menu-toggle {
        font-size: 4vw;
    }
    body.menu-active a.header-logo {
        position: fixed;
    }
    body.menu-active .site-header{
         z-index: 999999;
    }
    body.menu-active .header-contact,body.menu-active .menu-toggle{
        opacity: 0 !important;
        pointer-events: none;
    }
    .menu-close {
        top: 8vw;
        right: 7%;
        width: 12vw;
        height: 12vw;
    }

    .menu-content {
        flex-direction: column;
        padding: 20vw 0;
    }

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

    .menu-nav {
        gap: 2vw;
    }

    .menu-link {
        font-size: 8vw;
        padding: 4vw 0;
        line-height: 8vw;
    }

}
