/* header.css - Shared header styles */

header {
    padding: 20px 40px;
    border-bottom: 3px solid #2C363F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    font-size: 22px;
    font-family: 'Crimson Text', serif;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2C363F;
    letter-spacing: -1px;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease;
}

.logo:hover {
    color: #81ADC8;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B68F40 0%, #BB4430 100%);
    border-radius: 2px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #2C363F;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 0px;
    transition: all 0.2s ease;
}

nav a:hover {
    color: #F2F5EA;
    background: #81ADC8;
}

nav a.active {
    color: #F2F5EA;
    background: #B68F40;
}

/* Mobile responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
