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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f8f5f0;
}

/* ========== General Elements ========== */
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  padding: 80px 10%;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #7a2e1f;
}

.section-heading p {
  color: #666;
  font-size: 1rem;
}

/* ========== Header / Nav ========== */
header {
  background-color: #1f1f1f;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

.logo h1 {
  font-size: 1.8rem;
  color: #f4c06b;
}

nav ul {
  display: flex;
  gap: 24px;
}

nav a {
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f4c06b;
}

/* ========== Hero ========== */
.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/outside.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content {
  max-width: 650px;
}

.hero-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f2f2f2;
}

.hero-content a {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero-content a:first-of-type {
  background-color: #c75b39;
  color: white;
}

.hero-content a:first-of-type:hover {
  background-color: #a9492c;
}

.hero-content a:last-of-type {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.hero-content a:last-of-type:hover {
  background-color: white;
  color: #222;
}

/* ========== Intro ========== */
.intro {
  background-color: #fff;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #7a2e1f;
}

.intro-text p {
  color: #555;
  font-size: 1.05rem;
}

/* ========== Menu ========== */
.menu {
  background-color: #fdfaf6;
}

.menu-category {
  max-width: 900px;
  margin: 0 auto 40px;
}

.menu-category h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #2f2f2f;
  border-bottom: 2px solid #e5d3bb;
  padding-bottom: 10px;
}

.menu-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.menu-item h4,
.menu-item h3 {
  margin-bottom: 8px;
  color: #7a2e1f;
}

.menu-item p {
  color: #666;
  margin-bottom: 10px;
}

.menu-item span {
  font-weight: bold;
  color: #c75b39;
  font-size: 1.05rem;
}

/* ========== About ========== */
.about {
  background-color: #fff;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 18px;
  color: #555;
  font-size: 1.05rem;
}

/* ========== Gallery ========== */
.gallery {
  background-color: #fdfaf6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid figure {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px;
  text-align: center;
  color: #555;
  font-weight: bold;
}

/* ========== Reviews ========== */
.reviews {
  background-color: #fff;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background-color: #f9f4ee;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.review-card p {
  color: #444;
  margin-bottom: 15px;
  font-style: italic;
}

.review-card h4 {
  color: #7a2e1f;
}

/* ========== Reservation Form ========== */
.reservation {
  background-color: #fdfaf6;
}

form {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

form div {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

button {
  background-color: #c75b39;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #a9492c;
}

/* ========== Hours ========== */
.hours {
  background-color: #fff;
  text-align: center;
}

.hours ul {
  max-width: 500px;
  margin: 0 auto;
}

.hours li {
  padding: 12px 0;
  border-bottom: 1px solid #e6e6e6;
  color: #555;
}

/* ========== Location / Contact ========== */
.location {
  background-color: #fdfaf6;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.contact-info {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.contact-info p {
  margin-bottom: 14px;
  color: #555;
}

.map iframe {
  width: 100%;
  border-radius: 10px;
  min-height: 350px;
}

/* ========== Footer ========== */
footer {
  background-color: #1f1f1f;
  color: white;
  text-align: center;
  padding: 30px 10%;
}

.footer-content h3 {
  color: #f4c06b;
  margin-bottom: 10px;
}

.footer-content p {
  color: #ddd;
  margin-bottom: 8px;
}

/* ========== Responsive Design ========== */
@media (max-width: 992px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .hero-content h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 6%;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  form {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 12px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .hero-content h2 {
    font-size: 1.7rem;
  }

  .hero-content a {
    display: block;
    width: fit-content;
    margin-right: 0;
  }
}