body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #f5efe6;
  color: #5a3b1c;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #efe6d8;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  background-color: #6b3f1d;
  color: white;
  border-radius: 20px;
  transition: 0.3s;
}

.navbar nav a:hover {
  background-color: #5a3317;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: #6b3f1d;
  color: white;
  padding: 40px;
}

.hero-text {
  max-width: 400px;
  text-align: center;
}

.hero-text h1 {
  font-size: 48px;
  font-style: italic;
}

.hero-img {
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: 300px;
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

.title {
  text-align: center;
  padding: 40px 0;
}

.title h1 {
  font-size: 48px;
  margin: 0;
  font-style: italic;
}

.title h2 {
  letter-spacing: 5px;
  margin: 0;
}

/* PHOTO STRIP */
.photo-strip {
  width: 100%;
  display: flex;
}

.photo-strip img {
  width: 20%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* MENU */
.menu {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px;
}

.menu-column {
  width: 500px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

h3 {
  font-size: 28px;
  font-style: italic;
  margin-top: 30px;
}

.desc {
  margin: 10px 0;
}

.about-visit-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.about {
  flex: 1.2;
  text-align: left;
}

.about p {
  max-width: 500px;
  line-height: 1.8;
}

.visit {
  flex: 0.8;
  text-align: center;
}

.hours-section {
  background-color: #f5efe6;
  color: #5a3b1e;
  text-align: center;
  padding: 60px 20px;
}

.hours-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 25px;
  color: #7a4a25;
}

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

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e8dccb;
}

.hours-row:last-child {
  border-bottom: none;
}

.contact-card {
  max-width: 400px;
  margin: 20px auto 0 auto;
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  color: #5c3a21;
  line-height: 1.6;
}

.contact-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* FOOTER */
.site-footer {
  background-color: #7a4a25;
  color: #f5efe6;
  padding: 40px 20px;
  text-align: center;
}

.footer-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-content p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: #f5efe6;
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .about-visit-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about,
  .visit {
    flex: 1;
    text-align: center;
  }

  .about p {
    margin: 0 auto;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PHOTO STRIP */
.photo-strip {
  display: flex;
  gap: 10px;
}

/* MENU */
.menu {
  display: flex;
  gap: 40px;
}

/* ABOUT WRAPPER */
.about-visit-wrapper {
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {

  /* NAVBAR STACK */
  .navbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 5px 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-img img {
    width: 80%;
  }

  /* TITLE TEXT */
  .title h1 {
    font-size: 32px;
  }

  .title h2 {
    font-size: 20px;
  }

  .photo-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .photo-strip img {
    width: 45%;
  }

  .menu {
    flex-direction: column;
  }

  .about-visit-wrapper {
    flex-direction: column;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  body {
    padding: 10px;
  }
}