* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }

  :root {
    --gold: #D4AF37;
    --black: #1B1B1B;
  }

  body {
    padding-top: 80px;
    background-color: white;
  }

  header {
    background-color: var(--black);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    transition: box-shadow 0.3s ease; /* 👈 This adds the smooth transition */
  }

  header.scrolled {
    box-shadow: 0 3px 8px rgba(192, 192, 192, 0.4); /* AA for some transparency */
  }

  li {
    list-style: none;
  }

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

  .navbar {
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-logo a {
    display: flex;
    align-items: center;
  }

  .logo {
    height: 75px;
    width: auto;
    border-radius: 50%;
    transition: 0.30s;
  }

  .logo-link {
    border-radius: 50%;
  }

  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-right: 3%;
  }

  .nav-link {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.3s ease;
}

  .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
  }

  .brhs {
    font-size: 24px;
    font-weight: 600;
    color: white;
    user-select: none;
    cursor: default;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    padding: 0.4rem 0;
  }

  .brhs::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
  }

  .logo-link:hover ~ .brhs {
    color: var(--gold);
  }

  .logo-link:hover ~ .brhs::after {
    width: 100%;
  }


  .nav-link:hover {
    color: var(--gold);
  }

  .nav-link:hover::after {
    width: 100%;
  }


  .hamburger {
    display: none;
    cursor: pointer;
  }

  .bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
    border-radius: 1.5px;
  }

  @media (max-width: 1000px) {
    .hamburger {
      display: block;
    }

    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
      position: fixed;
      right: -100%;
      top: 80px;
      gap: 0;
      flex-direction: column;
      background-color: var(--black);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      padding: 0;
    }

    .nav-item {
      margin: 16px 0;
    }

    .nav-menu.active {
      right: 0;
    }

    .navbar {
      padding-left: 10px;
    }
  }