/* 
.navbar {
  display: flex;
  opacity: 75%;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 80px; 
  font-family: "ITC Blair W02 Bold";
  transition: opacity 0.9s ease; 
}


.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  text-decoration: none;
  line-height: 80px; 
}


.logo{
  font-family: 'Dancing Script', sans-serif;
  color: black;
  
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  height: 100%; 
}

.nav-links li a {
  font-family: 'BlairITCStdRegular', sans-serif;
  text-decoration: none;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  line-height: 80px;
}

.nav-links li a:hover {
  color: #3498db;
}


.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  margin: 5px;
  transition: all 0.3s ease;
}


@media screen and (max-width: 768px) {
  .navbar {
      opacity: 1; 
  }
}


@media screen and (max-width: 768px) {
  
  .nav-links {
    display: none;
    position: absolute;
    right: 0;
    height: 95vh;
    top: 60px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    
}
  .nav-links li {
      margin: 20px 0;
  }

  .burger {
      display: block;
  }

  .nav-active {
      display: flex;
  }

  .burger.toggle .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.toggle .line2 {
      opacity: 0;
  }

  .burger.toggle .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
  }
} */
