/* Reining at Gingerwood - shared styles */

:root {
  --saddle: #6b4423;
  --saddle-dark: #4a2f18;
  --tan: #d9bd94;
  --cream: #faf5ea;
  --forest: #3a4a34;
  --rust: #a8462e;
  --ink: #2c2420;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--saddle-dark);
  margin-top: 0;
}

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

/* Header / Nav */
header.site-header {
  background: var(--saddle-dark);
  color: var(--white);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-title {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.site-title span {
  color: var(--tan);
}

.site-logo {
  height: 88px;
  width: auto;
  display: block;
}

nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: var(--cream);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: var(--tan);
  text-decoration: none;
  border-bottom: 2px solid var(--tan);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(43,30,20,0.55), rgba(43,30,20,0.55)), var(--saddle);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.8rem;
  background: var(--rust);
  color: var(--white);
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.btn:hover { background: #8a3722; text-decoration: none; }

/* Main content */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section {
  margin-bottom: 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid #e6dbc9;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.card h3 { margin-bottom: 0.4rem; }

table.schedule {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

table.schedule th, table.schedule td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e6dbc9;
}

table.schedule th {
  background: var(--saddle);
  color: var(--white);
  font-family: Georgia, serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--tan);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saddle-dark);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.placeholder-note {
  background: #fff4e0;
  border-left: 4px solid var(--rust);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Footer */
footer.site-footer {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer.site-footer a { color: var(--tan); }

@media (max-width: 640px) {
  header.site-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero h1 { font-size: 2rem; }
}
