/* =================================================================
   worlds-largest.css  —  Daisy Airgun Museum
   ================================================================= */

/* HERO */
.wl-hero {
  background: var(--navy) url('/images/heroLBB1.jpg') center center / cover no-repeat;
  padding: 72px 64px 60px;
  position: relative;
  overflow: hidden;
}
.wl-hero-bg { display: none; }
.wl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(7,14,23,0.90) 0%,
    rgba(7,14,23,0.78) 50%,
    rgba(7,14,23,0.50) 100%);
}
.wl-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.breadcrumb { font-family:'Josefin Sans',sans-serif; font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(245,240,232,0.4); margin-bottom:20px; }
.breadcrumb a { color:var(--gold-light); text-decoration:none; }
.breadcrumb span { margin:0 8px; }
.wl-eyebrow { font-family:'Josefin Sans',sans-serif; font-size:0.72rem; font-weight:600; letter-spacing:0.3em; text-transform:uppercase; color:var(--red); margin-bottom:16px; }
.wl-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2.6rem,5vw,4rem); font-weight:900; color:#fff; line-height:1.08; margin-bottom:22px; }
.wl-hero h1 em { font-style:italic; color:var(--gold-light); }
.wl-hero-sub { font-size:clamp(1rem,1.4vw,1.15rem); color:rgba(245,240,232,0.82); line-height:1.65; max-width:460px; }

/* INTRO BAND */
.wl-intro-band { background:var(--cream); padding:56px 48px; }
.wl-intro-inner { max-width:860px; margin:0 auto; }
.wl-lead { font-family:'Playfair Display',serif; font-size:1.22rem; font-style:italic; color:var(--navy); line-height:1.7; margin-bottom:18px; }
.wl-intro-band p { font-size:1rem; color:var(--text-mid); line-height:1.85; }

/* ---------------------------------------------------------------
   THUMBNAIL GALLERY
--------------------------------------------------------------- */
.wl-gallery-section {
  background: var(--navy-dark);
  padding: 56px 48px 64px;
}
.wl-gallery-header {
  text-align: center;
  margin-bottom: 36px;
}
.wl-gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.wl-gallery-header p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

.wl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 660px;
  margin: 0 auto;
}

.wl-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  background: var(--navy);
}
.wl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.wl-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,14,23,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.wl-thumb-overlay span {
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}
.wl-thumb:hover img { transform: scale(1.06); }
.wl-thumb:hover .wl-thumb-overlay { background: rgba(7,14,23,0.45); }
.wl-thumb:hover .wl-thumb-overlay span { opacity: 1; transform: scale(1); }

/* ---------------------------------------------------------------
   LIGHTBOX
--------------------------------------------------------------- */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4,9,16,0.96);
  align-items: center;
  justify-content: center;
}
.lb-overlay.active { display: flex; }

.lb-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-img {
  display: block;
  max-width: 88vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.8);
}
.lb-caption {
  margin-top: 14px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}
.lb-counter {
  margin-top: 6px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.28);
}

/* Lightbox Buttons */
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(245,240,232,0.55);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  transition: color 0.2s;
  z-index: 9001;
}
.lb-close:hover { color: #fff; }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,27,42,0.7);
  color: var(--gold-light);
  border: 1px solid rgba(201,146,42,0.35);
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 9001;
  border-radius: 2px;
}
.lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ---------------------------------------------------------------
   MAIN CONTENT
--------------------------------------------------------------- */
.wl-content-wrap { max-width:1100px; margin:0 auto; padding:72px 48px 80px; }

/* STORY + PHOTO */
.wl-story { display:grid; grid-template-columns:1fr 380px; gap:56px; align-items:start; margin-bottom:72px; }
.section-label { font-family:'Josefin Sans',sans-serif; font-size:0.7rem; font-weight:700; letter-spacing:0.25em; text-transform:uppercase; margin-bottom:10px; display:block; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(1.7rem,2.5vw,2.4rem); font-weight:900; color:var(--navy); line-height:1.12; margin-bottom:6px; }
.accent-bar { width:48px; height:3px; background:var(--gold); margin:14px 0 22px; }
.section-body { font-size:1rem; color:var(--text-mid); line-height:1.85; }

/* Inline stats strip */
.wl-inline-stats { display:flex; gap:0; margin-top:28px; border:1px solid var(--cream-dark); border-radius:2px; overflow:hidden; }
.wl-inline-stat { flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; padding:16px 12px; background:var(--cream); border-right:1px solid var(--cream-dark); }
.wl-inline-stat:last-child { border-right:none; }
.wl-is-num { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:900; color:var(--navy); line-height:1; margin-bottom:5px; }
.wl-is-num em { font-style:normal; font-size:0.9rem; margin-left:2px; color:var(--gold); }
.wl-is-label { font-family:'Josefin Sans',sans-serif; font-size:0.6rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-mid); line-height:1.4; }

/* Photo column */
.wl-story-photo { position:sticky; top:100px; }
.wl-story-photo img { width:100%; height:auto; display:block; border-radius:2px; box-shadow:0 12px 40px rgba(0,0,0,0.15); }

/* CREDITS */
.wl-credits-section { margin-bottom:72px; }
.wl-credits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.wl-credit-card { background:var(--cream); padding:36px 28px; border-top:3px solid var(--gold); border-radius:0 0 2px 2px; text-align:center; }
.wl-credit-icon { font-size:2rem; margin-bottom:14px; }
.wl-credit-card h4 { font-family:'Josefin Sans',sans-serif; font-size:0.72rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--navy); margin-bottom:12px; }
.wl-credit-card p { font-size:0.93rem; color:var(--text-mid); line-height:1.7; }

/* REACTIONS */
.wl-reactions { background:var(--navy); padding:64px 48px; margin-bottom:72px; border-radius:2px; }
.wl-reactions .section-title { color:#fff; }
.wl-reactions-sub { font-family:'Josefin Sans',sans-serif; font-size:0.82rem; letter-spacing:0.08em; color:rgba(245,240,232,0.6); text-align:center; max-width:580px; margin:12px auto 40px; line-height:1.6; }
.wl-quote-row { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.wl-quote-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-top:3px solid var(--gold); padding:32px 24px; border-radius:0 0 2px 2px; }
.wl-quote-card p { font-family:'Playfair Display',serif; font-size:1.3rem; font-style:italic; color:#fff; margin-bottom:16px; line-height:1.4; }
.wl-quote-card cite { font-family:'Josefin Sans',sans-serif; font-size:0.63rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold-light); font-style:normal; display:block; line-height:1.6; }

/* CLOSING */
.wl-closing { text-align:center; border-top:1px solid var(--cream-dark); padding-top:56px; }
.wl-closing p { font-size:1.08rem; color:var(--text-mid); line-height:1.85; max-width:700px; margin:0 auto 36px; }
.wl-closing-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn-primary { background:var(--gold); color:var(--navy); font-family:'Josefin Sans',sans-serif; font-size:0.78rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; text-decoration:none; padding:15px 34px; border-radius:2px; transition:background 0.2s,transform 0.15s; display:inline-block; }
.btn-primary:hover { background:var(--gold-light); transform:translateY(-2px); }
.btn-outline { background:transparent; color:var(--navy); font-family:'Josefin Sans',sans-serif; font-size:0.78rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; text-decoration:none; padding:15px 34px; border-radius:2px; border:2px solid var(--navy); transition:background 0.2s,color 0.2s,transform 0.15s; display:inline-block; }
.btn-outline:hover { background:var(--navy); color:#fff; transform:translateY(-2px); }

/* ---------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------- */
@media (max-width:900px) {
  .wl-gallery-grid { grid-template-columns:repeat(3,1fr); }
  .wl-story { grid-template-columns:1fr; gap:36px; }
  .wl-story-photo { position:static; }
  .wl-credits-grid { grid-template-columns:1fr; }
  .wl-quote-row { grid-template-columns:1fr; }
  .wl-reactions { padding:48px 28px; }
}
@media (max-width:640px) {
  .wl-gallery-section { padding:40px 16px 48px; }
  .wl-gallery-grid { grid-template-columns:repeat(2,1fr); gap:6px; max-width:100%; }
  .lb-prev { left:8px; }
  .lb-next { right:8px; }
  .lb-prev, .lb-next { width:40px; height:40px; font-size:1.1rem; }
}
@media (max-width:480px) {
  .wl-hero { padding: 52px 24px 48px; }
  .wl-hero-overlay { background:rgba(7,14,23,0.78); }
  .wl-intro-band { padding:40px 24px; }
  .wl-content-wrap { padding:48px 24px 64px; }
  .wl-inline-stats { flex-direction:column; }
  .wl-inline-stat { border-right:none; border-bottom:1px solid var(--cream-dark); }
  .wl-inline-stat:last-child { border-bottom:none; }
}
