/* ============================================================
   DorothyJeanius.com - Shared Styles
   Dr. Dorothy Jean Tillman II
   Colors: Navy #0d0d30 | Gold #d4a843 | Cream #faf8f4
   Fonts: Bebas Neue (headings) | Montserrat (body) | Playfair Display (accents)
   ============================================================ */

:root {
    --navy: #0d0d30;
    --navy-mid: #141445;
    --navy-light: #1e1e55;
    --gold: #d4a843;
    --gold-light: #e8c06a;
    --gold-pale: #f5dfa0;
    --white: #ffffff;
    --cream: #faf8f4;
    --text-light: #d8d4cc;
    --text-dark: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
}

.accent-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

/* ========== NAV ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 48, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-logo span {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    font-weight: 700 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(13, 13, 48, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
}

.nav-overlay.show {
    display: flex;
}

.nav-overlay a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    padding: 16px 0;
    transition: color 0.3s;
}

.nav-overlay a:hover { color: var(--gold); }

.nav-overlay .nav-cta-mobile {
    margin-top: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.4rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-navy {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, #c49530 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text { color: var(--white); }

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.05;
    margin-bottom: 12px;
    white-space: nowrap;
}

.hero-credentials {
    font-size: 0.9rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-photo {
    position: relative;
    z-index: 3;
}

.hero-photo img {
    width: 380px;
    height: 450px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.hero-photo-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: var(--navy);
    border: 2px solid var(--gold);
    padding: 12px 20px;
    border-radius: 8px;
}

.hero-photo-badge .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.hero-photo-badge .label {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== MEDIA BAR ========== */
.media-bar {
    background: var(--cream);
    padding: 36px 60px;
    text-align: center;
}

.media-bar p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.media-logo {
    font-size: 1.1rem;
    color: #999;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.media-logo:hover { opacity: 1; }
.media-logo.serif { font-family: Georgia, 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; }
.media-logo.bold { font-family: 'Montserrat', sans-serif; font-weight: 800; }
.media-logo.cnn { color: #cc0000; font-weight: 900; }

/* ========== BOOK SECTION ========== */
.book-section {
    background: var(--white);
    padding: 100px 60px;
}

.book-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.book-cover {
    position: relative;
}

.book-cover img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.book-cover img:hover {
    transform: rotate(-2deg) translateY(-4px);
}

.book-ribbon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
}

.book-info .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.book-info .section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.book-info h2 {
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 8px;
}

.book-author {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #777;
    margin-bottom: 20px;
    font-size: 1rem;
}

.book-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.book-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== ABOUT ========== */
.about-section {
    background: var(--navy);
    padding: 100px 60px;
    position: relative;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text-area .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text-area .section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.about-text-area h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-paragraph {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.credentials-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.cred-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-left: 3px solid var(--gold);
    padding: 18px;
    border-radius: 6px;
}

.cred-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.cred-item p {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
}

.about-image-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image-area img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.steam-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.steam-logo-row img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: none;
}

.steam-logo-row p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

.steam-logo-row p strong {
    color: var(--gold);
    display: block;
    font-size: 0.9rem;
}

/* ========== TIMELINE ========== */
.timeline-section {
    background: var(--cream);
    padding: 80px 60px;
}

.timeline-section > .inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.timeline-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 48px;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--navy-light), var(--gold));
    border-radius: 2px;
}

.tl-item {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 2;
}

.tl-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, background 0.3s;
}

.tl-dot:hover {
    transform: scale(1.1);
    background: var(--gold);
}

.tl-dot:hover .tl-age {
    color: var(--navy);
}

.tl-age {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    transition: color 0.3s;
}

.tl-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.tl-desc {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* ========== SPEAKING ========== */
.speaking-section {
    background: var(--navy);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.speaking-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06), transparent 70%);
    border-radius: 50%;
}

.speaking-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.speaking-inner .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.speaking-inner h2 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.speaking-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold-light);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.speaking-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 0.9rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.topics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.topic {
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--gold-light);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.speaking-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 36px;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
}

.stat-lbl {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== STEAM INSTITUTE ========== */
.steam-section {
    background: var(--white);
    padding: 80px 60px;
}

.steam-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.steam-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.steam-header img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.steam-inner > p {
    color: #777;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-size: 0.9rem;
}

.steam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.steam-card {
    background: var(--cream);
    padding: 36px 20px;
    border-radius: 10px;
    border-bottom: 3px solid var(--gold);
    transition: transform 0.3s;
}

.steam-card:hover { transform: translateY(-4px); }

.steam-card .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--navy);
}

.steam-card .num span { color: var(--gold); }

.steam-card .lbl {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
    line-height: 1.4;
}

/* ========== PRESS SECTION (home page) ========== */
.press-section {
    background: var(--cream);
    padding: 80px 60px;
}

.press-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.press-inner h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 36px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.press-card {
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    text-align: left;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    border-top: 3px solid transparent;
}

.press-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border-top-color: var(--gold);
}

.press-src {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}

.press-hl {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 600;
}

.press-yr {
    font-size: 0.7rem;
    color: #bbb;
    margin-top: 10px;
}

/* ========== CONTACT ========== */
.contact-section {
    background: var(--navy);
    padding: 100px 60px;
}

.contact-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-desc {
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #555; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }

.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { background: var(--navy); color: var(--white); }
.contact-form textarea { height: 110px; resize: vertical; }

.contact-form button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 16px 48px;
    border-radius: 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: center;
}

.contact-form button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
footer {
    background: #080818;
    padding: 40px 60px 28px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.footer-brand span {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.footer-nav {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-nav a {
    color: #777;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: #555;
    font-size: 1.1rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 28px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    color: #444;
    font-size: 0.7rem;
}

/* ========== DONATE ========== */
.donate-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.4);
    transition: all 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.5);
}

/* ========== PAGE HERO BANNER (for inner pages) ========== */
.page-hero {
    background: var(--navy);
    padding: 140px 60px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== UPCOMING EVENTS (home) ========== */
.events-preview {
    background: var(--cream);
    padding: 80px 60px;
}

.events-preview .inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.events-preview h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 36px;
}

.featured-event-card {
    background: var(--white);
    border-radius: 12px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: left;
    border-left: 5px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.featured-event-card .event-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.featured-event-card h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.featured-event-card .event-location {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-event-card .event-desc {
    color: #555;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ========== PRESS PAGE SPECIFIC ========== */
.tier1-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 48px 0;
    max-width: 900px;
    margin: 0 auto;
}

.tier1-logo {
    font-size: 1.4rem;
    color: #777;
    transition: color 0.3s;
    text-decoration: none;
}

.tier1-logo:hover { color: var(--navy); }
.tier1-logo.serif { font-family: Georgia, 'Playfair Display', serif; font-style: italic; font-size: 1.6rem; }
.tier1-logo.bold { font-family: 'Montserrat', sans-serif; font-weight: 800; }
.tier1-logo.cnn { color: #cc0000; font-weight: 900; }

/* Press filter buttons */
.press-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--navy);
    border-radius: 30px;
    background: transparent;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--gold);
}

/* TV appearances */
.tv-section {
    background: var(--navy);
    padding: 80px 60px;
}

.tv-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.tv-inner h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 36px;
}

.tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 8px;
    padding: 28px 20px;
    transition: border-color 0.3s;
}

.tv-card:hover {
    border-color: var(--gold);
}

.tv-card .show-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.tv-card .show-date {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 4px;
}

.tv-card .show-type {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== BOOK PAGE SPECIFIC ========== */
.book-hero {
    background: var(--navy);
    padding: 140px 60px 80px;
    position: relative;
    overflow: hidden;
}

.book-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.book-hero-cover img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.book-hero-info h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.book-hero-info .book-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.book-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.book-meta-item {
    text-align: left;
}

.book-meta-item .meta-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 4px;
}

.book-meta-item .meta-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.book-description-section {
    background: var(--cream);
    padding: 80px 60px;
}

.book-description-inner {
    max-width: 800px;
    margin: 0 auto;
}

.book-description-inner h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 24px;
    text-align: center;
}

.book-description-inner p {
    color: #555;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 16px;
}

.first-book-section {
    background: var(--white);
    padding: 80px 60px;
}

.first-book-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.first-book-inner h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.first-book-inner p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.author-bio-section {
    background: var(--navy);
    padding: 80px 60px;
}

.author-bio-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.author-bio-inner img {
    width: 200px;
    height: 240px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.author-bio-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.author-bio-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ========== EVENTS PAGE SPECIFIC ========== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.event-card-header {
    background: var(--navy);
    padding: 24px;
    position: relative;
}

.event-card-header .event-type-tag {
    display: inline-block;
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.event-card-header h3 {
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1.2;
}

.event-card-body {
    padding: 24px;
}

.event-card-body .event-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #555;
}

.event-card-body .event-detail i {
    color: var(--gold);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.event-card-body .event-desc-short {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 12px;
}

.past-events-section {
    background: var(--cream);
    padding: 80px 60px;
}

.past-events-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 36px;
    text-align: center;
}

.past-event-item {
    background: var(--white);
    border-radius: 8px;
    padding: 24px 32px;
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s;
}

.past-event-item:hover {
    transform: translateX(4px);
}

.past-event-date-badge {
    min-width: 80px;
    text-align: center;
}

.past-event-date-badge .pe-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--navy);
    line-height: 1;
}

.past-event-date-badge .pe-type {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 600;
}

.past-event-info h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.past-event-info p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
}

.past-event-info .pe-org {
    font-weight: 600;
    color: #555;
}

/* Section divider utility */
.section-divider {
    padding: 80px 60px;
}

.section-center {
    text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-bg-accent { display: none; }
    .hero-photo img { width: 280px; height: 340px; margin: 0 auto; display: block; }
    .hero-photo-badge { display: none; }
    .hero-tag { padding-left: 0; }
    .hero-tag::before { display: none; }
    .hero-description { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .book-inner { grid-template-columns: 220px 1fr; gap: 40px; }
    .about-inner { grid-template-columns: 1fr; }
    .timeline { flex-wrap: wrap; gap: 24px; }
    .timeline::before { display: none; }
    .press-grid { grid-template-columns: 1fr 1fr; }
    .steam-grid { grid-template-columns: 1fr 1fr; }
    .credentials-list { grid-template-columns: 1fr; }
    .book-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .book-hero-cover img { margin: 0 auto; display: block; max-width: 300px; }
    .book-meta { justify-content: center; }
    .author-bio-inner { grid-template-columns: 1fr; text-align: center; }
    .author-bio-inner img { margin: 0 auto; }
    .featured-event-card { padding: 32px; }
    .past-event-item { flex-direction: column; text-align: center; }
    .tier1-logos { gap: 28px; }
}

@media (max-width: 600px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 100px 24px 60px; }
    .hero-inner { padding: 0; }
    .hero h1 { font-size: 1.8rem; white-space: nowrap; }
    .book-inner { grid-template-columns: 1fr; text-align: center; }
    .book-buttons { justify-content: center; }
    .press-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .steam-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 24px 40px; }
    .page-hero h1 { font-size: 2.5rem; }
    .book-hero { padding: 120px 24px 60px; }
    .book-hero-inner { gap: 32px; }
    .book-hero-info h1 { font-size: 2.5rem; }
    .speaking-stats { gap: 24px; }
    .events-grid { grid-template-columns: 1fr; }
    .tv-grid { grid-template-columns: 1fr 1fr; }
    .media-bar { padding: 24px 20px; }
    .media-logos { gap: 20px; }
    .section-divider { padding: 60px 24px; }
    .book-section { padding: 60px 24px; }
    .about-section { padding: 60px 24px; }
    .speaking-section { padding: 60px 24px; }
    .steam-section { padding: 60px 24px; }
    .press-section { padding: 60px 24px; }
    .contact-section { padding: 60px 24px; }
    .events-preview { padding: 60px 24px; }
    .timeline-section { padding: 60px 24px; }
    footer { padding: 32px 24px 20px; }
    .tv-section { padding: 60px 24px; }
    .book-description-section { padding: 60px 24px; }
    .first-book-section { padding: 60px 24px; }
    .author-bio-section { padding: 60px 24px; }
    .past-events-section { padding: 60px 24px; }
}

@media (max-width: 420px) {
    .hero h1 { font-size: 1.5rem; white-space: nowrap; }
}

/* ============================================================
   CMS DYNAMIC CONTENT STYLES
   Event images, date badges, placeholders, featured press,
   loading skeletons, and empty states
   ============================================================ */

/* ========== EVENT CARDS WITH IMAGES ========== */
.event-card {
    display: flex;
    flex-direction: column;
}

.event-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: var(--navy);
}

.event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

/* Event date badge overlay */
.event-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Navy/gold placeholder when no image */
.event-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-img-placeholder span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.25;
    letter-spacing: 6px;
}

/* When .event-image and .event-img-placeholder are on the SAME element
   (no real image, just the DJ placeholder), we need a fixed height instead
   of padding-top trick. The padding-top trick only works when there's an
   absolutely-positioned child image inside. Without it, the padding just
   makes the box huge and pushes content below the overflow:hidden clip. */
.event-image.event-img-placeholder {
    padding-top: 0;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Event content area below image */
.event-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.event-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 8px;
    flex: 1;
}

.event-type-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.12);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.event-meta {
    font-size: 0.8rem;
    color: #777;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.event-meta i {
    color: var(--gold);
    margin-top: 2px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.event-actions {
    margin-top: 16px;
}

/* Featured event image on events page */
.featured-event-image {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.featured-event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-event-image .event-date-badge {
    top: 16px;
    right: 16px;
    font-size: 1rem;
    padding: 8px 18px;
}

/* Home page event image */
.home-event-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.home-event-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ========== PRESS CARDS WITH FEATURED IMAGES ========== */
.press-card-featured {
    background: var(--white);
    padding: 0 0 28px 0;
    border-radius: 8px;
    text-align: left;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    border-top: none;
    overflow: hidden;
}

.press-card-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.press-card-featured .press-src,
.press-card-featured .press-hl,
.press-card-featured .press-yr {
    padding-left: 28px;
    padding-right: 28px;
}

.press-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 16px;
}

.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.press-card-featured:hover .press-card-image img {
    transform: scale(1.05);
}

/* ========== LOADING SKELETONS ========== */
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton-featured,
.skeleton-card,
.skeleton-past {
    background: var(--white);
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.skeleton-card {
    padding: 0;
    overflow: hidden;
}

.skeleton-card .skeleton-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-card .skeleton-line {
    margin: 16px;
}

.skeleton-past {
    max-width: 900px;
    margin: 0 auto 16px;
    padding: 24px 32px;
}

.skeleton-line {
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite linear;
    margin-bottom: 12px;
}

.skeleton-line-xs { width: 60px; }
.skeleton-line-sm { width: 120px; }
.skeleton-line-md { width: 250px; }
.skeleton-line-lg { width: 350px; height: 24px; }
.skeleton-line-full { width: 100%; }

/* ========== EMPTY STATES ========== */
.empty-state {
    background: var(--white);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.empty-state i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.empty-state p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== RSVP & EVENT ACTION BUTTONS ========== */
.event-actions .btn {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.event-actions .btn-rsvp {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.event-actions .btn-rsvp:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 168, 67, 0.3);
}

/* Home page event preview cards */
.home-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.home-event-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.home-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.home-event-card .event-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--navy);
}

.home-event-card .event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.home-event-card:hover .event-image img {
    transform: scale(1.05);
}

.home-event-card .event-content {
    padding: 24px;
}

.home-event-card .event-content h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.home-event-card .event-content .event-meta {
    font-size: 0.8rem;
    color: #777;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.home-event-card .event-content .event-meta i {
    color: var(--gold);
    margin-top: 2px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.home-event-card .event-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 8px;
}

/* Press year filter empty state */
.press-grid-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: #999;
    font-size: 0.9rem;
}

/* ========== LOCATION TYPE DISPLAY ========== */
.event-location-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-location-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #777;
    flex-wrap: wrap;
}

.event-location-row i {
    flex-shrink: 0;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid var(--gold);
    border-radius: 20px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-directions:hover {
    background: var(--gold);
    color: var(--navy);
}

.virtual-badge,
.hybrid-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

.virtual-badge {
    background: rgba(13, 13, 48, 0.06);
    color: var(--navy);
}

.hybrid-badge {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
}

.virtual-badge-sm,
.hybrid-badge-sm {
    font-weight: 600;
    font-size: 0.8rem;
}

.virtual-badge-sm {
    color: var(--navy);
}

.hybrid-badge-sm {
    color: var(--gold);
}

/* ========== RSVP INLINE FORM ========== */
.rsvp-form-container {
    margin-top: 0;
}

.rsvp-inline-form {
    background: var(--cream);
    border: 2px solid rgba(212, 168, 67, 0.2);
    border-radius: 10px;
    padding: 28px;
    margin-top: 20px;
    animation: rsvpSlideIn 0.3s ease;
}

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

.rsvp-inline-form h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--navy);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rsvp-inline-form h4 i {
    color: var(--gold);
}

.rsvp-field {
    margin-bottom: 14px;
}

.rsvp-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.rsvp-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid rgba(13, 13, 48, 0.12);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s;
}

.rsvp-input:focus {
    outline: none;
    border-color: var(--gold);
}

.rsvp-input::placeholder {
    color: #aaa;
}

select.rsvp-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b7280'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

textarea.rsvp-input {
    resize: vertical;
    min-height: 60px;
}

.rsvp-field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.rsvp-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.rsvp-form-actions .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
}

.rsvp-error {
    display: none;
    color: #dc2626;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(220, 38, 38, 0.06);
    border-radius: 6px;
}

.rsvp-confirmed {
    background: rgba(22, 163, 74, 0.08);
    border: 2px solid rgba(22, 163, 74, 0.2);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 20px;
    color: #16a34a;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: rsvpSlideIn 0.3s ease;
}

.rsvp-confirmed i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ========== CMS RESPONSIVE ADDITIONS ========== */
@media (max-width: 900px) {
    .featured-event-image img { height: 280px; }
    .home-event-image img { height: 220px; }
    .press-card-image { height: 150px; }
    .home-events-grid { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 600px) {
    .event-date-badge { font-size: 0.75rem; padding: 4px 10px; }
    .featured-event-image img { height: 200px; }
    .home-event-image img { height: 180px; }
    .press-card-image { height: 140px; }
    .press-card-featured .press-src,
    .press-card-featured .press-hl,
    .press-card-featured .press-yr { padding-left: 16px; padding-right: 16px; }
    .empty-state { padding: 40px 24px; }
    .home-events-grid { grid-template-columns: 1fr; }
    .rsvp-inline-form { padding: 20px 16px; }
    .rsvp-form-actions { flex-direction: column; }
    .rsvp-form-actions .btn { width: 100%; justify-content: center; }
    .event-location-row { flex-wrap: wrap; font-size: 0.85rem; }
    .btn-directions { margin-top: 4px; }
}

/* ============================================================
   ACCESSIBILITY
   Screen reader utilities, focus styles, skip navigation,
   and WCAG AA contrast fixes
   ============================================================ */

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sr-only:focus, .sr-only.focus\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 8px 16px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    z-index: 10000;
}

/* Focus outlines for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* WCAG AA contrast fixes:
   Gold (#d4a843) on white (#ffffff) = ~2.4:1 ratio (FAILS AA)
   Darkened gold (#996d1c) on white = ~4.6:1 ratio (PASSES AA for normal text)
   Gold on cream (#faf8f4) also fails. Use --gold-accessible instead. */
:root {
    --gold-accessible: #996d1c;
}

/* Fix: section labels on white/cream backgrounds */
.book-info .section-label {
    color: var(--gold-accessible);
}
.book-info .section-label::before {
    background: var(--gold-accessible);
}

/* Fix: press source text on white cards */
.press-src {
    color: var(--gold-accessible);
}

/* Fix: event type badge (gold on white/cream) */
.event-type-badge {
    color: var(--gold-accessible);
}

/* Fix: past event type text on white */
.past-event-date-badge .pe-type {
    color: var(--gold-accessible);
}

/* Fix: hybrid badge (gold text on light background) */
.hybrid-badge {
    color: var(--gold-accessible);
}
.hybrid-badge-sm {
    color: var(--gold-accessible);
}

/* Fix: featured event date on white card */
.featured-event-card .event-date {
    color: var(--gold-accessible);
}

/* Fix: event meta icons on white */
.event-meta i {
    color: var(--gold-accessible);
}
.event-card-body .event-detail i {
    color: var(--gold-accessible);
}

/* Fix: btn-directions text on white */
.btn-directions {
    color: var(--gold-accessible);
    border-color: var(--gold-accessible);
}

/* Legal/policy page styles */
.legal-section {
    background: var(--white);
    padding: 80px 60px;
}

.legal-inner {
    max-width: 800px;
    margin: 0 auto;
}

.legal-inner h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 16px;
    margin-top: 40px;
}

.legal-inner h2:first-child {
    margin-top: 0;
}

.legal-inner p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.legal-inner ul {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-inner ul li {
    margin-bottom: 6px;
}

.legal-inner a {
    color: var(--gold-accessible);
    text-decoration: underline;
}

.legal-inner a:hover {
    color: var(--navy);
}

.legal-updated {
    font-size: 0.85rem;
    color: #999;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.legal-disclaimer {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    margin-top: 24px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .legal-section { padding: 60px 24px; }
    .legal-inner h2 { font-size: 1.6rem; }
}
