@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lora:wght@400;500;600&family=Crimson+Text:wght@400;600&family=Cormorant+Garamond:wght@300;400;500;600&family=EB+Garamond:wght@400;500;600&display=swap");
* {
  margin: 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.navbar {
  background-color: black;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.navbar-brand {
  flex: 1;
  font-size: 1.5rem;
  font-weight: bold;
  color: wheat;
  letter-spacing: 1px;
  text-decoration: none;
}
.navbar-menu {
  display: flex;
  align-items: center;
}
.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5rem;
}
.nav-item {
  position: relative;
}
.nav-link {
  color: #fffdd0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(78, 205, 196, 0.2);
  color: #4ecdc4;
  transform: translateY(-2px);
}

.nav-link:hover::before {
  left: 100%;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 30px;
  height: 30px;
  justify-content: space-around;
}
.navbar-toggle-icon {
  display: block;
  height: 3px;
  width: 100%;
  background: #fffdd0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Mobile Styles */
@media (max-width: 950px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(45, 49, 66, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 2000;
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    align-items: center;
    width: 100%;
  }

  .nav-item {
    width: 90%;
    max-width: 300px;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 10px;
    margin: 0.5rem 0;
  }

  /* Hamburger Animation */
  .navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Tablet Styles */
@media (max-width: 1200px) and (min-width: 951px) {
  .navbar-nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Large Mobile Styles */
@media (max-width: 480px) {
  .navbar-container {
    height: 60px;
    padding: 0 0.5rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.8rem;
  }
}
