/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #5a1f1f;
  color: #fff;
  font-family:"Bree Serif", serif;
  font-weight: 400;
  font-style: normal;;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: #f4b400; /* warm yellow that matches the button */
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: url("https://www.travelingwithmj.com/wp-content/uploads/2024/01/Depositphotos_322750078_S.jpg") no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  text-shadow: 2px 2px 4px #000000;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.btn {
  background: #f4b400;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
}

/* Sections */
section {
  padding: 3rem 2rem;
  text-align: center;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-card {
  background: #fff7f0;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  background: #5a1f1f;
  color: #fff;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #5a1f1f;
    position: absolute;
    top: 60px; right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
