@font-face {
    font-family: "Halibut Serif";
    src: url('/fonts/HalibutSerif-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body, h1 {
    font-family: "Halibut Serif", cursive;
}

li.menu-list {
    text-align: center;
}

menu-header {
    margin: 6px 0px;
    font-weight: bold;
}

img.home-gallery {
    width: 1000px;
    aspect-ratio: 1.3 /1;
    object-fit: cover;
}

b {
    font-weight: 900;
    color: #111;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h4 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h5 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h6 {
  font-size: clamp(1rem, 2.5vw, 1.75rem);
}

/* Navbar hover effects for desktop */
.nav-link-desktop a {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link-desktop a:hover {
  color: #991b1b;
  transform: translateY(-2px);
}

/* Mobile menu animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slideDown {
  animation: slideDown 0.3s ease-out;
}

/* Better mobile navbar spacing */
@media (max-width: 767px) {
  nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  #menu {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}