.app-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    background-color: #FFFDFB;
    padding: 0 4vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.body_medium {
    font-size: 2vw;
    line-height: 2.4vw;
}

.button_medium {
    font-size: 2vw;
    line-height: 2.4vw;
}

.app-bar__left {
    display: flex;
    align-items: center;
}

.app-bar__logo {
    width: clamp(30px, 6vw, 92px);
    height: auto;
    padding-top: 2vh;
}

.app-bar__logo-image {
    width: 70%;
    height: 70%;
}

.app-bar__nav {
    display: flex;
    gap: 2vw;
    margin-left: 2vw;
    align-items: center;
}

.app-bar__link {
    text-decoration: none;
    color: #610404;
    transition: all 0.1s ease;
}

.app-bar__link:hover {
    font-weight: 600;
    color: #610404;
}

.app-bar__button {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1vh 2vw;
}

.burger-icon {
    display: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    margin-right: 3vw;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFDFB;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu__logo {
    width: 60px;
}

.mobile-menu__close {
    width: 32px;
    cursor: pointer;
}

.mobile-menu__nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 6vw;
    text-decoration: none;
    color: #610404;
}

.mobile-menu__socials {
    margin-top: auto;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.mobile-menu__social-link {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu__social-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}



@media (max-width: 500px) {

    .app-bar__nav,
    .app-bar__button {
        display: none;
    }

    .burger-icon {
        display: block;
    }

    .app-bar__logo-image {
        width: 36px;
        height: 36px;
    }

    .mobile-menu__socials img {
        width: 6vw;
        height: auto;
    }
}