.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  .home-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    position: relative;
  }

  #background-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
  }
  

  .home-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 20px;
    z-index: 2;
    max-width: 90vw;
    box-sizing: border-box;
    
  }
  

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .nav-links a:hover{
    color: #d4af37;
  }
  
  .home-main{
    position: relative;
    flex: 1;
    overflow: hidden;
  }

  .nav-item {
    position: relative;
  }
  .dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    font-weight: normal;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
  }
  .dropdown-content {
    display: none;
    position: relative;
    top: 120%;
    left: 0px;
    background-color: transparent;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(0px);
    border: 0px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 0px 0px rgba(255, 255, 255, 0.1);
    min-width: 150px;
    z-index: 1000;
    
  }


    