.header {
    width: 100%;
    max-width: 1400px;
    height: 3.5rem;
    backdrop-filter: blur(12px);
    background: rgba(242, 255, 251, 0.15);
    border-radius: 0.5rem;
    border: 1px solid rgba(242, 255, 251, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.header__container {
    position: fixed;
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.header__title {
    font-size: 1.4rem;
    font-weight: 750;
    font-family: var(--font-primary), sans-serif;
    text-decoration: none;
    color: var(--color-light);
    transition: all 0.2s ease-in-out;
}

.header__title:hover {
    text-decoration: underline;
}

.header__hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2.3rem;
    height: 2.3rem;
    color: var(--color-light);
    transition: all 0.2s ease-in-out;
}

.header__hamburger:active {
    scale: 0.95;
}

.header__nav {
    display: flex;
    gap: 1rem;
}

.header__nav a {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-primary), sans-serif;
    text-decoration: none;
    color: var(--color-light);
    transition: all 0.2s ease-in-out;
}

.header__nav a:hover {
    text-decoration: underline;
}

.header__nav--mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    transform: translateY(-100%);
    transition: transform 0.2s ease-in-out;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
}

.header__nav--mobile a {
    font-size: 2.2rem;
    font-weight: 600;
    font-family: var(--font-primary), sans-serif;
    text-decoration: none;
    color: var(--color-light);
    transition: all 0.2s ease-in-out;
}

.header__nav--mobile a:active {
    scale: 0.95;
}

.header__mobile__nav--active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__hamburger {
        display: inline;
    }

    .header__nav--mobile {
        display: flex;
    }
}