header {
    background: rgba(30, 30, 30, 0.95); 
    color: var(--white);
    padding: 1rem 0; 
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px; 
    white-space: nowrap;
    font-size: 1.8rem; 
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
    background: rgba(30, 30, 30, 0.93); 
    padding: 5px 10px;
}

.logo span {
    color: var(--primary-orange); 
}


nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-orange);
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--white);
}

nav ul li a:hover::after {
    width: 100%;
}




.lang-menu {
    position: relative;
    display: inline-block;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: #1a1a1a; 
    min-width: 120px;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    border: 1px solid #333;
}

.lang-menu:hover .dropdown {
    display: block;
}

.dropdown li a {
    padding: 8px 15px;
    display: block;
    color: white;
    text-decoration: none;
}

.dropdown li a:hover {
    background-color: #333;
}

.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        justify-content: center;
    }

    .logo::before {
        width: 80px; 
        height: 80px;
    }
}