/* === HEADER STYLES === */
header {
           background-color: #003344; /* chosen darker tone */
           color: white;
           padding: 1rem 2rem;
           box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* === FLEX CONTAINER === */
.header-container {
           display: flex;
           justify-content: space-between;
           align-items: center;
           flex-wrap: wrap;
           gap: 1rem;
}

/* === LOGO STYLING === */
.logo a {
           font-size: 2rem;
           font-weight: bold;
           color: #fcd116;
           text-decoration: none;
           font-family: 'Cairo', sans-serif;
}

/* === MENU STYLING === */
.menu {
           display: flex;
           flex-wrap: wrap;
           justify-content: center;
           gap: 1rem;
           flex: 1;
}

.menu a {
           color: white;
           text-decoration: none;
           font-size: 1rem;
           font-weight: 500;
           padding: 0.5rem 1rem;
           background-color: #006688;
           border-radius: 5px;
           transition: background-color 0.3s ease;
           width: 150px;
           text-align: center;
}

.menu a:hover {
           background-color: #0088aa;
           color: #fcd116;
}

/* === AUTH STYLING === */
.auth {
           display: flex;
           justify-content: end;
           gap: 0.5rem;
           text-align: center;
}

.auth a {
           color: white;
           text-decoration: underline;
           font-size: 0.95rem;
           transition: color 0.3s ease;
}

.auth a:hover {
           color: #fcd116;
}

/* === WELCOME MESSAGE === */
.welcome {
           text-align: center;
           font-size: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
           .header-container {
                      flex-direction: column;
                      align-items: stretch;
                      text-align: center;
           }

           .menu {
                      justify-content: center;
           }

           .auth {
                      justify-content: center;
           }

           .logo a {
                      font-size: 1.8rem;
           }
}


.language-switch {
    margin-left: auto;
    font-size: 0.9rem;
    color: white;
}
.language-switch a {
    color: #fcd116;
    text-decoration: none;
    margin: 0 5px;
}
.language-switch a:hover {
    text-decoration: underline;
}
