@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400&family=Raleway:wght@300;400&display=swap');

.sasha-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.sasha-site-header.scrolled {
    background: rgba(249, 245, 243, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.sasha-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

.sasha-logo-img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

.scrolled .sasha-logo-img {
    height: 60px;
}

.sasha-menu-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    min-width: 44px;
    transition: color 0.3s ease;
}

.scrolled .sasha-menu-toggle {
    color: #555;
}

/* OVERLAY */
.sasha-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sasha-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sasha-nav-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sasha-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.sasha-nav-menu li {
    margin: 20px 0;
}

.sasha-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 36px;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .sasha-header-inner {
        padding: 15px 20px;
    }
    .sasha-nav-menu a {
        font-size: 28px;
    }
}