.site-header {
    background-color: var(--neutral-dark);
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0px 10px;
}

.logo-img {
    max-height: 50px;
    height: auto;
    display: flex;
    align-items: center;
}

.hamburger-menu {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.hamburger-menu .material-symbols-outlined {
    font-size: 38px;
    color: var(--neutral-light);
}


.main-nav {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    background-color: var(--medium-dark);
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 0;
    z-index: 9;
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}


.main-nav.visible {
    opacity: 1;
    max-height: 5000px;
    padding: 20px 0;
}


.main-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.main-nav ul li {
    margin: 10px 0;
}

.main-nav ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--neutral-light);  
}

/* Hover effect for links */
.main-nav ul li a:hover {
    color: var(--gold);  
}


@media (min-width: 1024px) {
    .container {
        padding: 0;
    }

    .site-header {
        background-color: transparent;
    }

    .hamburger-menu {
        display: none;
    }

    .main-nav {
        display: block;  /* Ensure the nav is visible */
        position: static;  /* Remove absolute positioning */
        width: auto;  /* Let the nav size automatically */
        padding: 0;  /* Remove padding */
        background-color: transparent;  /* Match the header's background */
        opacity: 1;  /* Reset opacity to be fully visible */
        max-height: none;  /* Remove height restrictions */
    }

    .main-nav ul {
        display: flex;  /* Flexbox to arrange links horizontally */
        justify-content: flex-end;  /* Align links to the right of the header */
        gap: 20px;  /* Add space between the links */
        list-style: none;  /* Remove bullet points */
        margin: 0;
        padding: 0;
    }

    .main-nav ul li {
        display: inline-block;  /* Ensure the links are inline */
        transition: background-color 0.2s ease;

    }
    .main-nav ul li:hover {
        background-color: rgba(255,255,255,0.1);
        
    }

    .main-nav ul li a {
        text-decoration: none;
        font-size: 1.1rem;
        color: var(--neutral-light);  /* Adjust color to fit your design */
        padding: 10px 15px;  /* Add some padding for clickable area */
    }

    /* Optional: Hover effect for links */
    .main-nav ul li a:hover {
        color: var(--gold);  /* Change color on hover */
    }
}
