/* navbar.css */
@font-face {
  font-family: 'TimesTenProRoman';
  src: url('./fonts/TimesTenPro-Roman.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Souvenir';
  src: url('../fonts/Souvenir.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background: #000000;
}

.brand {
  font-family: 'Souvenir', serif; 
  background: linear-gradient(to bottom, #eea852, #c9a063, #c5bcaf, #bdb9b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
  text-align: center;
}
.brand img {
  height: 50px;
  width: auto;
  vertical-align: middle; /* Aligns the image with the text */
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0.7rem;
}

.logo {
  height: 47px;
  width: auto;
}
.img-none img{
  display: none;
}
.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  font-family: 'Adobe Jenson Pro Bold Subhead';
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  transition: 0.4s ease;
  border-radius: 2px;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  color: #ede8f5;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #acacac;
}

/* Mobile/Small Screen Responsiveness */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }


  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #111;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
  }

  .nav-links.show {
    display: flex;
  }
  .img-none img{
    display: block;
  }
  .brand img {
    display: none;
  }
  .nav-links li a {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .brand {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }
}

@media screen and (max-width: 576px) {
  .navbar {
    padding: 0.6rem 0.5rem;
  }

  .logo {
    height: 40px;
  }

  .brand {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }
}

