/* Navbar Base Styles */
.navbar {
    height: 80px;
    background-color: #12ad2b;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 40px;
    right: 20px;
    z-index: 1000;
    border-radius: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Logo Section */
  .navbar .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .navbar .logo a {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-left: 12px;
    text-decoration: none;
  }
  
  /* Menu Section */
  .menu {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .menu-links {
    display: flex;
    gap: 24px;
    border-right: 1px solid #fff;
    padding-inline: 24px;
  }
  
  .menu-links a {
    font-weight: 500;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
  }
  
  .menu-links a:hover {
    color: green;
    background-color: white;
  }
  
  /* Log In Button */
  .log-in {
    font-weight: 500;
    padding: 12px 22px;
    background-color: transparent;
    color: white;
    border-radius: 10px;
    border: 2px solid #fcfcfc;
    transition: 0.2s;
    cursor: pointer;
  }
  
  .log-in:hover {
    background-color: whitesmoke;
    color: orange;
  }
  
  /* Menu Toggle Icon (Mobile) */
  .menu-btn {
    font-size: 32px;
    color: white;
    display: none;
    cursor: pointer;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: hsl(0, 0%, 10%);
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
  }
  
  .dropdown-content a {
    color: #999999;
    padding: 12px 16px;
    display: block;
    font-weight: 500;
    text-decoration: none;
  }
  
  .dropdown-content a:hover {
    color: black;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .navbar {
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      height: 60px;
      width: auto;
      padding-top: 0%;
      padding-bottom: 0%;
      padding-right: 20px ;
      padding-left: 10px;
    }
  
    .logo {
      flex-shrink: 1;
      display: flex;
      align-items: center;
    }
  
    .navbar .logo a {
      font-size: 1.2rem;
    }
  
    .menu {
      display: flex;
      flex-direction: column;
      background-color: #12ad2b;
      position: absolute;
      top: 90px;
      left: 0;
      width: 100%;
      padding: 10px;
    }
  
    .menu.show {
      display: flex;
      margin-left: 28px;
      /* background-color: rgba(211, 211, 211, 0.8); */
      background-color: #333333;
      border-radius: 8px;
    }
    .menu.show :hover{
      color: #12ad2b;
      pointer-events: #12ad2b;
    }
  
    .menu-links {
      flex-direction: column;
      border: none;
    }
  
    .log-in {
      margin-top: 10px;
      width: 100%;
      padding: 8px;
      text-align: center;
      border-radius: 6px;
    }
  
    .menu-btn {
      display: block;
      flex-shrink: 0;
    }
  }
  
  
  @media (max-width: 53rem) {
    .menu {
      display: none;
      flex-direction: column;
      background-color: #12ad2b;
      position: absolute;
      top: 90px;
      left: 0;
      width: 80%;
      padding: 10px;
    }
  
    .menu.show {
      display: flex;
    }
  
    .menu-links {
      flex-direction: column;
      border: none;
    }
  
    .log-in {
      margin-top: 10px;
      width: 100%;
    }
  
    .menu-btn {
      display: block;
    }
  }
  