/* azuri.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background: url('images/16256-172456-f82363319_4K.avif') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* Restaurant Layout */
.restaurant-layout.single {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 60px;
  min-height: 100vh;
}

.menu-box {
  background-color: rgba(64, 179, 197, 0.84); /* Blue with 84% opacity */
  color: white;
  padding: 40px; /* Increased padding */
  border-radius: 8px;
  width: 480px; /* Increased width */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.restaurant-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px dashed white;
  padding: 5px 0;
}

.menu-links li a span {
  font-size: 20px;
}

.menu-links li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-box {
    width: 95%;
    padding: 30px; /* Adjusted padding */
  }
}

