
 .header {

   position: fixed;
   z-index:999;
   /* position: sticky; */
   height: auto;
   width: 100%;
   top:0;

} 
.nav-links a{

    color: rgb(255, 255, 255)


}
.nav-content {
    display: flex;
    align-items: center;
    gap: 30px;
}


.top-nav {
    display: flex; 
    justify-content: space-evenly; /*Pushes logo and links to opposite ends */
    align-items: center; /* Vertically centers everything in the nav bar */
    
    list-style-type: none; /* A softer shadow */
    /* border-radius: 20px; */
    border-top-right-radius: 0;
    /* background-color: white;  */
    background-color: rgba(0, 0, 0, 0.85); /*background blur*/
    backdrop-filter: blur(10px);
    width: 100%;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2);
    height:70px; /*change height of header */
    
}


.logo img {
    width: 275px; /* Adjust as needed */
    
}


.nav-links {
    display: flex; /* Makes the list items (li) line up horizontally */
    list-style-type: none; /* Removes the bullet points */
    /* align-items: center;
    margin-left: auto;
    
    /* margin: 0;
    padding: 0; 
    gap:24; */
    margin-right: 40px;
    
    
    /* margin-left: auto;  
    margin-right: auto; */
    

    
}


.nav-links li {
    margin-left: 30px; /* Adds space between the links */
}

header .nav-links a { /* change header links attributes*/
    font-size: 20px;
    font-weight: 700;
    padding: 30px;
}


/* Styling for the links themselves */
.nav-links a {
    text-decoration: none;
    /* color: #333; */
    font-size: 1.1rem;
    font-weight: 500;
}

.theme-toggle{

    background:none;
    /* padding: 0;
    margin: 0;
    border:0; */
    width: 100px

}
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #3a507a; /* Sunexcore blue-ish color */
    transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 1300px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .logo img {
    max-width: 100%; /* Adjust as needed */
    
    }

    .nav-content {
        position: fixed;
        left: -100%; /* Hide off-screen */
        top: 0;
        flex-direction: column;
        background-color: rgb(0, 0, 0);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.3s;
        z-index: 1000;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }

    /* When the 'active' class is added via JS */
    .nav-content.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .theme-toggle{
        padding-left: 35px;
    }
}