
:root{
  /* Vibrant autumn palette */
  --autumn-burgundy:#8B1E3F;
  --autumn-orange:#E0632A;
  --autumn-gold:#F2C200;
  --autumn-teal:#1F6F78;
  --cream:#faf8f6;
  --ink:#222;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--cream);
}
.hero{
  padding:2.5rem 1rem 1.5rem;
  text-align:center;
  color:#fff;
  background:linear-gradient(135deg,
    var(--autumn-burgundy) 0%,
    var(--autumn-orange) 28%,
    var(--autumn-gold) 58%,
    var(--autumn-teal) 100%
  );
}
.brand-title {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7),
               0 0 16px rgba(255,193,7,0.9);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 12px rgba(255,193,7,0.75); }
  50% { text-shadow: 2px 2px 10px rgba(0,0,0,0.85), 0 0 24px rgba(255,193,7,1); }
}
.tagline{opacity:.98;margin:.3rem 0 0}
.grid{
  padding:2rem 1rem 3rem;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.25rem;
  max-width:1200px;
  margin:0 auto;
}
.card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
}
/* Uniform, smaller image area with no cropping (show whole faces) */
.img-box{
  width:100%;
  height:200px;           /* smaller height for full faces */
  background:#0d0d0d;     /* subtle letterbox background */
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.card img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;     /* ensure full image visible */
  display:block;
}
.card h3{
  margin:.85rem 1rem .25rem;
  color:var(--autumn-burgundy);
  font-size:1.2rem;
}
.card p{
  margin:0 1rem 1rem;
  line-height:1.45;
  font-size:.98rem;
}
.controls{
  display:flex;
  gap:.5rem;
  padding:0 1rem 1rem;
  flex-wrap:wrap;
}
button{
  appearance:none;
  border:none;
  border-radius:12px;
  padding:.6rem 1rem;
  background:var(--autumn-orange);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:transform .04s ease, background .2s ease;
}
button:hover{background:#c55422}
button:active{transform:translateY(1px)}
.pause{background:#2f2f2f}
.pause:hover{background:#111}
.stop{background:var(--autumn-burgundy)}
.stop:hover{background:#6f1833}

.gallery{
  max-width:1200px;
  margin:0 auto 3rem;
  padding:0 1rem;
}
.gallery h2{
  text-align:center;
  color:var(--autumn-burgundy);
  margin:0 0 1rem;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}
.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  background:#000;
}

footer{
  text-align:center;
  padding:1.5rem;
  color:#666;
}
/* ===== Dark theme + Option A (no cropping) — OVERRIDES ===== */

/* Make the whole site dark */
html, body {
  background: #000 !important;
  color: #eaeaea !important;
}

/* Keep panels transparent so the black shows through */
header, main, footer, .container, .section {
  background: transparent !important;
}

/* Cards: match the dark theme */
.card {
  background: #0d0d0d !important;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.40);
}

/* Headings on dark (optional tweak so they pop) */
.gallery h2 { color: var(--autumn-gold, #F2C200) !important; }

/* Character portraits — show the entire face (no cropping) */
.img-box {
  /* you already set height: 200px; keep or tweak */
  background: #000 !important;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.img-box img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;   /* NO CROPPING */
  display: block;
  background: #000;
}

/* Adventure Gallery thumbnails — stop cropping */
.gallery-grid img {
  width: 100% !important;
  height: auto !important;           /* remove the fixed 220px */
  object-fit: contain !important;    /* show the whole image */
  display: block;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}

/* (Optional) Uniform tile heights without cropping:
   Wrap each gallery image in <div class="frame">...</div> and use this:

.gallery-grid .frame {
  height: 220px;                      // pick your tile height
  display: flex; align-items: center; justify-content: center;
  background: #000; border-radius: 12px; overflow: hidden;
}
.gallery-grid .frame img {
  max-height: 100% !important;
  width: auto !important; height: auto !important;
  object-fit: contain !important;
}
*/
