﻿.top-bar {
    height: 500px !important;
}

/* Language toggle styling - Desktop */
.language-toggle {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    gap: 5px;
    align-self: center; /* Vertically center with buttons */
}

.language-toggle .language-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-toggle .language-link:hover {
    color: #FF1A75;
}

.language-toggle .language-link.active {
    text-decoration: underline;
    color: #FF1A75;
    cursor: default;
    pointer-events: none;
}

.language-toggle .language-separator {
    color: #999;
    margin: 0 3px;
}

/* Mobile Language Toggle (between logo and navbar) */
.language-toggle-mobile {
    display: none !important; /* Force hide on desktop */
    text-align: center;
    padding: 8px 15px;
    margin: 0;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.2;
}

.language-toggle-mobile .language-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-toggle-mobile .language-link:hover {
    color: #FF1A75;
}

.language-toggle-mobile .language-link.active {
    text-decoration: underline;
    color: #FF1A75;
    cursor: default;
    pointer-events: none;
}

.language-toggle-mobile .language-separator {
    color: #999;
    margin: 0 8px;
}

@media (max-width: 768px) {
    /* Override top-bar height on mobile to prevent large gap */
    .top-bar {
        height: auto !important;
        min-height: auto !important;
    }
    
    /* Hide desktop language toggle on mobile */
    .language-toggle {
        display: none !important;
    }
    
    /* Show mobile language toggle */
    .language-toggle-mobile {
        display: block !important;
    }
}