/* Navigation Bar Styles */
.navbar {
    position: fixed;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    transition: all ease-in-out 0.2s;
    z-index: 1000;
    font-size: 12pt;
    top: 0px;
}

.nav-links {
    display: flex;
    list-style: none;
    height: 100%;
}

.nav-links li {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 0.2s;
}

.nav-links li a {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: rgb(21, 63, 50);
    transition: all ease-in-out 0.2s;
}

.nav-links li:hover {
    color: white;
    background-color: rgb(21, 63, 50);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.nav-links li:hover a {
    color: white;
}

.navbar.scrolled {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.674);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all ease-in-out 0.2s;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.25);
}

.navbar.scrolled li a {
    height: 80px;
}

.logo, .nav-contact-container {
    width: 20%;
}

.nav-contact-container {
    text-align: right;
}

.nav-contact-container a {
    text-decoration: underline;
    text-decoration-color: goldenrod;
    font-weight: 500;
    color: rgb(21, 63, 50);
    transition: all ease-in-out 0.2s;
}

.nav-contact-container a:hover {
    color: goldenrod;
}

#navbar-logo {
    width: 100px;
    transition: all ease-in-out 0.2s;
}

.navbar.scrolled #navbar-logo {
    width: 80px;
}

.navbar.scrolled .nav-links li a {
    color: rgb(21, 63, 50);
}

.navbar.scrolled .nav-links li a:hover {
    color: white;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon div {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(21, 63, 50);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    z-index: 900;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: rgb(21, 63, 50);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: rgb(21, 63, 50);
    font-size: 24px;
}

/* Mobile View */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-contact-container {
        display: none;
    }

    .menu-icon {
        display: flex;
    }

    .navbar.scrolled .menu-icon div {
        background-color: rgb(21, 63, 50);
    }

    .menu-icon.change .bar1 {
        transform: rotate(-45deg) translate(-14px, 6px);
    }

    .menu-icon.change .bar2 {
        opacity: 0;
    }

    .menu-icon.change .bar3 {
        transform: rotate(45deg) translate(-13px, -6px);
    }

    .mobile-menu.active {
        left: 0;
    }
}  