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

body {
  font-family: 'Georgia', serif;
  background-color: #0d0d0d;
  color: #f0e6d2;
  line-height: 1.6;
}

/* Header */
header {
  background: #000;
  color: #f0e6d2;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: #f0e6d2;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

nav ul li a:hover {
  opacity: 0.6;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('img/hero-bg.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f0e6d2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta {
  padding: 0.75rem 2rem;
  background-color: transparent;
  border: 1px solid #f0e6d2;
  color: #f0e6d2;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.cta:hover {
  background-color: #f0e6d2;
  color: #000;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  text-align: center;
  background-color: #111;
  border-top: 1px solid #222;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #f0e6d2;
}

.section p {
  max-width: 700px;
  margin: auto;
  color: #ddd;
  font-size: 1.1rem;
}

/* Menu List */
.menu-list {
  list-style: none;
  margin-top: 2rem;
}

.menu-list li {
  font-size: 1.2rem;
  margin: 0.75rem 0;
  color: #f0e6d2;
}

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

.gallery-grid img {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 20px 10px rgba(13, 13, 13, 0.95);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Reservation Form */
.reservation-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
  gap: 1rem;
  margin-top: 2rem;
}

.reservation-form input,
.reservation-form textarea {
  padding: 1rem;
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #f0e6d2;
  font-family: inherit;
  font-size: 1rem;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: #888;
}

.reservation-form button {
  padding: 1rem;
  background-color: transparent;
  color: #f0e6d2;
  border: 1px solid #f0e6d2;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.reservation-form button:hover {
  background-color: #f0e6d2;
  color: #000;
}

/* Footer */
footer {
  background-color: #000;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #222;
}
