/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    background-color: #000;
    transition: all 0.3s ease;
    padding: 15px 30px;
}

.navbar.shrink {
    padding: 10px 20px;
    opacity: 0.95;
}

.logo-desktop {
    height: 40px;
    margin-left: 20px;
}

.logo-mobile {
    display: none;
}

.menu,
.social-lang {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #38bdf8;
}



.dropdown-menu {
    position: absolute;
    top: 100%;
    background-color: #222;
    padding: 10px;
    border-radius: 7px;
    display: sticky;
    flex-direction: column;
    margin-left: 10px;
    margin-top: 10px;
}

.dropdown-item {
    color: #fff;
    margin: 5px 0;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.dropdown-item:hover {
    color: #38bdf8;
}

.dropdown-toggle {
    cursor: pointer;
}

#neon-line {
    height: 3px;
    background-color: #38bdf8;
    opacity: 0;
    transition: opacity 0.8s;
    width: 100%;
}

.navbar.shrink #neon-line,
.navbar:hover #neon-line {
    opacity: 1;
}

/* Social Media and Language Selector */
.social-lang {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    margin-right: 20px;
    transition: color 0.3s;
}

.language-selector a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    margin-right: 20px;
    transition: color 0.3s;
}

.social-icons a:hover,
.language-selector a:hover {
    color: #38bdf8;
}

.language-selector {
    margin-left: 15px;
}

/* Mobile Styles */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
}

.hamburger-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    margin: 0;
    /* Remove any margin */
    padding: 0;
    /* Remove any padding */
}

.hamburger-icon:hover {
    width: 2.7rem;
    height: 2.7rem;
    transition: 0.4s;
}

#mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 5.5rem;
    /* Align closer to navbar */
    left: 0;
    right: 0;
    background-color: #222;
    padding: 15px;
    /* Reduced padding for compact layout */
    z-index: 1000;
    opacity: 0.95;
    transition: 0.3s ease;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    background-color: #222;
    border-radius: 5px;
}

.mobile-nav-item {
    color: #fff;
    text-decoration: none;
    padding: 8px;
    /* Reduced padding */
    font-weight: 400;
    margin: 0.5rem 0;
    /* Adjusted for tighter spacing */
}

.mobile-nav-item:hover {
    color: #38bdf8;
}

/* Responsive Design */
@media (max-width: 768px) {

    .menu,
    .social-lang {
        display: none;
    }

    .mobile-menu-button {
        display: inline-block;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        width: 8.5rem;
        /* Adjusted size for better fit */
        height: auto;
    }

    .logo-mobile:hover {
        width: 6.2rem;
        transition: 0.5s;
    }
}

/* Neon Line */
#neon-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #38bdf8;
    opacity: 0;
    transition: opacity 0.7s;
    width: 100%;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    background-color: #000;
    transition: all 0.3s ease;
    padding: 10px;
    /* Reduced padding for compact fit */
    overflow: hidden;
}

.navbar.shrink #neon-line {
    opacity: 0.6;
}

.mobile-dropdown-toggle {
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    font-weight: 400;
}