@font-face {
    font-family: "TT Chocolates";
    font-stretch: normal;
    font-style: normal;
    font-display: swap;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.nav {
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: block;
    /* width: 100%px; */
    height: 40px;
    overflow: hidden;
}

.logo img {
    width: 100%px;
    height: 40px;
    /* overflow: hidden; */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-family: "TT Chocolates";
    text-decoration: none;
    color: #333;
    font-style: normal;
    font-optical-sizing: auto;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 300;
    transition: color 0.3s ease;
}

@media (max-width: 1070px) {
    .nav-menu a {
        font-size: 0.65rem;
    }
}

.nav-menu a:hover {
    color: #d4a574;
}

.nav-icons {
    display: flex;
    gap: 10px;
}

.icon {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
}

.header_social_icons {
    display: flex;
    gap: 10px;
}


.header__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 10px;
    height: 10px; */
    border-radius: 50%;
    /* background-color: #333; */
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.header__social-link:hover {
    transform: scale(1.2);
}

.header_contact_icon {
    width: 20px;
    height: 20px;
}
