/* Language Switcher Styles */
.language-switch {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: 0;
}

.language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: none;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: border 0.2s;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    min-width: 28px;
    min-height: 20px;
}

.language-switch a:before {
    margin-right: 0;
    display: inline-block;
    width: 28px;
    height: 20px;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.language-switch a[data-lang="en"]:before {
    background-image: url('../img/flags/en.svg');
}

.language-switch a[data-lang="de"]:before {
    background-image: url('../img/flags/de.svg');
}

.language-switch a[data-lang="tr"]:before {
    background-image: url('../img/flags/tr.svg');
}

.language-switch a:hover {
    border: 1px solid #242f51;
    background: none;
}

.language-switch-mobile {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.language-switch-mobile a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: none;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: border 0.2s;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    min-width: 28px;
    min-height: 20px;
}

.language-switch-mobile a:before {
    margin-right: 0;
    display: inline-block;
    width: 28px;
    height: 20px;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.language-switch-mobile a[data-lang="en"]:before {
    background-image: url('../img/flags/en.svg');
}

.language-switch-mobile a[data-lang="de"]:before {
    background-image: url('../img/flags/de.svg');
}

.language-switch-mobile a[data-lang="tr"]:before {
    background-image: url('../img/flags/tr.svg');
}

.language-switch-mobile a:hover {
    border: 1px solid #242f51;
    background: none;
}

/* Mobile legal links */
.mobile-legal-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-legal-links a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-legal-links a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .language-switch {
        display: none; /* Hide desktop version on mobile */
    }
} 