/* header.css - Styles for Platillos header partial */

.header-bar {
    width: 100%;
    background: var(--color-turquoise-dark);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 0;
    margin: 0;
}

.header-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.03em;
}

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

.header-welcome {
    font-size: 1.05rem;
    margin-right: 0.7rem;
    color: #fff;
    font-weight: 500;
}

.header-profile-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.header-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: border-color 0.2s;
}

.header-profile-link:hover .header-avatar {
    border-color: #fff;
}

.header-avatar-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-turquoise);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

@media (max-width: 700px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        padding: 0.65rem 0.8rem;
    }
    .header-nav {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
    .header-nav a {
        white-space: nowrap;
    }
}
