﻿/* --- NAVBAR START --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    padding: 45px;
    z-index: 8;
    transition: all .3s ease;
}

    .navbar.scrolled {
        backdrop-filter: blur(20px);
        background: rgba(20, 30, 40, 0.2);
        height: 75px;
    }

.logo img {
    width: 50px;
    font-weight: bold;
    margin-right: 85px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    position: relative;
    margin-right: 85px;
}

    .nav-links li {
        position: relative;
        cursor: pointer;
    }

    .nav-links a {
        text-decoration: none;
        color: white;
        transition: all 0.2s ease-in-out
    }

        .nav-links a:hover {
            color: var(--themeColorHover);
        }

.services {
    padding-bottom: 10px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
    border-radius: 8px;
}

    .dropdown a {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.1s ease-in-out;
    }

        .dropdown a:hover {
            color: var(--themeColorHover);
        }

.social {
    display: flex;
    gap: 25px;
    border: 2px solid var(--white);
    border-radius: 20px;
    padding: 15px;
}

    .social a {
        color: white;
        text-decoration: none;
        transition: all 0.2s ease-in-out
    }

        .social a:hover {
            color: var(--themeColorHover);
        }

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000d;
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    gap: 30px;
    overflow-y: auto;
    z-index: 7;
}

    .mobile-menu a {
        font-size: 22px;
        text-decoration: none;
        color: white;
        opacity: 0;
    }

/* Responsive */
@media(max-width:900px) {

    .nav-links,
    .social {
        display: none;
    }

    .hamburger {
        display: block;
        color: var(--themeColorHover);
    }
}

/* --- NAVBAR END --- */
