/* Header */

.header {
    background: var(--cream);
    border-bottom: 4px solid var(--color-border);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 1px 1px 0 var(--color-shadow);
    letter-spacing: 0.05em;
}

.header-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Mobile */
@media (max-width: 640px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .header-nav .hide-mobile {
        display: none;
    }

    .logo-text {
        font-size: 2rem;
    }
}

/* Very small screens - hide logo icon to save space */
@media (max-width: 390px) {
    .logo-icon {
        display: none;
    }
}
