body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: #f5f5f5;
}

.hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.65);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay h1 {
  font-size: 2.8rem;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

.menu-container h3 {
  margin-top: 2rem;
  color: #ffb300;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #222;
}

form {
  display: grid;
  gap: 0.8rem;
  max-width: 400px;
}

input, textarea {
  padding: 0.6rem;
  border-radius: 5px;
  border: none;
}

button {
  background: #ff9800;
  color: #000;
  padding: 0.7rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #777;
}

#info {
  margin-top: 3rem;
  padding: 2rem;
  background: #161616;
  border-radius: 8px;
}

.opening-times {
  list-style: none;
  padding: 0;
}

.opening-times li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #2a2a2a;
}

.phone a {
  font-size: 1.5rem;
  color: #ff9800;
  text-decoration: none;
}

.phone a:hover {
  text-decoration: underline;
}

#info a {
  color: #4fc3f7;
}

/* Layout */
main {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
}

.card {
  background: #161616;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

h2 {
  margin-top: 0;
  color: #ffb300;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.7rem 1rem;
  background: #ff9800;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}

.button:hover {
  opacity: 0.85;
}

/* Phone */
.phone a {
  font-size: 1.3rem;
  color: #ff9800;
  text-decoration: none;
}

/* Opening times */
.opening-times {
  list-style: none;
  padding: 0;
}

.opening-times li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #2a2a2a;
  padding: 0.4rem 0;
}

/* Menu */
.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed #333;
}

.menu-list .price {
  font-weight: bold;
  color: #ff9800;
}

/* Mobile polish */
@media (max-width: 600px) {
  .overlay h1 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}

