.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(30, 20%, 86%);
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo {
    height: 48px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .header-logo {
        height: 56px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: hsl(345, 25%, 18%);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.nav-link:hover {
    color: hsl(350, 67%, 22%);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-icon {
    width: 24px;
    height: 24px;
    stroke: hsl(345, 25%, 18%);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile .nav-link {
    text-align: left;
    padding: 0.5rem 0;
}

@media (min-width: 768px) and (max-width: 1150px) {
    .nav-desktop {
        gap: 1.25rem;
    }

    .nav-desktop .nav-link {
        font-size: 0.95rem;
    }
}
