.mobile {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #FDF6EB;
    z-index: 100;
}

.header-inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wrapper-for-header {
    min-height: 104px;
}

.reserve-button {
    border: 1px solid #190C04;
    padding: 10px 27px;
    border-radius: 26px;
}

header > a:not(:last-child) {
  margin-right: min(94px);
}

header a {
    color: #190C04;
    text-decoration: none;
}

@media (max-width: 824px) {
    header a {
        font-size: 15px;
    }
}

header a:active {
    cursor: pointer;
}

/* PHONE ADAPTIVE */

@media (max-width: 768px) {
    .pc {
        display: none;
    }
    .wrapper-for-header {
        display: none;
    }
    .main-wr {
        height: 100vh;
    }

    .mobile {
        background: none;
        display: block;
    }

    .img-wrapper {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 24px;
    }

    .img-wrapper > a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(253, 246, 235, 0.8);
        border-radius: 5px;
    }

    .img-wrapper > a .mobile-header-logo {
        width: 24px !important;
        height: 24px !important;
        object-fit: contain;
    }
}

@media (max-width: 425px) {
    
}

@media (max-width: 320px) {
    
}

.mobile {
    display: none;
}

@media (max-width: 768px) {

    .mobile {
        display: block;
    }

    .mobile-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .burger-btn {
        border: none;
        background: none;

        font-size: 34px;
        color: #190C04;

        cursor: pointer;
    }

    /* MENU */

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;

        width: min(50vw, 320px);
        height: 100vh;

        background: #FDF6EB;

        z-index: 1000;

        padding:
            clamp(20px, 5vw, 36px)
            clamp(18px, 4vw, 28px);

        box-sizing: border-box;

        display: flex;
        flex-direction: column;

        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .img-wrapper {
        display: flex;
        justify-content: flex-end;
        gap: 8px;

        cursor: pointer;
    }

    .img-wrapper img {
        width: clamp(32px, 8vw, 46px);
        height: auto;

        display: block;
    }

    #burgerBtn {
        width: 40px;
        height: 40px;
    }

    /* OVERLAY */

    .mobile-overlay {
        position: fixed;
        inset: 0;

        background: rgba(0,0,0,0.4);

        opacity: 0;
        visibility: hidden;

        transition: 0.3s;

        z-index: 999;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* CLOSE */

    .mobile-close {
        align-self: flex-end;

        border: none;
        background: none;

        font-size: 28px;
        color: #9B8169;

        cursor: pointer;

        margin-bottom: 20px;
    }

    /* LOGO */

    .mobile-menu-logo {
        display: flex;
        justify-content: center;

        margin-bottom: 40px;
    }

    .mobile-menu-logo img {
        width: clamp(90px, 18vw, 130px);
        height: auto;
    }

    /* NAV */

    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 20px;
    }

    .mobile-nav a {
        text-decoration: none;

        color: #190C04;

        font-size: clamp(11px, 3.2vw, 18px);
        font-weight: 500;

        text-align: center;
    }

    /* BUTTON */

    .mobile-reserve {
        margin-top: auto;

        border: 1px solid #190C04;
        border-radius: 26px;

        padding: 7px 10px;

        text-align: center;
        text-decoration: none;

        color: #190C04;

        font-size: clamp(10px, 1.8vw, 16px);

        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* INFO */

    .mobile-info {
        text-align: center;
    }

    .mobile-info p {
        color: #9B8169;

        font-size: clamp(8px, 2.72vw, 12px);

        margin-bottom: 10px;

        font-family: "InterCustom", sans-serif;
        font-weight: bold;
        white-space: nowrap;
    }

    .mobile-info a {
        text-decoration: none;

        color: #9B8169;

        font-size: clamp(24px, 4.8vw, 40px);

        font-family: 'PerepelMain';
        font-weight: 100;
    }

    /* SOCIALS */

    .mobile-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;

        margin-top: 15px;
        margin-bottom: 60px;
    }

    .mobile-socials img {
        width: 21px;
        height: auto;
    }
}

.mobile-nav a.active {
    color: #9B8169;
}
