/* Global Reset */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, #000000, #b71c1c); /* black & red theme */
  line-height: 1.6;
}

/* Navbar */
nav {
  background: #d32f2f;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 10;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.3s;
}
nav a:hover {
  color: #ffcc80;
}

/* Hero sections (full-screen images) */
.hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* Content sections */
.section {
  width: 90%;
  max-width: 850px;
  margin: 30px auto;
  padding: 25px;
  background: rgba(20,20,20,0.95);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

/* Section headers with images */
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.section-header img {
  width: 250px;              /* menu images resized */
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.section-header h2 {
  color: #ff4444;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin: 0;
}

/* Contact page icons */
.contact-icon {
  width: 120px;              /* smaller icon size */
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0px 0px 6px rgba(0,0,0,0.6));
}

/* Menu list */
ul { list-style: none; padding: 0; }
li {
  padding: 10px 0;
  border-bottom: 1px dashed #555;
  display: flex;
  justify-content: space-between;
  color: #eee;
}
li::before {
  content: "✔️";
  margin-right: 10px;
}
.price {
  font-weight: bold;
  color: #ffcc80;
}

/* Highlight (used for soups) */
.highlight {
  background: #fff8e1;
  color: #000;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
  font-weight: bold;
}

/* Contact and Footer */
#contact {
  text-align: center;
  padding: 40px;
  background: rgba(0,0,0,0.9);
  color: #fff;
  margin-top: 40px;
}
#contact h2 {
  color: #ffcc80;
}
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
}
