/* Menu Bar Styles */
.menu-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 2rem;
    gap: 6rem;
    background-color: white;
    color: white;
    font-family: Arial, sans-serif;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: #8dc442;
}

.nav-links a.active {
    color: #8dc442;
    font-weight: bold;
}

/* Remove any special characters or bullets */
.nav-links a::before,
.nav-links a::after {
    content: none;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown content hidden by default */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
  }
  
/* Links inside dropdown */
.dropdown-content a {
    color: #333;
    padding: 0.75rem 1rem;
    display: block;
    text-align: left;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style the main drop button */
.dropbtn {
    position: relative;
}

/* Optional: Highlight active dropdown item */
.dropdown-content a.active {
    background-color: #8dc442;
    color: white;
}


/* Add this to the bottom of menubar.css */

/* Hide the hamburger by default on large screens */
.hamburger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* This is the media query for mobile devices (screens 768px or less) */
@media (max-width: 768px) {
    
    /* Hide the full navigation links */
    .navbar .nav-links {
        display: none;
    }
    
    /* Show the hamburger menu icon */
    .hamburger-menu {
        display: block;
    }
}