/* ============================================
   WOODSTOCK CENTER FOR AWAKENING
   Shared Stylesheet — v6.3
   ============================================ */

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

:root {
    --festival-blue: #2367a7;
    --festival-yellow: #fbe056;
    --festival-green: #7cb342;
    --forest: #3d4f3e;
    --gold: #d4a574;
    --rust: #a8635f;
    --cream: #f9f7f3;
    --white: #fefefe;
    --sage: #9cae91;
    --dark: #1a1a1a;
    --font-body: 'Lato', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

body {
    font-family: var(--font-body);
    color: var(--forest);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.3s ease; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

/* ============================================
   NAVIGATION — white bg, logo image + text
   ============================================ */

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); }

.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0.75rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
}

.logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; transition: opacity 0.3s ease;
}
.logo:hover { opacity: 0.7; }
.logo-icon { height: 40px; width: auto; }
.logo-text {
    font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--dark);
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--dark); font-weight: 400;
    font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase;
    position: relative; transition: color 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--festival-blue); }
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
    display: none; background: none; border: none;
    font-size: 1.5rem; color: var(--dark); cursor: pointer; padding: 0.25rem;
}

.mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    color: var(--dark); text-decoration: none; font-size: 1.4rem;
    font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase;
    transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--festival-blue); }
.mobile-menu-close {
    position: absolute; top: 1.25rem; right: 3rem;
    background: none; border: none; color: var(--dark); font-size: 2rem; cursor: pointer;
}

/* ============================================
   PAGE HEROES
   ============================================ */

.page-hero {
    min-height: 50vh; display: flex; align-items: center; justify-content: center;
    text-align: center; margin-top: 65px; padding: 5rem 2rem;
    position: relative; overflow: hidden;
}
.page-hero--image { color: var(--white); }
.page-hero--image::before {
    content: ''; position: absolute; inset: 0;
    background-size: cover; background-position: center; opacity: 0.4; z-index: 0;
}
.page-hero--image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(35,103,167,0.7) 0%, rgba(26,80,128,0.8) 100%);
    z-index: 0;
}
.page-hero__content { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 {
    font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400; margin-bottom: 1rem; line-height: 1.2;
}
.page-hero p { font-size: 1.3rem; font-style: italic; opacity: 0.9; }

/* ============================================
   SECTIONS
   ============================================ */

section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700; margin-bottom: 1rem; color: var(--festival-blue);
}
.section-header p { font-size: 1.1rem; color: var(--forest); opacity: 0.7; font-style: italic; }

/* ============================================
   QUOTES
   ============================================ */

.quote-callout {
    background: linear-gradient(135deg, var(--cream), #ede9e1);
    padding: 3rem 3rem 3rem 3.5rem; margin: 4rem auto; max-width: 900px;
    border-left: 4px solid var(--festival-yellow); position: relative;
}
.quote-callout::before {
    content: '\201C'; position: absolute; top: -10px; left: 20px;
    font-size: 6rem; font-family: var(--font-display); color: var(--festival-yellow);
    opacity: 0.4; line-height: 1;
}
.quote-callout blockquote {
    font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
    line-height: 1.7; margin-bottom: 1rem; color: var(--forest);
}
.quote-callout cite {
    display: block; text-align: right; font-size: 0.95rem;
    font-style: normal; color: var(--festival-blue); font-weight: 700;
}

.quote-break {
    background: var(--forest); color: var(--cream); padding: 4rem 3rem; text-align: center;
}
.quote-break blockquote {
    font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-style: italic; max-width: 800px; margin: 0 auto 1.5rem; line-height: 1.6;
}
.quote-break cite { font-size: 1rem; font-weight: 700; opacity: 0.8; font-style: normal; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block; padding: 1rem 2.5rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem;
    text-decoration: none; transition: all 0.3s ease; cursor: pointer;
    border: 2px solid transparent;
}
.btn--primary { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn--primary:hover { background: transparent; color: var(--forest); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(45,58,46,0.15); }
.btn--secondary { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--secondary:hover { background: var(--forest); color: var(--white); }
.btn--blue { background: var(--festival-blue); color: var(--white); border-color: var(--festival-blue); }
.btn--blue:hover { background: var(--festival-green); border-color: var(--festival-green); }
.btn--yellow { background: var(--festival-yellow); color: var(--festival-blue); border-color: var(--festival-yellow); }
.btn--yellow:hover { background: var(--white); color: var(--festival-blue); }

/* ============================================
   FOOTER — white bg, logo, Connect only (no Explore list)
   ============================================ */

footer {
    background: var(--white); color: var(--dark);
    padding: 4rem 3rem 2rem; border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-newsletter {
    max-width: 700px; margin: 0 auto 4rem; text-align: center;
    padding: 3rem; background: var(--cream); border-radius: 8px;
}
.footer-newsletter h3 {
    font-family: var(--font-display); font-size: 1.6rem;
    margin-bottom: 0.75rem; color: var(--festival-blue);
}
.footer-newsletter p { margin-bottom: 1.5rem; opacity: 0.8; }

.newsletter-form { display: flex; gap: 0.5rem; max-width: 450px; margin: 0 auto; }
.newsletter-form input {
    flex: 1; padding: 0.85rem 1rem; border: 1px solid rgba(0,0,0,0.15);
    border-radius: 4px; font-family: var(--font-body); font-size: 0.95rem; background: var(--white);
}
.newsletter-form button {
    padding: 0.85rem 1.75rem; background: var(--festival-blue); color: var(--white);
    border: none; border-radius: 4px; font-weight: 700; font-family: var(--font-body);
    cursor: pointer; transition: background 0.3s ease; text-transform: uppercase;
    letter-spacing: 0.05em; font-size: 0.85rem;
}
.newsletter-form button:hover { background: var(--forest); }

.footer-main {
    display: flex; justify-content: center; align-items: flex-start; gap: 6rem;
    max-width: 900px; margin: 0 auto 3rem; flex-wrap: wrap;
}

.footer-logo-section { text-align: center; }
.footer-logo-section img { max-width: 200px; margin: 0 auto 1rem; }
.footer-tagline {
    font-family: var(--font-display); font-style: italic; opacity: 0.6; font-size: 0.95rem;
}

.footer-section h4 {
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 1.25rem; color: var(--festival-blue);
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section a {
    color: var(--dark); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease;
}
.footer-section a:hover { color: var(--festival-blue); }

.footer-bottom {
    text-align: center; padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08); opacity: 0.6; font-size: 0.85rem;
}
.footer-bottom p { margin-bottom: 0.4rem; }
.footer-motto {
    margin-top: 1rem; font-family: var(--font-display);
    font-style: italic; font-weight: 400; font-size: 0.95rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in { opacity: 1; transform: translateY(0); }
body.js-ready .fade-in { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
body.js-ready .fade-in.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-container { padding: 0.75rem 1.5rem; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .logo-text { font-size: 0.75rem; }
    .logo-icon { height: 32px; }
    .container { padding: 0 1.5rem; }
    section { padding: 4rem 0; }
    .page-hero { min-height: 40vh; padding: 4rem 1.5rem; margin-top: 55px; }
    .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .quote-callout { padding: 2rem 2rem 2rem 2.5rem; margin: 3rem 1.5rem; }
    .quote-callout::before { font-size: 4rem; }
    .quote-break { padding: 3rem 1.5rem; }
    .footer-main { flex-direction: column; align-items: center; gap: 2rem; }
    .newsletter-form { flex-direction: column; }
    footer { padding: 3rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
    .page-hero { min-height: 35vh; }
    .logo-text { font-size: 0.7rem; }
}

/* ============================================
   PHOTO BANDS (4-image spread trope)
   ============================================ */
.photo-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; }
.photo-band img { width: 100%; height: 220px; object-fit: cover; }
@media (max-width: 768px) {
    .photo-band { grid-template-columns: repeat(2, 1fr); }
    .photo-band img { height: 160px; }
}
