:root {
    --hoppa-green: #00a19c;
    --hoppa-dark: #333333;
}

.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--hoppa-green) !important;
    font-weight: bold;
    font-size: 28px;
}

.nav-link {
    color: var(--hoppa-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
}

.nav-link:hover {
    color: var(--hoppa-green) !important;
}

/* Language Switcher Stilleri */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

.language-switcher span {
    color: var(--hoppa-dark);
    font-weight: 500;
    font-size: 14px;
}

.language-switcher a {
    color: #00a19c !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    color: #008a85 !important;
    background-color: rgba(0, 161, 156, 0.1);
}

.language-switcher a.active {
    color: white !important;
    background-color: #00a19c;
} 




