/* ===== HILLEND TAVERN WIREFRAME ===== */
/* Placeholder styles — will be redesigned in Boathouse style later */

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #333;
  background: #f5f0e8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- Header --- */
.site-header {
  background: #4a0e0e;
  color: #d4af37;
  text-align: center;
  padding: 30px 20px 15px;
}

.site-header h1 {
  font-size: 2.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.site-header .tagline {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
}

/* --- Navigation --- */
nav {
  background: #8b1a1a;
  display: flex;
  justify-content: center;
  gap: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  font-size: 0.95rem;
  transition: background 0.2s;
}

nav a:hover,
nav a.active {
  background: #a52a2a;
}

/* --- Main Layout --- */
.page-wrapper {
  display: flex;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  gap: 30px;
  flex: 1;
}

.content {
  flex: 1;
}

.content h2 {
  color: #8b1a1a;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.content h3 {
  color: #8b1a1a;
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

.content p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.content ul {
  margin: 10px 0 15px 25px;
  line-height: 1.8;
}

/* --- Sidebar --- */
.sidebar {
  width: 240px;
  flex-shrink: 0;
}

.hours-box {
  background: #ede4cc;
  border: 1px solid #c9b98a;
  padding: 20px;
}

.hours-box h3 {
  color: #8b1a1a;
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-align: center;
}

.hours-box table {
  width: 100%;
  font-size: 0.85rem;
}

.hours-box td {
  padding: 3px 0;
}

.hours-box td:first-child {
  font-weight: bold;
  width: 55px;
}

.hours-box td:last-child {
  text-align: right;
}

/* --- Image Placeholders --- */
.img-placeholder {
  background: #d0c8b8;
  border: 2px dashed #a09880;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7060;
  font-size: 0.85rem;
  font-style: italic;
  min-height: 200px;
  margin-bottom: 20px;
}

.img-placeholder.hero {
  min-height: 280px;
  font-size: 1rem;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid .img-placeholder {
  min-height: 160px;
  margin-bottom: 0;
}

/* --- Ales Logos --- */
.ales-row {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ales-row .img-placeholder {
  width: 100px;
  height: 100px;
  min-height: auto;
  border-radius: 50%;
}

/* --- Map Placeholder --- */
.map-placeholder {
  background: #c8d8c0;
  border: 2px dashed #8a9a80;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a6a50;
  font-style: italic;
  margin: 20px 0;
}

/* --- Footer --- */
.site-footer {
  background: #4a0e0e;
  color: #c9a84c;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: auto;
}

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

/* --- Responsive --- */
@media (max-width: 700px) {
  .page-wrapper {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
  nav {
    flex-wrap: wrap;
  }
  nav a {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
