      
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}


.site-header {
    background-color: #000000;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}


.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    display: none;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 10;
}


.navbar {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f1f1f1;
}


@media (max-width: 768px) {
    .site-header {
        flex-direction: column; 
        align-items: flex-start; 
        padding: 1rem; 
    }

    .menu-toggle {
        display: block; /* Show the hamburger menu */
    }

    .navbar {
        width: 100%; /* Make the navbar take full width */
        display: flex;
        justify-content: flex-end;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
        text-align: left;
        background-color: #000000;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex; /* Show the menu when active */
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        width: 100%; /* Full width links on mobile */
        text-align: left;
    }
}

/* For Medium to Large Screens (Laptops/Desktops) */
@media (min-width: 769px) {
    .site-header {
        flex-direction: row; /* Keep the logo and menu on the same row */
    }

    .nav-links {
        display: flex; /* Make the nav links appear horizontally */
        gap: 1.5rem;
    }

    .menu-toggle {
        display: none; /* Hide the hamburger on large screens */
    }
}
