
:root {
  --wood-logo: #F1C789;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}

header {
  background-color: #404040;
  padding: 10px 20px;
  text-align: center;
}

header h1 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin: 15px 0 10px;
  color: var(--wood-logo);
}

header h2,
header h3,
header p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #f2f2f2;
}

main {
  background-color: #dcd5cc;
  padding: 40px 20px;
  margin: 0;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
}

main > *:not(.gallery-cats) {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

main h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

main ul {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 20px;
}


h1 { margin-bottom: 5px; }

footer {
  background-color: #404040;
  color: #f2f2f2;
  padding: 8px 0;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.2;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}
.gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fafafa;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.caption {
  font-weight: bold;
  margin-bottom: 8px;
}


form {
  max-width: 500px;
  margin: 0 auto;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  font-family: inherit;
}

button {
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* Navigation */
.nav {
  background-color: #f2f2f2;
  padding: 15px 0;
}

.nav .links {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav .links a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  padding: 6px 10px;
}

.nav .links a.active {
  background-color: var(--wood-logo);
  color: #1f1f1f;
  padding: 6px 12px;
  border-radius: 6px;
}
/* Center top site title */
.site-title {
  text-align: center;
  background-color: #f2f2f2;   /* matches nav bar */
  padding: 10px 20px;
}

.site-title h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

header .logo {
  width: 300px;   /* ← smaller logo */
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

/* About Page Layout */
.page {
  padding: 40px 20px;
}

.about {
  max-width: 900px;
  margin: 0 auto;        /* centers the content */
  line-height: 1.7;
  text-align: left;
}

.about p {
  margin-bottom: 16px;
}

/* Subtle section dividers on About page */
.about h2 {
  position: relative;
  padding-top: 22px;
}

.about h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  header {
    padding: 22px 16px;
  }

  header h1 {
    letter-spacing: 1px;
  }

  header h2,
  header h3,
  header p {
    max-width: 32ch;
    font-size: 1rem;
  }

  main {
    margin: 20px 12px;
    padding: 22px 16px;
  }
}

@media (min-width: 900px) {
  header {
    padding: 36px 20px;
  }

  main {
    margin: 50px auto;
  }
}

/* ===== Categorized Gallery Reels ===== */
.gallery-cats{
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.cat{
  margin: 2.5rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.reel{
  overflow-x: auto;                  /* shows bottom scrollbar */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* smooth mobile swipe */
  scroll-behavior: smooth;
}

.reel-track{
  display: flex;                     /* makes items horizontal */
  flex-wrap: nowrap;
  gap: 22px;
  padding: 18px;
  width: max-content;
  animation: none !important;        /* NO CSS animation */
}

.reel figure{
  margin: 0;
  width: 380px;
  flex: 0 0 auto;
}

.reel img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.reel figcaption{
  text-align: center;
  font-size: 0.92rem;
  opacity: 0.9;
  margin-top: 8px;
}

@media (max-width: 700px){
  .reel figure{ width: 260px; }
  .reel img{ height: 185px; }
}

/* ===== Lightbox ===== */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.lightbox.open{ display: flex; }

.lightbox img{
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 12px;
}

.lightbox-cap{
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 92vw;
  text-align: center;
  color: #f2f2f2;
  font-size: 0.95rem;
  opacity: 0.9;
}

.lightbox-close{
  position: fixed;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.no-scroll{ overflow: hidden; }

.reel img.lb{ cursor: zoom-in; }

