 /* Brand font */
 .brand {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  font-size: 2.0rem;
  letter-spacing: 0.15em;
}

/* Mobile brand font */
@media (max-width: 768px) {
  .brand {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

/* Michroma font for nav menu with smaller font & letter spacing */
nav a {
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* Top row links: About/Contact */
.top-links a {
  font-family: 'Michroma', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero background styling */
.hero-bg {
  background-image: url('bgglob.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Mobile menu toggle */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

/* Hamburger menu icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .desktop-nav {
    display: none;
  }
}

/* Montserrat font for food content only */
.food-content {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: rgb(0, 0, 0);
}

.food-content h1,
.food-content h2,
.food-content h3,
.food-content h4,
.food-content h5,
.food-content h6,
.food-content p,
.food-content div,
.food-content ul,
.food-content li,
.food-content span {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: rgb(0, 0, 0);
}
.imptxt {
  letter-spacing: 1.2px;
  margin-bottom: 34px;
  margin-top: 34px;
  line-height: 1.5;
  background-color: transparent;
  text-align: left;
  color: #88191A !important;
  display: block;
  font-size: 1.2rem;
}

.food-content img {
  display: block;
  margin: 30px auto;
  border: 8px solid white;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.15);
}

.food-content .title {
  font-size: 1.25rem !important;
  letter-spacing: 1px !important;
  line-height: 1.2 !important;
  color: #932425 !important;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin: 20px 20px 20px 0px;
}
.title-font {
  font-size: 2rem !important;
  letter-spacing: 1px !important;
  line-height: 1.2 !important;
   color: #932425 !important;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin: 20px auto;
}
.left-content {
  font-size: 22px;
  letter-spacing: 0.8px;
  color: #932425 !important;
  margin: 20px auto;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}