:root {
    --primary-blue: #4a6baf;      
    --darker-blue: #3a5796;
}
/* ===== HEADER ===== */
header {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    overflow: hidden;
    color: white;
}

/* ===== NAVBAR ===== */
#header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color:var(--darker-blue)
}

#brand-cont {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.8rem;
    text-decoration: none;
}
 
#logo-brand {
    width: 100px;
    position: absolute;
    left: 0;
    height: auto;
}

#name-brand {
    font-size: 1.3rem;
    font-weight: bold;
    color: whitesmoke;
    margin-left: 5rem;
}

#menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

#menu ul li, #menu ul li a {
    cursor: pointer;
    transition: color 0.3s ease;
}

#menu ul li a{
    text-decoration: none;
    color: white;
}

#menu ul li:hover{
    color: var(--darker-blue);
}

/* ===== BURGER BUTTON ===== */
#burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

#burger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
#mobile-menu {
    display: none;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#mobile-menu ul {
    list-style: none;
    padding: 1rem;
}

#mobile-menu ul li  {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: var(--darker-blue);
    cursor: pointer;
}
#mobile-menu ul li a{
  text-decoration: none;
}
#mobile-menu ul li a:not(#get_license_btn) {
  text-decoration: none;
  color: var(--primary-blue);
}
#mobile-menu ul li a:hover {
    color: var(--darker-blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    #burger {
          display: flex;
      }
    #menu ul {
        display: none; 
    }
}
@media (max-width: 480px) {
    #logo-brand {
        width: 50px;
    }
    #name-brand {
        font-size: 1rem;
        margin-left: 2.5rem;
    }
}