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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  text-align: justify;
}

a {
  color: #702C29;
  text-decoration: underline;
}

a:hover {
  color: #DE1C1D;
  text-decoration: none;
}

h1, h2, h3 {
  color: #AA2808;
}

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

/* === Header === */
.site-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E5E5E5;
  flex-wrap: wrap;
}

.logo a {
  display: inline-block;
}

.logo img {
  max-height: 100px;
  width: auto;
}

/* === Navigation === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #736357;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Segoe Script', cursive;
  font-size: 14px;
  font-weight: bold;
  color: #736357;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav .active a {
  background: #736357;
  color: #fff;
}

.main-nav .facebook-link img {
  height: 36px;
  width: 36px;
  vertical-align: middle;
}

/* === Hero / Slideshow === */
.hero-slideshow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  border: 4px solid #736357;
  border-radius: 4px;
  overflow: hidden;
  background: #736357;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slideshow img.active {
  opacity: 1;
}

.slideshow-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(115, 99, 87, 0.85);
  color: #fff;
  text-align: center;
  padding: 10px 15px;
}

.slideshow-caption .caption-title {
  font-family: 'Segoe Script', cursive;
  font-size: 1.3rem;
}

.slideshow-caption .caption-sub {
  font-size: 0.85rem;
}

.slideshow-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.slideshow-thumbs img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border: 3px solid #736357;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}

.slideshow-thumbs img.active,
.slideshow-thumbs img:hover {
  opacity: 1;
  border-color: #DE1C1D;
}

/* === Page Content Layout === */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
}

.page-content.full-width {
  grid-template-columns: 1fr;
}

/* === Main Content === */
.content-section {
  font-style: italic;
}

.title-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.title-row .section-title {
  margin-bottom: 0;
}

.content-section .section-title {
  display: inline-block;
  padding: 6px 20px;
  background: #736357;
  color: #fff;
  font-family: 'Segoe Script', cursive;
  font-weight: normal;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.content-section .reserve-link {
  background: #fff;
  color: #736357;
  border: 2px solid #736357;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}

.content-section .reserve-link:hover {
  background: #736357;
  color: #fff;
}

.content-section p {
  margin-bottom: 18px;
}

/* === Sidebar === */
.sidebar {
  font-style: italic;
}

.sidebar h2 {
  font-family: 'Segoe Script', cursive;
  font-weight: normal;
  font-size: 1.4rem;
  color: #454E55;
  border-bottom: 2px solid #EBEBEB;
  padding-bottom: 5px;
  margin-bottom: 12px;
}

.sidebar-block {
  margin-bottom: 30px;
}

.sidebar-block p {
  margin-bottom: 6px;
  line-height: 1.8;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 4px 8px;
  vertical-align: top;
}

/* === Google Map === */
.map-container {
  width: 100%;
  margin: 20px 0;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 4px;
}

/* === Footer === */
.site-footer {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 20px;
  border-top: 1px solid #E5E5E5;
  text-align: center;
  font-size: 0.85rem;
  color: #333;
}

.site-footer a {
  color: #333;
}

/* === Responsive === */

/* Tablet */
@media (max-width: 900px) {
  .page-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sidebar {
    border-top: 1px solid #E5E5E5;
    padding-top: 20px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .title-row {
    justify-content: center;
    text-align: center;
  }

  .site-header {
    padding: 10px 15px;
  }

  .logo img {
    max-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
  }

  .main-nav a {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
  }

  .hero-slideshow {
    padding: 10px;
  }

  .slideshow {
    aspect-ratio: 16 / 9;
  }

  .slideshow-thumbs img {
    width: 70px;
    height: 50px;
  }

  .slideshow-caption .caption-title {
    font-size: 1rem;
  }

  .page-content {
    padding: 15px;
  }

  .content-section .section-title {
    font-size: 1.1rem;
    padding: 5px 15px;
  }

  .map-container iframe {
    height: 250px;
  }
}
