@font-face {
  font-family: "Caslon Antique";
  src: url("../Fonts/CaslonAntique-WJV.ttf") format("truetype");
}

/* navbar.css */
.nav-wrapper {
  top: 0;
  z-index: 1000;
  background: white;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  background: rgba(255, 255, 255, 1);
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
  font-family: "Syne Mono", monospace;
  /* font-family: "Bodoni Moda", serif; */
  /* font-family: "Baskerville", "Baskerville Old Face", serif; */
  /* font-family: "Caslon Antique", serif; */


}

.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  font-size: 20px;
  position: relative;
  padding: 20px 0;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center h1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.dropdown-push {
  height: 66.67px;
  transition: height 1s ease;
}

.nav-wrapper:has(.dropdown:hover) .dropdown-push {
  height: 160px; /* match dropdown height */
}

.logo {
  height: 50px;
  object-fit: contain;
}

