.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.25);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 120px;
    object-fit: contain;
    position: absolute;
    top: 10px;
}

.nav-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    padding-left: 105px;
}

.nav-links-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: large;
}

.nav-link:hover {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.65);
    background: rgba(0, 128, 128, 0.45);
}

.nav-link-active {
    background: linear-gradient(135deg, #008080 0%, #005c5c 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}


/* PHONE SPECIFIC CLASSES */

.nav-container-phone{
    display: none;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 45px;
}

.nav-overlay-phone{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    padding: 20px;
    background-color:  rgba(0,0,0,0.85);
}

.nav-overlay-phone .nav-logo{
    width: 60%;
    margin: 50px auto 30px auto;
    height: 250px;
    object-fit: contain;
    position: relative;
}

.nav-links-list-phone {
    display: block;
    padding: 30px;
    font-size: 1.5rem;
}

.nav-links-list-phone .nav-link{
    display: block;
    font-size: 2rem;
    margin: 10px auto;
    text-align: center;
    justify-content: center;
    width: 100%;
}


/* MOBILE FRIENDLY UI */
@media (max-width: 768px) {
    .nav-container{
        display: none;
    }
    .nav-container-phone{
        display: flex;
        height: 0px;
        padding: 15px 0px;
    }
}