@import url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/css/flag-icon.min.css');

:root {
    --hoppa-green: #c8102e;
    --hoppa-dark: #1a1a1a;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(200, 16, 46, 0.12);
    padding: 10px 0;
    border-bottom: 3px solid #c8102e;
}

.navbar-logo {
    height: 78px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.navbar-brand {
    color: #c8102e !important;
    font-weight: bold;
    font-size: 22px;
}

.nav-link {
    color: #1a1a1a !important;
    font-weight: 600;
    padding: 8px 14px !important;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #c8102e !important;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.language-switcher span {
    color: #555;
    font-weight: 500;
    font-size: 13px;
}

.language-select-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 88px;
    height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 12px;
}

.language-select-btn:hover,
.language-select-btn:focus {
    border-color: #c8102e;
    box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}

.language-menu {
    min-width: 96px;
    padding: 6px;
}

.language-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 10px;
}

.language-menu .dropdown-item.active,
.language-menu .dropdown-item:active {
    background: #c8102e;
    color: #fff;
}

.flag-icon {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.whatsapp-link {
    color: #25D366 !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-link:hover {
    color: #128C7E !important;
    transform: scale(1.05);
}

.mobile-wa-link {
    color: #25D366 !important;
    font-size: 2rem;
    line-height: 1;
    margin-left: auto;
    margin-right: 12px;
}

@media (max-width: 991px) {
    .navbar .container {
        gap: 10px;
    }

    .navbar-logo {
        height: 64px !important;
        max-width: 150px !important;
    }

    .language-switcher {
        margin-right: 0;
        gap: 6px;
    }

    .language-switcher span {
        font-size: 14px;
    }

    .language-select-btn {
        min-width: 84px;
        height: 44px;
    }
}
