/* Pence Pets — Static Clone */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --cream: #fdf8f2;
  --brown: #6b4c2a;
  --light-brown: #c8a87a;
  --dark: #2c1d0e;
  --text: #3d2b1a;
  --border: #ddd0c0;
  --accent: #a0522d;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER ── */
#header {
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  padding: 16px 0 0;
  text-align: center;
}

#header .logo img {
  max-width: 320px;
  height: auto;
}

nav {
  margin-top: 12px;
  background: var(--brown);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li a {
  display: block;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 11px 18px;
  text-decoration: none;
  transition: background .2s;
}

nav ul li a:hover,
nav ul li a.active {
  background: var(--light-brown);
  color: var(--dark);
}

/* ── LAYOUT ── */
#wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

#content-area {
  display: flex;
  gap: 40px;
  padding: 36px 0 50px;
  align-items: flex-start;
}

#content {
  flex: 1 1 0;
  min-width: 0;
}

#sidebar {
  width: 220px;
  flex-shrink: 0;
}

/* ── HEADINGS ── */
h1 {
  font-family: 'Playfair Display', serif;
  color: var(--brown);
  font-size: 2rem;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--brown);
  margin-bottom: 10px;
}

h3 { font-size: 1.1rem; margin-top: 28px; }

p { margin-bottom: 14px; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 20px 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--border);
  transition: transform .2s, border-color .2s;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  border-color: var(--light-brown);
}

/* ── SPECIALTIES LIST ── */
.specials ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ── SIDEBAR ── */
#sidebar .widget {
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

#sidebar .widget-title {
  background: var(--brown);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  padding: 8px 14px;
  margin: 0;
}

#sidebar .widget-body {
  padding: 14px;
  text-align: center;
}

#sidebar .widget-body img {
  max-width: 100%;
  height: auto;
}

#sidebar .widget-body p {
  font-size: .9rem;
  margin-bottom: 10px;
}

/* ── SHOWS PAGE ── */
.show-list { margin: 0; padding: 0; list-style: none; }
.show-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.show-list li:last-child { border-bottom: none; }
.show-list .show-date { font-weight: 700; color: var(--brown); min-width: 140px; display: inline-block; }
.show-list .unconfirmed { color: #888; font-style: italic; font-size: .85rem; }

/* ── CUSTOM ORDERS ── */
.price-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.price-table th, .price-table td { border: 1px solid var(--border); padding: 8px 14px; }
.price-table th { background: var(--brown); color: #fff; text-align: left; }
.price-table tr:nth-child(even) td { background: #fdf3ea; }

.notice-box {
  background: #fff8ee;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  margin-bottom: 24px;
  border-radius: 0 4px 4px 0;
}

/* ── CONTACT ── */
.contact-info p { margin-bottom: 8px; }

/* ── FOOTER ── */
#footer {
  background: var(--brown);
  color: #e0cbb4;
  text-align: center;
  padding: 18px 20px;
  font-size: .85rem;
}

#footer a { color: var(--light-brown); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  #content-area { flex-direction: column; }
  #sidebar { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  nav ul li a { padding: 9px 12px; font-size: 12px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
