/* =========================================================
   Good Day Productions – Black & Gold Leaf Theme 2026
   Elegant • Cinematic • Respectful
   ========================================================= */

:root {
  /* Core palette */
  --bg-deep: #050505;
  --bg: #0a0a0a;
  --bg-card: #121212;
  --bg-elevated: #1a1a1a;
  
  /* Gold leaf spectrum */
  --gold: #d4af37;
  --gold-bright: #f0d060;
  --gold-soft: #c9a227;
  --gold-dim: #8a7420;
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  /* Text */
  --text: #f5f0e6;
  --text-muted: #b0a890;
  --text-dim: #7a7260;
  
  /* Accents */
  --border-gold: #d4af37;
  --radius: 10px;
  --radius-lg: 16px;
  
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Georgia', 'Times New Roman', serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
}

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

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

a:hover {
  color: #fff8dc;
  text-shadow: 0 0 12px var(--gold-glow);
}

/* ========== HEADER ========== */
.site-header {
  background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border-bottom: 2px solid var(--gold);
  box-shadow:
    0 2px 0 #8a7420,
    0 4px 20px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(212, 175, 55, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  text-shadow: 0 0 18px var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: #fff8dc;
  font-weight: 400;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.4rem;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.15rem;
}

/* ========== MAIN ========== */
main {
  flex: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 3.5rem;
  width: 100%;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(145deg, #111111 0%, #0a0a0a 50%, #12100a 100%);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 3.25rem 2rem;
  margin-bottom: 2.75rem;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(212, 175, 55, 0.12);
}

/* Gold leaf corner accents */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  opacity: 0.7;
}

.hero::before {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
}

.hero::after {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 24px var(--gold-glow);
}

.hero p {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 1.75rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  background: linear-gradient(180deg, #e8c547 0%, #c9a227 45%, #a8861a 100%);
  color: #1a1508 !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.65rem;
  border-radius: 8px;
  border: 1px solid #f0d060;
  box-shadow:
    0 2px 0 #7a6420,
    0 6px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 0 #7a6420,
    0 10px 24px rgba(0, 0, 0, 0.5),
    0 0 20px var(--gold-glow);
  color: #1a1508 !important;
  text-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--gold-bright) !important;
  border: 2px solid var(--gold);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #fff8dc !important;
  box-shadow: 0 0 18px var(--gold-glow);
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 1.35rem;
  padding-bottom: 0.5rem;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 14px var(--gold-glow);
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin: 1.6rem 0 2.75rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid #2a2410;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(212, 175, 55, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), transparent 40%, transparent 60%, rgba(212, 175, 55, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dim);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(212, 175, 55, 0.12);
}

.card h3 {
  font-family: var(--font-display);
  color: var(--gold-bright);
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card img {
  border-radius: 8px;
  margin-bottom: 1.1rem;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid #3a3218;
}

/* ========== MEMORIAL ========== */
.memorial-hero {
  background: linear-gradient(160deg, #0e0e0e 0%, #080808 40%, #12100a 100%);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  text-align: center;
  margin-bottom: 2.25rem;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.18),
    0 16px 48px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.memorial-hero::before,
.memorial-hero::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  opacity: 0.65;
}

.memorial-hero::before {
  top: 14px;
  left: 14px;
  border-right: none;
  border-bottom: none;
}

.memorial-hero::after {
  bottom: 14px;
  right: 14px;
  border-left: none;
  border-top: none;
}

.memorial-hero h1 {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 20px var(--gold-glow);
}

.memorial-hero h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  color: #fff8dc;
  margin-bottom: 0.75rem;
}

.memorial-photo {
  max-width: 360px;
  margin: 1.75rem auto;
  border-radius: 12px;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 1px #8a7420,
    0 12px 36px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(212, 175, 55, 0.2);
}

.embed-box {
  background: #080808;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.75rem 0;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.embed-box iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
  background: #111;
}

.embed-note {
  background: linear-gradient(90deg, #1a1608, #12100a);
  color: var(--gold-soft);
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  text-align: center;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #3a3218;
}

/* ========== RESOURCE LIST ========== */
.resource-list {
  list-style: none;
  margin: 1rem 0;
}

.resource-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #2a2410;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.resource-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
  text-shadow: 0 0 8px var(--gold-glow);
}

.resource-list a {
  color: var(--gold-bright);
}

/* ========== PROSE ========== */
.prose {
  max-width: 720px;
}

.prose p {
  margin-bottom: 1.05rem;
  color: var(--text-muted);
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--gold-bright);
  margin: 1.85rem 0 0.7rem;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.prose ul {
  margin: 0.7rem 0 1.3rem 1.4rem;
  color: var(--text-muted);
}

.prose li {
  margin-bottom: 0.4rem;
}

/* ========== QUOTE ========== */
.quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  margin: 1.75rem 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
  font-style: italic;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-radius: 0 8px 8px 0;
}

/* ========== FOOTER ========== */
.site-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-top: 2px solid var(--gold);
  color: var(--text-dim);
  padding: 2.25rem 1.5rem;
  margin-top: auto;
  text-align: center;
  font-size: 0.88rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

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

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-bottom: 1.1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 0.9rem;
  }
  
  .nav.open {
    display: flex;
  }
  
  .header-inner {
    flex-wrap: wrap;
  }
  
  .hero {
    padding: 2.25rem 1.35rem;
  }
  
  .hero::before,
  .hero::after,
  .memorial-hero::before,
  .memorial-hero::after {
    width: 28px;
    height: 28px;
  }
  
  .embed-box iframe {
    height: 420px;
  }
}

@media (max-width: 480px) {
  main {
    padding: 1.4rem 1rem 2.5rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .logo {
    font-size: 1.2rem;
  }
}

/* === Enhanced Graphics Pass === */
.card {
  background: linear-gradient(165deg, #141414 0%, #0e0e0e 100%);
}
.card:hover {
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.6),
    0 0 28px rgba(212, 175, 55, 0.18);
}
.hero {
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.22),
    0 16px 48px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(212, 175, 55, 0.15),
    0 0 60px rgba(212, 175, 55, 0.08);
}
.logo {
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.45);
}
.section-title {
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}
