/* الهيدر والدروب داون فوق المحتوى (خصوصاً على الهوم) */
.hero {
  position: relative;
  z-index: 100;
}

.navbar .dropdown {
  position: relative;
  display: inline-block;
}


  .navbar .dropbtn {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    color: #093443;
    padding: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .navbar .dropbtn-icon {
    font-size: 0.75em;
    transition: transform 0.25s ease;
    opacity: 0.9;
  }


  .navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    right: 0;
    border-radius: 8px;
  }


  .navbar .dropdown-content a {
    color: #0A3442;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }


  .navbar .dropdown-content a:hover {
    background-color: rgba(51, 165, 160, 1);
    color: white;
    list-style: none;
    text-decoration: none;
  }


  .navbar .dropdown:hover .dropdown-content {
    display: block;
  }

  .navbar .dropdown:hover .dropbtn-icon {
    transform: rotate(180deg);
  }

.navbar {
  gap: 12px;
}

.navbar .nav-links {
  flex: 1 1 auto;
  justify-content: center;
}

.navbar .auth-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar .auth-form {
  display: inline-flex;
  margin: 0;
}


