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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header Styles */
.bar-top {
    background-color: var(--navColor);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.bar-top-content {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; /* Add padding to the bar content */
}

.bar-bottom {
    background-color: var(--barColor);
    color: var(--barText);
    padding: 10px 0; /* Add padding top and bottom to increase spacing */
}

.bar-bottom-content {
    text-align: center;
    font-family: 'Montserrat', cursive;
    font-size: 1rem;
    height: 30px;
    line-height: 30px; /* Ensure text is vertically centered */
}

.icon {
    display: none; /* Hide the burger menu by default */
    color: white; /* Set the color of the burger menu icon to white */
    font-size: 24px; /* Increase the size of the burger menu icon */
}

.logo {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    color: var(--navText);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 20px; /* Adjust the gap between navigation items */
    margin-right: 20px; /* Add margin to the right side of the navigation */
}

.nav-list {
    display: flex;
    gap: 20px; /* Adjust the gap between navigation items */
}

.nav-item {
    /* Styles for nav items */
}

.nav-link {
    color: var(--navText);
    transition: all 0.2s;
}

.nav-link:hover {
    background-color: var(--navHoverColor);
    color: var(--navHoverText);
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .icon {
        display: block; /* Show the burger menu on small screens */
    }

    .nav-list {
        display: none; /* Hide the nav list by default on small screens */
        position: absolute;
        top: 100%; /* Position the dropdown below the bar-top */
        left: 0;
        width: 100%;
        background-color: var(--navColor); /* Adjust background color */
        padding: 10px; /* Add padding for better spacing */
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Optional: Add shadow for dropdown */
        z-index: 1000; /* Ensure the dropdown is above other content */
    }

    .nav-list.responsive {
        display: flex;
        flex-direction: column;
    }

    .nav-item {
        text-align: center; /* Center align items in the dropdown */
    }
}
