/*
 * wisнblower - Header Component CSS
 * Header-Layout, Logo, Cyrillic-H Styling
 */

/* ===== HEADER COMPONENT ===== */
header {
    background-color: transparent;
    color: white;
    padding: 1.5rem 0;
}

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

/* ===== LOGO COMPONENT ===== */
.logo {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
    text-transform: lowercase;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
}

.cyrillic-h {
    font-family: Arial, sans-serif;
}

.logo:focus {
    text-decoration: underline;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        order: 1;
        margin-bottom: 0.75rem;
    }

    nav[role="navigation"] {
        order: 2;
        margin-top: 0.0rem;
    }
}