/* General Navbar Styles */
.custom-navbar {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.7rem;
    font-family: 'Orbitron', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E63946;
}

/* Logo Styling */
.logo img {
    max-width: 120px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-dropdown {
    display: none;
    position: absolute;
    top: 85px;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 25px 0;
    text-align: center;
}

.mobile-dropdown ul {
    list-style: none;
    padding: 0;
}

.mobile-dropdown li {
    margin: 10px 0;
}

.mobile-dropdown a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-dropdown.active {
    display: block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .logo img {
        max-width: 90px;
    }
}







/* Fix overlapping navbar issue */
@media screen and (max-width: 768px) {
    .custom-navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.9);
        padding: 35px 0;
    }

    .header-title {
        margin-top: 100px; /* Push title down */
        text-align: center;
    }

    .main-content {
        padding-top: 140px; /* Ensure all content starts below the navbar */
    }
}


.custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
}



@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap');

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400; /* Adjust weight as needed */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E63946; /* Adjust hover color */
}
