/* header.css - Header specific styles */
.site-header {
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.site-tagline {
    font-size: 0.7rem;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-title-text a {
    font-family: 'Audiowide', cursive;
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
}

/* Version switcher (EU / FR / SP) */
.version-switcher {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.version-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #666;
    border-radius: 4px;
    padding: 5px 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
}

.version-btn:hover {
    border-color: #aaa;
    background-color: rgba(255,255,255,0.18);
}

.version-btn img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.dropdown-arrow {
    font-size: 11px;
    color: #ccc;
    margin-left: 2px;
}

.version-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background-color: #333;
    border: 1px solid #666;
    border-radius: 4px;
    list-style: none;
    padding: 4px 0;
    min-width: 130px;
    z-index: 1001;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.version-switcher.open .version-dropdown {
    display: block;
}

.version-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.15s;
    border-radius: 0;
}

.version-dropdown li a:hover {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
}

.version-dropdown li a img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}


