/* Core — shared foundation across all pages
   Loaded after fonts.css, a11y.css and before theme.css, responsive.css.
   Page-specific styles stay in inline <style> blocks. */

/* ===== RESET & VARIABLES ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --plum:#470d44;
  --plum-deep:#2e0829;
  --plum-light:#611a5c;
  --coral:#fdb49b;
  --coral-light:#fdd0c2;
  --cream:#fcf0e1;
  --cream-dark:#f5e4cf;
  --slate:#2c2c3a;
  --white:#ffffff;
  --text:#1a1a2e;
  --text-light:#555566;
}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Source Sans 3',sans-serif;
  color:var(--text);
  background:var(--cream);
  overflow-x:hidden;
  line-height:1.7;
}

/* ===== NAV SOCIALS ===== */
.nav-socials{display:flex;align-items:center;gap:0.5rem;margin-left:auto;margin-right:auto}
.nav-socials a{color:var(--plum);font-size:0.85rem;text-decoration:none;transition:color 0.2s}
.nav-socials a:hover{color:var(--coral)}

/* ===== NAVIGATION ===== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(252,240,225,0.95);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:all 0.4s ease;
  border-bottom:1px solid rgba(71,13,68,0.08);
}
.nav.scrolled{
  background:rgba(252,240,225,0.98);
  box-shadow:0 1px 12px rgba(46,8,41,0.1);
}
.nav-inner{
  max-width:1200px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:0.75rem 1.5rem;
}
.nav-logo{
  display:flex;align-items:center;gap:0.75rem;
  text-decoration:none;color:var(--plum);
}
.nav-logo-text{font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:0.12em;line-height:1.1}
.nav-logo-sub{font-size:0.65rem;letter-spacing:0.2em;color:var(--plum-light);text-transform:uppercase;font-family:'Source Sans 3',sans-serif;font-weight:600}
.ohio-icon{
  width:32px;height:32px;
  background:var(--coral);
  clip-path:polygon(18% 0%,82% 2%,100% 8%,95% 25%,90% 45%,85% 60%,75% 78%,60% 92%,45% 100%,30% 95%,15% 80%,5% 60%,0% 35%,5% 15%);
}
.nav-links{display:flex;align-items:center;gap:0.25rem;list-style:none}
.nav-links a{
  color:var(--plum);text-decoration:none;
  font-size:0.85rem;font-weight:600;letter-spacing:0.06em;
  padding:0.5rem 0.9rem;border-radius:6px 6px 0 0;
  transition:all 0.3s ease;text-transform:uppercase;
  white-space:nowrap;
}
.nav-links a:hover{color:var(--plum);background:rgba(71,13,68,0.06)}
.nav-links a.active{background:var(--plum);color:var(--cream);padding-bottom:calc(0.5rem + 4px);margin-bottom:-4px;border-radius:6px 6px 0 0}
/* Nav dropdowns */
.nav-dropdown{position:relative}
.nav-dropdown>a::after{content:'';display:inline-block;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid currentColor;margin-left:0.35rem;vertical-align:middle;transition:transform 0.2s}
.nav-dropdown:hover>a::after,.nav-dropdown.open>a::after{transform:rotate(180deg)}
.nav-dropdown-menu{
  display:none;position:absolute;top:100%;left:50%;transform:translateX(-50%);
  background:var(--cream);border:1px solid rgba(71,13,68,0.1);
  border-radius:0 0 10px 10px;box-shadow:0 8px 24px rgba(46,8,41,0.12);
  min-width:200px;padding:0.4rem 0;z-index:1001;
}
.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown.open .nav-dropdown-menu{display:block}
.nav-dropdown-menu a{
  display:block;padding:0.6rem 1.25rem;
  font-size:0.82rem;font-weight:600;color:var(--plum);
  text-decoration:none;letter-spacing:0.04em;text-transform:uppercase;
  white-space:nowrap;border-radius:0;transition:background 0.15s;
}
.nav-dropdown-menu a:hover{background:rgba(71,13,68,0.06);color:var(--plum)}
.nav-dropdown-menu a.active{background:var(--plum);color:var(--cream)}

.nav-links .nav-donate{
  background:var(--coral);color:var(--plum);
  font-weight:700;border-radius:8px;
  padding:0.6rem 1.3rem;
  transition:background 0.15s ease-out,box-shadow 0.2s ease;
  box-shadow:0 2px 10px rgba(253,180,155,0.25);
}
.nav-links .nav-donate:hover{background:var(--coral-light);box-shadow:0 3px 14px rgba(253,180,155,0.35)}

/* ===== HAMBURGER & MOBILE MENU ===== */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none}
.hamburger span{display:block;width:24px;height:2px;background:var(--plum);border-radius:2px;transition:all 0.3s ease}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.mobile-menu{
  display:none;position:fixed;top:0;left:0;right:0;bottom:0;
  background:var(--cream);z-index:999;
  flex-direction:column;align-items:center;justify-content:center;gap:2rem;
  opacity:0;transition:opacity 0.3s ease;
}
.mobile-menu.open{display:flex;opacity:1}
.mobile-menu a{
  color:var(--plum);text-decoration:none;font-family:'Bebas Neue',sans-serif;
  font-size:2rem;letter-spacing:0.15em;transition:color 0.3s;
}
.mobile-menu a:hover{color:var(--coral)}
.mobile-menu .mobile-donate{
  margin-top:1rem;background:var(--coral);color:var(--plum);
  padding:0.8rem 2.5rem;border-radius:10px;font-size:1.5rem;
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero{
  background:linear-gradient(165deg,var(--plum-deep) 0%,var(--plum) 50%,var(--plum-light) 100%);
  padding:9rem 1.5rem 5rem;text-align:center;color:var(--white);
  position:relative;overflow:hidden;
}
.page-hero::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:120px;
  background:linear-gradient(to top,var(--cream),transparent);pointer-events:none;
}
.page-hero-inner{position:relative;z-index:1;max-width:700px;margin:0 auto}
.page-label{font-family:'Bebas Neue',sans-serif;font-size:0.85rem;letter-spacing:0.3em;color:var(--coral-light);text-transform:uppercase;margin-bottom:1rem}
.page-hero h1{font-family:'Playfair Display',serif;font-size:clamp(2.5rem,5vw,3.5rem);font-weight:900;line-height:1.1;margin-bottom:1.25rem}
.page-hero h1 em{font-style:italic;color:var(--coral-light)}
.page-hero p{font-size:1.1rem;color:rgba(255,255,255,0.8);max-width:560px;margin:0 auto;line-height:1.7}

/* ===== SECTION BASICS ===== */
.section{padding:4.5rem 1.5rem}
.section-inner{max-width:1100px;margin:0 auto}
.section-label{font-family:'Bebas Neue',sans-serif;font-size:0.85rem;letter-spacing:0.3em;color:#a0604a;text-transform:uppercase;margin-bottom:0.6rem}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(1.8rem,4vw,2.6rem);font-weight:900;color:var(--plum);margin-bottom:1.25rem;line-height:1.15}
.section-title em{font-style:italic;color:var(--coral)}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;gap:0.5rem;
  padding:0.85rem 2rem;border-radius:10px;
  text-decoration:none;font-weight:700;font-size:0.9rem;
  letter-spacing:0.04em;transition:all 0.3s ease;
  text-transform:uppercase;border:none;cursor:pointer;
}
.btn-primary{
  background:var(--plum);color:var(--white);
  box-shadow:0 3px 14px rgba(46,8,41,0.2);
}
.btn-primary:hover{background:var(--coral-light);color:var(--plum);box-shadow:0 4px 18px rgba(253,180,155,0.35)}
.btn-coral{background:var(--plum);color:var(--white);box-shadow:0 4px 20px rgba(253,180,155,0.35)}
.btn-coral:hover{background:var(--coral-light);transform:translateY(-2px)}
.btn-outline{
  background:transparent;color:var(--white);
  border:2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,0.06)}
.btn-ghost{background:rgba(255,255,255,0.1);color:var(--white);border:2px solid rgba(255,255,255,0.3)}
.btn-ghost:hover{background:rgba(255,255,255,0.18)}
.btn-group{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ===== POST HEADER & BODY (news articles) ===== */
.post-header{
  background:linear-gradient(165deg,var(--plum-deep) 0%,var(--plum) 50%,var(--plum-light) 100%);
  padding:9rem 1.5rem 5rem;text-align:center;color:var(--white);
  position:relative;overflow:hidden;
}
.post-header::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:120px;
  background:linear-gradient(to top,var(--cream),transparent);pointer-events:none;
}
.post-header-inner{position:relative;z-index:1;max-width:780px;margin:0 auto}
.post-back{
  display:inline-flex;align-items:center;gap:0.4rem;
  color:var(--coral-light);text-decoration:none;font-size:0.82rem;
  font-weight:700;letter-spacing:0.08em;text-transform:uppercase;
  margin-bottom:1.5rem;transition:color 0.25s;
}
.post-back:hover{color:var(--white)}
.post-back::before{content:'← '}
.post-tag{
  display:inline-block;font-size:0.72rem;font-weight:700;letter-spacing:0.12em;
  padding:0.25rem 0.75rem;border-radius:4px;text-transform:uppercase;
  margin-bottom:1rem;background:rgba(253,180,155,0.25);color:var(--coral-light);
}
.post-header h1{font-family:'Playfair Display',serif;font-size:clamp(2rem,5vw,3.2rem);font-weight:900;line-height:1.15;margin-bottom:1rem}
.post-header h1 em{font-style:italic;color:var(--coral-light)}
.post-byline{
  font-size:0.88rem;color:rgba(255,255,255,0.6);
  display:flex;align-items:center;justify-content:center;gap:1.25rem;flex-wrap:wrap;
}
.post-byline strong{color:var(--plum)}
.post-body-wrap{padding:4.5rem 1.5rem}
.post-body{max-width:720px;margin:0 auto}
.post-body p{font-size:1.05rem;color:var(--text-light);line-height:1.85;margin-bottom:1.4rem}
.post-body p strong{color:var(--text);font-weight:700}
.post-body h2{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:900;color:var(--plum);margin:2.5rem 0 1rem;line-height:1.2}
.post-body h3{font-family:'Playfair Display',serif;font-size:1.25rem;font-weight:700;color:var(--plum);margin:2rem 0 0.75rem}
.post-body ul,.post-body ol{margin:1rem 0 1.4rem 1.5rem}
.post-body li{font-size:1.02rem;color:var(--text-light);line-height:1.75;margin-bottom:0.4rem}
.post-body blockquote{
  border-left:4px solid var(--coral);padding:1rem 0 1rem 1.5rem;margin:2rem 0;
  font-family:'Playfair Display',serif;font-size:1.15rem;font-style:italic;
  color:var(--plum);line-height:1.6;
}
.post-body blockquote cite{
  display:block;font-style:normal;font-size:0.82rem;color:var(--text-light);
  margin-top:0.5rem;font-family:'Source Sans 3',sans-serif;font-weight:600;
  letter-spacing:0.05em;text-transform:uppercase;
}
.post-body hr{border:none;border-top:2px solid var(--cream-dark);margin:2.5rem 0}
.post-body a{color:var(--coral);font-weight:600;text-decoration:underline;text-decoration-color:rgba(253,180,155,0.4);transition:color 0.25s}
.post-body a:hover{color:var(--plum)}
.post-nav{
  display:flex;justify-content:space-between;align-items:center;
  padding:2rem 0;border-top:2px solid var(--cream-dark);margin-top:3rem;gap:1rem;flex-wrap:wrap;
}
.post-nav a{
  display:inline-flex;align-items:center;gap:0.4rem;font-weight:700;
  font-size:0.85rem;color:var(--plum);text-decoration:none;
  letter-spacing:0.04em;text-transform:uppercase;transition:color 0.25s;
}
.post-nav a:hover{color:var(--coral)}
.post-nav-back::before{content:'← '}
.post-nav-next::after{content:' →'}
.post-cta{background:linear-gradient(135deg,var(--plum-deep),var(--plum));padding:5rem 1.5rem;text-align:center;color:var(--white)}
.post-cta-inner{max-width:560px;margin:0 auto}
.post-cta h2{font-family:'Playfair Display',serif;font-size:clamp(1.6rem,3.5vw,2.2rem);font-weight:900;margin-bottom:1rem}
.post-cta p{font-size:1rem;color:rgba(255,255,255,0.8);margin-bottom:2rem;line-height:1.7}

/* ===== FOOTER ===== */
.connect{background:var(--cream-dark);color:var(--white);padding:4rem 1.5rem 2rem}
.connect-inner{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr 1fr;gap:3rem}
.connect h3{font-family:'Playfair Display',serif;font-size:1.3rem;margin-bottom:1rem;color:var(--plum)}
.connect p,.connect a{color:var(--text);font-size:0.9rem}
.connect a{text-decoration:none;transition:color 0.3s}
.connect a:hover{color:var(--coral)}
.social-links{display:flex;gap:1rem;margin-top:1rem}
.social-link{
  width:44px;height:44px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:var(--plum);text-decoration:none;font-size:0.85rem;
  transition:all 0.3s ease;
}
.social-link:hover{color:var(--coral);transform:scale(1.1)}
.signup-form{margin-top:1rem}
.signup-form input[type="email"]{
  width:100%;padding:0.75rem 1rem;
  border:1px solid rgba(71,13,68,0.15);
  border-radius:10px;color:var(--text);font-size:0.9rem;
  margin-bottom:0.75rem;outline:none;
  font-family:'Source Sans 3',sans-serif;
  background:var(--white);
}
.signup-form input[type="email"]::placeholder{color:var(--text-light)}
.signup-form input[type="email"]:focus{border-color:var(--plum)}
.signup-form button{
  width:100%;padding:0.75rem;
  background:var(--plum);border:none;border-radius:10px;
  color:var(--cream);font-weight:700;font-size:0.85rem;
  letter-spacing:0.08em;text-transform:uppercase;cursor:pointer;
  transition:all 0.3s ease;font-family:'Source Sans 3',sans-serif;
}
.signup-form button:hover{background:var(--plum-light);box-shadow:0 2px 8px rgba(46,8,41,0.15)}
.footer-bottom{
  max-width:1000px;margin:3rem auto 0;
  padding-top:2rem;border-top:1px solid rgba(71,13,68,0.1);
  text-align:center;color:var(--text-light);font-size:0.8rem;
}
.footer-bottom p{margin-bottom:0.3rem}

/* ===== SCROLL ANIMATIONS ===== */
.reveal{opacity:0;transform:translateY(24px);transition:all 0.7s cubic-bezier(0.16,1,0.3,1)}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:0.1s}
.reveal-delay-2{transition-delay:0.2s}
.reveal-delay-3{transition-delay:0.3s}

@keyframes fadeSlideUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:translateY(0)}
}

/* ===== RESPONSIVE — SHARED BREAKPOINTS ===== */
@media(max-width:1024px){
  .nav-links{display:none}
  .hamburger{display:flex}
}
@media(max-width:768px){
  .nav-socials{margin-left:0;margin-right:auto;gap:0.6rem}
  .nav-socials a svg{width:20px;height:20px}
  .connect-inner{grid-template-columns:1fr}
}
@media(max-width:480px){
  .section{padding:3.5rem 1.25rem}
  .post-body-wrap{padding:3rem 1.25rem}
}
@media(min-width:1024px){
  .page-hero{padding:11rem 3rem 7rem}
  .section{padding:6rem 3rem}
  .post-header{padding:11rem 3rem 6rem}
  .post-body-wrap{padding:6rem 3rem}
  .post-cta{padding:7rem 3rem}
}
@media(max-height:500px) and (orientation:landscape){
  .page-hero{padding:5rem 1.5rem 2.5rem}
}
