/* Template 11 - Vintage Newspaper/Print */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Crimson+Text:wght@400;600;700&family=EB+Garamond:wght@400;500;600;700;800&display=swap");

:root {
  --ink-black: #1a1a1a;
  --ink-dark: #2d2d2d;
  --paper-white: #f9f7f1;
  --paper-cream: #f5f3ed;
  --accent-red: #8b0000;
  --accent-gold: #b8860b;

  --bg-primary: #f9f7f1;
  --bg-secondary: #f5f3ed;
  --bg-tertiary: #ebe9e0;

  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #6a6a6a;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Crimson Text", serif;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.02) 2px,
    rgba(0, 0, 0, 0.02) 4px
  );
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Classic Newspaper Masthead */
.site-header {
  background: var(--bg-primary);
  border-bottom: 4px double var(--ink-black);
  border-top: 2px solid var(--ink-black);
  padding: 2rem 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 0 var(--accent-red);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--text-muted);
  padding-bottom: 1rem;
}

.site-logo a {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink-black);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 3px solid var(--ink-black);
  padding: 0.5rem 1.5rem;
  background: var(--paper-cream);
}

.site-logo a:hover {
  background: var(--accent-red);
  color: var(--paper-white);
  border-color: var(--accent-red);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Libre Baskerville", serif;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--accent-red);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.section.head {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px double var(--ink-black);
  background: var(--bg-secondary);
}

.section.head h1 {
  font-family: "EB Garamond", serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--ink-black);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.8;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
  border-bottom: 2px solid var(--ink-black);
  padding-bottom: 1rem;
}

.section header h2 {
  font-family: "EB Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink-black);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.section header h2::before {
  content: "❦";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
  font-size: 1.5rem;
  color: var(--accent-red);
}

.section header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--bg-tertiary);
  padding: 3rem 0 1rem;
  border-top: 4px double var(--ink-black);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--text-muted);
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-family: "Libre Baskerville", serif;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.7rem;
  color: var(--ink-black);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
  font-family: "Libre Baskerville", serif;
  border-left: 4px solid var(--accent-red);
  padding-left: 1rem;
}
