/* The Clover Theater — Cinema Heritage Archive
   Theme: "Movie Palace Heritage" — oxblood, gold, parchment; Cinzel + Lora.
   Content is visible with CSS alone; no JS is required to see anything. */

:root {
  --ink: #1c1a17;
  --oxblood: #7a1f2b;
  --oxblood-dark: #571018;
  --gold: #b98a34;
  --gold-bright: #d9ad57;
  --parchment: #f5ecd8;
  --parchment-deep: #ebdcbd;
  --cream: #fbf6ea;
  --muted: #6a6058;
  --maxw: 1120px;
  --measure: 44rem;
  --shadow: 0 10px 30px rgba(28, 26, 23, 0.14);
  --shadow-sm: 0 3px 10px rgba(28, 26, 23, 0.10);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.72;
  font-size: 18px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--oxblood); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: "Cinzel", "Playfair Display", Georgia, serif;
  line-height: 1.18;
  color: var(--oxblood-dark);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.4rem; }

/* ---------- Marquee header ---------- */
.site-header {
  background: linear-gradient(180deg, var(--oxblood) 0%, var(--oxblood-dark) 100%);
  color: var(--cream);
  border-bottom: 4px solid var(--gold);
  text-align: center;
}
.marquee {
  padding: 1.4rem 1rem 1rem;
  position: relative;
}
.bulbs {
  display: flex; justify-content: center; gap: 0.55rem;
  margin: 0 0 0.7rem;
}
.bulbs span {
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 65%, #7a5e22);
  box-shadow: 0 0 7px rgba(217, 173, 87, 0.75);
  display: inline-block;
}
.brand {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(1.5rem, 4.4vw, 2.5rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.brand:hover { color: var(--gold-bright); text-decoration: none; }
.brand-sub {
  display: block;
  font-family: "Lora", serif;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.82rem;
  color: var(--parchment-deep);
  margin-top: 0.35rem;
}

/* ---------- Navigation ---------- */
.site-nav {
  background: var(--oxblood-dark);
  border-bottom: 1px solid rgba(217, 173, 87, 0.35);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid rgba(245, 236, 216, 0.5);
  color: var(--cream); border-radius: 4px; padding: 0.45rem 0.6rem;
  font-size: 1rem; cursor: pointer; margin: 0.5rem 0;
}
.nav-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.2rem;
}
.nav-links a {
  display: block;
  color: var(--parchment);
  font-family: "Cinzel", serif;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.85rem 0.7rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--oxblood-dark);
  background: var(--gold-bright);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--cream);
  text-align: center;
  background: var(--ink);
  overflow: hidden;
}
.hero img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; z-index: 0; opacity: 0.55;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 60rem; margin: 0 auto;
  padding: clamp(3rem, 9vw, 6.5rem) 1.4rem;
  background: linear-gradient(180deg, rgba(28,26,23,0.35), rgba(87,16,24,0.55));
}
.hero h1 { color: var(--cream); font-size: clamp(2rem, 6vw, 3.6rem); margin: 0 0 0.6rem; }
.hero .lede { color: var(--parchment); font-size: clamp(1.05rem, 2.4vw, 1.3rem); margin: 0 auto; max-width: 40rem; }
.kicker {
  display: inline-block;
  font-family: "Cinzel", serif; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.72rem;
  color: var(--gold-bright); margin-bottom: 1rem;
}

/* ---------- Main / article ---------- */
main { display: block; }
.page { padding: 3rem 0 3.5rem; }
.prose { max-width: var(--measure); margin: 0 auto; }
.prose h1 { font-size: clamp(1.9rem, 4.6vw, 2.9rem); margin: 0 0 1rem; }
.prose h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  margin: 2.4rem 0 0.7rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--parchment-deep);
}
.prose h3 { font-size: 1.2rem; margin: 1.6rem 0 0.5rem; }
.prose p, .prose li { color: #2b2721; }
.prose p { margin: 0 0 1.15rem; }
.prose ul, .prose ol { margin: 0 0 1.3rem; padding-left: 1.3rem; }
.prose li { margin-bottom: 0.5rem; }
.prose .lede {
  font-size: 1.22rem; color: var(--oxblood-dark);
  font-style: italic; line-height: 1.6;
  border-left: 3px solid var(--gold); padding-left: 1rem; margin: 0 0 1.6rem;
}
.prose img { border-radius: 6px; box-shadow: var(--shadow); margin: 1.6rem 0; }
.figure { margin: 1.8rem 0; }
.figure figcaption { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-top: 0.5rem; text-align: center; }
.prose strong { color: var(--oxblood-dark); }

/* content image (inline hero within a page) */
.lead-image { max-width: var(--maxw); margin: 0 auto 2rem; padding: 0 1.4rem; }
.lead-image img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; }

/* ---------- Home feature grid ---------- */
.section { padding: 3rem 0; }
.section-alt { background: var(--parchment-deep); }
.section h2 { text-align: center; font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin: 0 0 0.4rem; }
.section .section-intro { text-align: center; max-width: 40rem; margin: 0 auto 2rem; color: #3a352e; }
.cards {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}
.card {
  background: var(--cream);
  border: 1px solid var(--parchment-deep);
  border-top: 4px solid var(--gold);
  border-radius: 6px; padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 0.5rem; font-size: 1.18rem; }
.card p { margin: 0 0 0.9rem; color: #3a352e; font-size: 0.98rem; }
.card a.more { font-family: "Cinzel", serif; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--oxblood); color: var(--cream);
  font-family: "Cinzel", serif; letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.8rem 1.5rem; border-radius: 4px;
  border: 1px solid var(--gold);
  transition: background 0.18s ease, color 0.18s ease;
}
.btn:hover { background: var(--gold-bright); color: var(--oxblood-dark); text-decoration: none; }
.btn-row { text-align: center; margin-top: 1.5rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 1.5rem 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 4px; bottom: 4px;
  width: 3px; background: linear-gradient(var(--gold), var(--parchment-deep));
}
.timeline li { position: relative; padding: 0 0 1.35rem 2.2rem; }
.timeline li::before {
  content: ""; position: absolute; left: 1px; top: 0.5rem;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--oxblood); border: 3px solid var(--gold-bright);
}

/* ---------- Contact form ---------- */
.contact-form { max-width: var(--measure); margin: 1.5rem auto 0; display: grid; gap: 0.4rem; }
.contact-form label { font-family: "Cinzel", serif; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--oxblood-dark); margin-top: 0.6rem; }
.contact-form input, .contact-form textarea {
  font-family: "Lora", serif; font-size: 1rem;
  padding: 0.7rem 0.8rem; border: 1px solid #c9bda2;
  border-radius: 5px; background: var(--cream); color: var(--ink); width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.contact-form button { justify-self: start; margin-top: 1rem; cursor: pointer; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--oxblood-dark), #400b12);
  color: var(--parchment);
  border-top: 4px solid var(--gold);
  padding: 2.6rem 0 1.6rem;
  margin-top: 1rem;
}
.footer-grid { display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.site-footer h4 { color: var(--gold-bright); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 0.7rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--parchment); font-size: 0.95rem; }
.site-footer a:hover { color: var(--gold-bright); }
.site-footer p { font-size: 0.93rem; color: var(--parchment-deep); margin: 0 0 0.8rem; }
.footer-bottom {
  border-top: 1px solid rgba(217,173,87,0.3);
  margin-top: 2rem; padding-top: 1.2rem;
  text-align: center; font-size: 0.82rem; color: var(--parchment-deep);
}
.footer-brand { font-family: "Cinzel", serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright); }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 5rem 1.4rem; }
.error-page h1 { font-size: clamp(3rem, 12vw, 7rem); color: var(--oxblood); margin: 0; }
.error-page p { font-size: 1.15rem; color: #3a352e; max-width: 34rem; margin: 1rem auto 1.8rem; }

/* ---------- Reveal (safe: content visible by default; animation is enhancement only) ---------- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  .reveal { animation: fadeUp 0.6s ease both; }
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; width: 100%;
    background: var(--oxblood-dark); padding-bottom: 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0.9rem; border-top: 1px solid rgba(217,173,87,0.15); text-align: center; }
  .nav-inner { flex-direction: column; align-items: stretch; }
}
