/* ===== LIGHT MODE ===== */
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-width: 280px;
  overflow-x: hidden;
  /* Light mode */
  background-color: #f4f4f4;
  color: #333;
  /* Dark mode - uncomment these lines */
  /* background-color: #121212;
  color: #e0e0e0; */

    list-style-type: disclosure-closed !important;
}

header {
  background-color: #8b0000;
  color: white;
  padding: 20px 5px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin: 10px 0 0;
  font-size: 1.1rem;
}

nav {
  background-color: #b22222;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

nav a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

section {
  padding: 40px 20px;
  max-width: 960px;
  margin: auto;
  /* Light mode */
  background-color: white;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Dark mode - uncomment these lines */
  /* background-color: #1a1a1a;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); */
}



.hero {
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3em;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  text-align: center;
  padding: 0 20px;
  /* Light mode */
  background-image: url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092");
  /* Dark mode - uncomment these lines */
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092");
  border-radius: 8px;
  margin-bottom: 20px; */
}

h2 {
  color: #8b0000;
  margin-bottom: 0;
  margin-top: 0;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #8b0000;
  color: white;
}

.mobile-break {
  display: none;
}

ul {
  list-style-type: disclosure-closed;
  /*list-style-type: none;*/
}

/*ul{
   list-style-type: disclosure-closed !important;
}*/

p {
  font-size: 0.7rem;
  line-height: 1.2;
 
}

#contact p {
  margin-top: 1rem;
}

#welcome p {
  margin-top: 1rem;
}

#welcome h2 {
  margin-top: 2rem;
}

/* Extra Large Screens */
@media screen and (min-width: 1600px) {
  section {
    max-width: 1400px;
    padding: 60px 40px;
  }
  
  .hero {
    height: 600px;
    font-size: 4em;
  }
  
  header h1 {
    font-size: 3.5rem;
  }
  
  header p {
    font-size: 1.5rem;
  }
  
  nav a {
    font-size: 1.2rem;
    margin: 0 30px;
  }
  
  ul.menu-list li {
    font-size: 1.2rem;
    padding: 20px;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  p {
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .menu-item-header strong {
    font-size: 1.4rem; /* Adjusted for Extra Large Screens */
  }
}

/* Large Screens */
@media screen and (min-width: 1200px) {
  section {
    max-width: 1140px;
    padding: 50px 30px;
  }
  
  .hero {
    height: 500px;
    font-size: 3.5em;
  }
  
  header h1 {
    font-size: 3rem;
  }
  
  header p {
    font-size: 1.3rem;
  }
  
  nav a {
    font-size: 1.1rem;
    margin: 0 25px;
  }
  
  ul.menu-list li {
    font-size: 1.1rem;
    padding: 15px;
  }
  
  p {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .menu-item-header strong {
    font-size: 1.3rem; /* Adjusted for Large Screens */
  }
}


/* Medium-Large Screens */
@media screen and (min-width: 1000px) and (max-width: 1199px) {
  section {
    max-width: 1000px;
    padding: 45px 25px;
  }

  .hero {
    height: 450px;
    font-size: 3.2em;
  }

  header h1 {
    font-size: 2.7rem;
  }

  header p {
    font-size: 1.2rem;
  }

  nav a {
    font-size: 1rem;
    margin: 0 20px;
  }

  ul.menu-list li {
    font-size: 1rem;
    padding: 13px;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .menu-item-header strong {
    font-size: 1.2rem; /* Balanced between tablet and large desktop */
  }
}

/* Tablet Styles */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .hero {
    height: 300px;
    font-size: 2.5em;
  }

  section {
    padding: 30px 15px;
    margin-left: 15px;
    margin-right: 15px;
  }

  nav a {
    margin: 0 10px;
  }

  ul.menu-list li {
    font-size: 1.05rem;
    padding: 12px;
  }
  
  p {
    font-size: 1rem;
  }

  .menu-item-header strong {
    font-size: 1.1rem; /* Adjusted for Tablet Screens */
  }
}

/* Mobile Styles */
@media screen and (max-width: 480px) {
  .mobile-break {
    display: inline;
  }
  
  header h1 {
    font-size: 1.4rem;
  }
  
  header p {
    font-size: 0.85rem;
  }
  
  .hero {
    height: 250px;
    font-size: 1.8em;
  }
  
  nav {
    flex-wrap: wrap;
    gap: 5px;
  }
  
  nav a {
    margin: 0 5px;
    font-size: 0.85rem;
  }
  
  section {
    padding: 20px 15px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  ul.menu-list li {
    margin: 10px 0;
    padding: 8px;
    font-size: 0.85rem;
  }
  
  .menu-item-header strong {
    font-size: 0.9rem; /* Adjusted for Mobile Screens */
  }
  p {
    font-size: 0.85rem;
  }
}

/* Extra Small Devices */
@media screen and (max-width: 321px) {
  .mobile-break {
    display: inline;
  }
  
  header h1 {
    font-size: 1.2rem;
  }
  
  header p {
    font-size: 0.75rem;
  }
  
  .hero {
    height: 200px;
    font-size: 1.4em;
  }
  
  nav {
    gap: 3px;
  }
  
  nav a {
    margin: 0 3px;
    font-size: 0.75rem;
    padding: 3px 6px;
  }
  
  section {
    padding: 15px 10px;
    margin-left: 8px;
    margin-right: 8px;
  }
  
  ul.menu-list li {
    margin: 8px 0;
    padding: 6px;
    font-size: 0.75rem;
  }
  
  .menu-item-header strong {
    font-size: 0.80rem; /* Adjusted for Extra Small Screens */
  }
  p {
    font-size: 0.75rem;
  }
}

/* Very Small Devices */
@media screen and (max-width: 280px) {
  .mobile-break {
    display: inline;
  }
  
  header h1 {
    font-size: 1rem;
  }
  
  header p {
    font-size: 0.7rem;
  }
  
  .hero {
    height: 180px;
    font-size: 1.2em;
  }
  
  nav {
    gap: 2px;
  }
  
  nav a {
    margin: 0 2px;
    font-size: 0.7rem;
    padding: 2px 4px;
  }
  
  section {
    padding: 12px 8px;
  }
  
  ul.menu-list li {
    margin: 6px 0;
    padding: 4px;
    font-size: 0.7rem;
  }
  
  .menu-item-header strong {
    font-size: 0.8rem; /* Adjusted for Very Small Screens */
  }
  p {
    font-size: 0.7rem;
  }
}

.menu-category h1 {
  color: #8b0000;
}

.menu-category h2 {
  color: #8b0000;
  margin-bottom: 15px;
  margin-top: 15px;
  border-bottom: 2px solid #b22222;
  border-top: 2px solid #b22222;
  padding-bottom: 5px;
  text-align: center; /* Center align the main titles */
}

.menu-list li strong {
  font-size: 0.8rem;
}

.price {
  font-weight: bold;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.menu-item-header strong {
  font-size: 1.2rem; /* Adjusted base font size */
} 