/* ========================================
   ART DECO RETRO-FUTURISTIC THEME
   Theodore "Uncle Teddy" Acklen Memorial Site
   ======================================== */

:root {
    /* Art Deco Color Palette */
    --gold: #D4AF37;
    --dark-gold: #B8941E;
    --bronze: #CD7F32;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --cream: #F5F5DC;
    --ivory: #FFFFF0;
    --burgundy: #800020;
    --navy: #001F3F;
    --copper: #B87333;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    --radial-gold: radial-gradient(circle, var(--gold) 0%, var(--dark-gold) 100%);
    --sunburst: conic-gradient(from 0deg, var(--gold), var(--bronze), var(--gold), var(--bronze), var(--gold));

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px; /* Account for fixed nav */
}

/* ========================================
   NAVIGATION - ART DECO STYLE
   ======================================== */

.art-deco-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--gold);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.nav-ornament {
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    position: relative;
}

.nav-ornament::before,
.nav-ornament::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    transform: rotate(45deg);
}

.nav-ornament.left::before {
    left: -5px;
    top: -3.5px;
}

.nav-ornament.right::after {
    right: -5px;
    top: -3.5px;
}

.nav-content {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--navy) 50%, var(--charcoal) 100%);
    overflow: hidden;
}

.hero-sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: var(--sunburst);
    opacity: 0.1;
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 40px;
}

.deco-frame {
    border: 4px solid var(--gold);
    padding: 60px 80px;
    position: relative;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(10px);
}

.deco-frame::before,
.deco-frame::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid var(--gold);
}

.deco-frame::before {
    top: -4px;
    left: -4px;
    border-right: none;
    border-bottom: none;
}

.deco-frame::after {
    bottom: -4px;
    right: -4px;
    border-left: none;
    border-top: none;
}

.hero-title {
    font-family: var(--font-display);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.title-main {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)); }
}

.hero-subtitle {
    margin: 30px 0;
    font-size: 1.8rem;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.year {
    color: var(--gold);
    font-weight: 700;
}

.divider {
    color: var(--gold);
    font-size: 1rem;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--cream);
    font-style: italic;
    margin-top: 20px;
}

.hero-tagline i {
    color: var(--gold);
    margin: 0 10px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.header-ornament {
    width: 150px;
    height: 2px;
    background: var(--gold-gradient);
    position: relative;
}

.header-ornament::before,
.header-ornament::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    transform: rotate(45deg);
    top: -5px;
}

.header-ornament::before {
    left: 0;
}

.header-ornament::after {
    right: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BIOGRAPHY SECTION
   ======================================== */

.biography-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.deco-photo-frame {
    position: relative;
    padding: 20px;
    background: var(--charcoal);
    border: 3px solid var(--gold);
}

.deco-photo-frame::before,
.deco-photo-frame::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--gold);
}

.deco-photo-frame::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.deco-photo-frame::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

.bio-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(30%) contrast(110%);
    transition: all 0.5s ease;
}

.bio-photo:hover {
    filter: sepia(0%) contrast(100%);
    transform: scale(1.02);
}

.photo-caption {
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bio-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border: 2px solid var(--gold);
    border-left: 8px solid var(--gold);
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.bio-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(212, 175, 55, 0.3);
    border-left-color: var(--bronze);
}

.card-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.bio-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bio-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
}

.achievement-list {
    list-style: none;
    margin-top: 15px;
}

.achievement-list li {
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
}

.achievement-list li i {
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

/* ========================================
   DEL MOROCCO SECTION
   ======================================== */

.del-morocco-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy) 0%, var(--black) 100%);
    position: relative;
}

.club-hero {
    text-align: center;
    margin-bottom: 80px;
}

.club-marquee {
    display: inline-block;
    padding: 40px 80px;
    background: var(--black);
    border: 4px solid var(--gold);
    position: relative;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

.marquee-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.marquee-lights::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dotted var(--gold);
    animation: marqueeRotate 3s linear infinite;
}

@keyframes marqueeRotate {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.club-name {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.club-address {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--cream);
    margin-top: 15px;
    letter-spacing: 3px;
}

.club-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.club-info-card {
    background: rgba(26,26,26,0.7);
    border: 2px solid var(--gold);
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.club-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1));
    transition: width 0.4s ease;
}

.club-info-card:hover::before {
    width: 100%;
}

.club-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--radial-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
}

.club-info-card h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.club-info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 15px;
}

.club-info-card strong {
    color: var(--gold);
    font-weight: 600;
}

.performers-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.performer-badge {
    background: var(--charcoal);
    border: 1px solid var(--gold);
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.performer-badge:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

.performer-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

.performer-badge:hover i {
    color: var(--black);
}

.legends-card,
.memorial-card {
    grid-column: span 2;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */

.timeline-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.timeline-controls {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.timeline-btn {
    background: var(--gold-gradient);
    color: var(--black);
    border: none;
    padding: 15px 40px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.timeline-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.timeline-slider-container {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.timeline-slider {
    width: 100%;
    height: 10px;
    background: var(--charcoal);
    border: 2px solid var(--gold);
    outline: none;
    -webkit-appearance: none;
    border-radius: 5px;
}

.timeline-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.timeline-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.timeline-year-display {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-gradient);
    transform: translateX(-50%);
}

.timeline-events {
    position: relative;
}

.timeline-event {
    position: relative;
    margin: 60px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-event.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-event.left .event-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-event.right .event-content {
    margin-left: 55%;
}

.event-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--black);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    z-index: 10;
}

.event-content {
    background: var(--charcoal);
    border: 2px solid var(--gold);
    padding: 30px;
    position: relative;
}

.event-year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}

.event-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 10px;
}

.event-description {
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========================================
   FAMILY TREE SECTION
   ======================================== */

.family-tree-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--black) 0%, var(--navy) 100%);
}

.tree-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tree-btn {
    background: rgba(26,26,26,0.8);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 25px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tree-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

.family-tree-viz {
    width: 100%;
    height: 800px;
    background: rgba(10,10,10,0.5);
    border: 3px solid var(--gold);
    overflow: hidden;
    position: relative;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold);
    cursor: pointer;
    aspect-ratio: 1;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: sepia(40%) brightness(90%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: sepia(0%) brightness(100%);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-item-description {
    color: var(--cream);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 5px solid var(--gold);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.6);
}

.lightbox-caption {
    text-align: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 20px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--bronze);
    transform: scale(1.1);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ========================================
   FOOTER
   ======================================== */

.art-deco-footer {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
    text-align: center;
    border-top: 3px solid var(--gold);
}

.footer-ornament {
    width: 200px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 30px auto;
    position: relative;
}

.footer-ornament::before,
.footer-ornament::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--gold);
    transform: rotate(45deg);
    top: -6px;
}

.footer-ornament::before {
    left: -7px;
}

.footer-ornament::after {
    right: -7px;
}

.footer-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 15px;
}

.footer-text i {
    color: var(--gold);
    margin: 0 15px;
}

.footer-years {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin: 20px 0;
}

.footer-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--cream);
    max-width: 600px;
    margin: 20px auto;
}

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

@media (max-width: 1200px) {
    .bio-content {
        grid-template-columns: 1fr;
    }

    .club-info-grid {
        grid-template-columns: 1fr;
    }

    .legends-card,
    .memorial-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-content {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .title-line {
        font-size: 1.5rem;
    }

    .title-main {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .timeline-event.left .event-content,
    .timeline-event.right .event-content {
        margin: 0 10%;
        text-align: left;
    }

    .timeline-line {
        left: 10%;
    }

    .event-marker {
        left: 10%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .performers-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */

.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   HERO QUOTE BANNER
   ======================================== */

.hero-quote-banner {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.hero-quote-banner blockquote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.7);
    border-left: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
}

/* ========================================
   INTRO BANNER
   ======================================== */

.intro-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 50%, var(--charcoal) 100%);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.intro-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.intro-content > p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--cream);
    max-width: 900px;
    margin: 0 auto 50px;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* ========================================
   BIOGRAPHY CHAPTERS
   ======================================== */

.bio-chapter {
    margin-bottom: 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold);
}

.chapter-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    width: 80px;
    height: 80px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapter-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.bio-content.reverse {
    grid-template-columns: 2fr 1fr;
}

.bio-content.reverse .bio-text {
    order: 1;
}

.bio-content.reverse .bio-image-container {
    order: 2;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--cream);
    margin-bottom: 25px;
}

.lead-paragraph::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    float: left;
    line-height: 1;
    margin-right: 15px;
    margin-top: 5px;
}

.bio-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 20px;
}

.bio-text.full-width {
    grid-column: 1 / -1;
}

/* Pull Quotes */
.pull-quote {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-left: 5px solid var(--gold);
    padding: 30px 40px;
    margin: 40px 0;
    position: relative;
}

.pull-quote i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.pull-quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.8;
}

.pull-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pull-quote.centered {
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.featured-quote {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.featured-quote i {
    color: var(--black);
    opacity: 0.6;
}

.featured-quote cite {
    color: var(--charcoal);
}

/* Info Box */
.info-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    padding: 30px;
    margin: 30px 0;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.info-box-icon {
    font-size: 3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.info-box-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.info-box-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Business Showcase */
.business-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.business-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid var(--gold);
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.business-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.business-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.business-years {
    font-size: 0.9rem;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.business-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Photo Frames */
.deco-photo-frame.small {
    margin-top: 30px;
}

.deco-photo-frame.landscape {
    margin-bottom: 40px;
}

.bio-image-container.wide {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Philanthropy Highlights */
.philanthropy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight-item {
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid var(--gold);
    padding: 30px;
    text-align: center;
}

.highlight-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.highlight-item h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Family Overview */
.family-overview {
    max-width: 1200px;
    margin: 0 auto;
}

.family-intro {
    text-align: center;
    margin-bottom: 60px;
}

.marriages-section {
    margin-bottom: 60px;
}

.marriages-section h4,
.children-section h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.marriage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.marriage-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid var(--gold);
    padding: 30px;
    text-align: center;
}

.spouse-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    object-fit: cover;
    margin-bottom: 20px;
    filter: sepia(30%);
}

.marriage-card h5 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.spouse-years {
    font-size: 1rem;
    color: var(--bronze);
    margin-bottom: 15px;
}

.children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.child-card {
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid var(--gold);
    padding: 25px;
    text-align: center;
}

.child-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--black);
}

.child-card h5 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.child-years {
    font-size: 0.9rem;
    color: var(--bronze);
    margin-bottom: 10px;
}

/* ========================================
   STORIES SECTION
   ======================================== */

.stories-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--navy) 0%, var(--black) 50%, var(--charcoal) 100%);
}

.stories-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stories-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--cream);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 2px solid var(--gold);
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.story-card.featured {
    grid-column: 1 / -1;
    border-width: 3px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(0, 31, 63, 0.9) 100%);
}

.story-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 25px;
}

.story-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 15px;
}

.story-highlight {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    padding: 20px;
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.15rem !important;
    color: var(--cream) !important;
}

.stories-outro {
    max-width: 900px;
    margin: 80px auto 0;
    text-align: center;
}

.closing-quote {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 50px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.closing-quote i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.6;
}

.closing-quote cite {
    display: block;
    margin-top: 25px;
    font-size: 1rem;
    font-style: normal;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   DEL MOROCCO EXPANDED STYLES
   ======================================== */

.club-tagline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--cream);
    margin-top: 15px;
}

.club-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 80px;
    align-items: center;
}

.club-intro-text .lead-paragraph {
    margin-bottom: 20px;
}

.club-intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--cream);
}

.club-photo {
    width: 100%;
    height: auto;
    filter: sepia(30%);
}

.club-atmosphere {
    max-width: 1400px;
    margin: 0 auto 80px;
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid var(--gold);
    padding: 50px;
}

.club-atmosphere h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.club-atmosphere h3 i {
    margin-right: 15px;
}

.atmosphere-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.atmosphere-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--cream);
    margin-bottom: 20px;
}

.atmosphere-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.atmosphere-features .feature {
    text-align: center;
    padding: 25px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--gold);
}

.atmosphere-features .feature i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.atmosphere-features .feature h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.atmosphere-features .feature p {
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 0;
}

/* Performers Section */
.performers-section {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.performers-section > h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
}

.performers-section > h3 i {
    margin-right: 15px;
}

.performers-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 50px;
}

.performers-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.performer-feature {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--gold);
    padding: 40px;
    align-items: center;
}

.performer-feature.reverse {
    grid-template-columns: 1fr 250px;
}

.performer-feature.reverse .performer-photo {
    order: 2;
}

.performer-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 4px solid var(--gold);
    filter: sepia(20%);
    transition: all 0.4s ease;
}

.performer-feature:hover .performer-photo {
    filter: sepia(0%);
}

.performer-info h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.performer-years {
    font-size: 1rem;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.performer-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 15px;
}

.performer-info blockquote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    font-style: italic;
    font-family: var(--font-display);
    color: var(--cream);
    margin-top: 20px;
}

.performer-info blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--gold);
}

.more-performers {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid var(--gold);
}

.more-performers h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.more-performers .performers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Club Photos Strip */
.club-photos-strip {
    max-width: 1400px;
    margin: 80px auto 0;
}

.club-photos-strip h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
}

.club-photos-strip h3 i {
    margin-right: 15px;
}

.photos-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.scroll-photo {
    flex-shrink: 0;
    width: 250px;
    text-align: center;
}

.scroll-photo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 3px solid var(--gold);
    filter: sepia(30%);
    transition: all 0.4s ease;
}

.scroll-photo:hover img {
    filter: sepia(0%);
    transform: scale(1.05);
}

.scroll-photo span {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--cream);
}

/* ========================================
   TIMELINE & TREE INTROS
   ======================================== */

.timeline-intro,
.tree-intro,
.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.timeline-intro p,
.tree-intro p,
.gallery-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cream);
}

/* Tree Legend */
.tree-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid var(--gold);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--cream);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.legend-color.theodore {
    background: var(--gold);
}

.legend-color.male {
    background: var(--charcoal);
}

.legend-color.female {
    background: var(--burgundy);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--gold);
    padding: 12px 25px;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Gallery Year Badge */
.gallery-item-year {
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-year {
    color: var(--cream);
    opacity: 0.8;
}

/* Gallery transition */
#photoGallery {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ========================================
   REMEMBRANCE SECTION
   ======================================== */

.remembrance-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--black) 0%, var(--navy) 50%, var(--black) 100%);
    border-top: 3px solid var(--gold);
}

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

.deco-photo-frame.memorial {
    max-width: 350px;
}

.memorial-photo {
    width: 100%;
    filter: sepia(20%);
}

.remembrance-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.memorial-dates {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 25px;
}

.memorial-quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--gold);
}

.remembrance-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 15px;
}

.memorial-flowers {
    margin-top: 30px;
    font-size: 2rem;
    color: var(--gold);
}

.memorial-flowers i {
    margin: 0 15px;
}

/* Footer Updates */
.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    margin: 25px 0;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.footer-divider {
    color: var(--gold);
    margin: 0 15px;
}

.footer-credit {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.7;
    margin-top: 20px;
}

/* ========================================
   ADDITIONAL RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1200px) {
    .club-intro {
        grid-template-columns: 1fr;
    }

    .atmosphere-content {
        grid-template-columns: 1fr;
    }

    .performer-feature,
    .performer-feature.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .performer-feature.reverse .performer-photo {
        order: 0;
    }

    .performer-photo {
        margin: 0 auto;
    }

    .remembrance-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .deco-photo-frame.memorial {
        margin: 0 auto;
    }

    .memorial-quote {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--gold);
        border-bottom: 4px solid var(--gold);
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-card.featured {
        grid-column: 1;
    }

    .intro-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .chapter-header {
        flex-direction: column;
        text-align: center;
    }

    .chapter-title {
        font-size: 1.6rem;
    }

    .bio-content,
    .bio-content.reverse {
        grid-template-columns: 1fr;
    }

    .bio-content.reverse .bio-text,
    .bio-content.reverse .bio-image-container {
        order: 0;
    }

    .marriage-cards {
        grid-template-columns: 1fr;
    }

    .atmosphere-features {
        grid-template-columns: 1fr;
    }

    .tree-legend {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .venue-spotlight {
        grid-template-columns: 1fr;
    }

    .destruction-content {
        flex-direction: column;
    }

    .destruction-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

/* ===== Jefferson Street Section ===== */
.jefferson-street-section {
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    padding: 80px 0;
    position: relative;
}

.jefferson-street-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.jefferson-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.street-panorama {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
                url('../images/jefferson-street-scene.jpg') center/cover no-repeat;
    margin: 0 -50px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.panorama-overlay {
    text-align: center;
    padding: 30px 50px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #D4AF37;
}

.panorama-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #D4AF37;
    margin: 0;
}

.panorama-overlay i {
    margin-right: 15px;
}

.jefferson-content {
    max-width: 1100px;
    margin: 0 auto;
}

.district-description {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #D4AF37;
}

.district-description p {
    margin-bottom: 20px;
}

.district-description p:last-child {
    margin-bottom: 0;
}

.venue-spotlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.venue-card {
    background: linear-gradient(145deg, #1A1A1A 0%, #0F0F0F 100%);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.venue-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.venue-card.featured {
    border-color: #D4AF37;
    background: linear-gradient(145deg, #1A1A1A 0%, #151515 100%);
    position: relative;
}

.venue-card.featured::before {
    content: 'UNCLE TEDDY\'S';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #D4AF37;
    color: #0A0A0A;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.venue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.venue-icon i {
    font-size: 1.5rem;
    color: #0A0A0A;
}

.venue-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.venue-card p {
    color: #CCC;
    line-height: 1.7;
    font-size: 0.95rem;
}

.destruction-block {
    background: linear-gradient(145deg, #1A0A0A 0%, #0F0505 100%);
    border: 1px solid #8B0000;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
}

.destruction-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.destruction-header i {
    font-size: 2rem;
    color: #8B0000;
}

.destruction-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F5F5DC;
    margin: 0;
}

.destruction-content {
    display: flex;
    gap: 40px;
}

.destruction-text {
    flex: 2;
}

.destruction-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #CCC;
}

.destruction-text p:last-child {
    margin-bottom: 0;
}

.destruction-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid #8B0000;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

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

.jefferson-quote {
    position: relative;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #F5F5DC;
    padding: 40px 60px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    line-height: 1.8;
}

.jefferson-quote i {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 2rem;
    color: #D4AF37;
    opacity: 0.5;
}

.jefferson-quote cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: #D4AF37;
}

/* ===== Source Links ===== */
.source-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.source-link:hover {
    color: var(--gold);
    text-decoration-thickness: 2px;
}

/* Links in performer badges */
a.performer-badge {
    text-decoration: none;
    color: inherit;
}

a.performer-badge:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* Links in quotes */
blockquote .source-link {
    text-decoration-color: rgba(212, 175, 55, 0.5);
}

blockquote .source-link:hover {
    text-decoration-color: var(--gold);
}

/* External link indicator */
.source-link[target="_blank"]::after {
    content: " ↗";
    font-size: 0.7em;
    vertical-align: super;
    opacity: 0.6;
}

/* ===== Four Generations Photo Feature ===== */
.generations-photo-feature {
    max-width: 700px;
    margin: 30px auto 40px;
    text-align: center;
}

.generations-photo-feature .deco-photo-frame {
    position: relative;
    display: inline-block;
    border: 3px solid var(--gold);
    padding: 10px;
    background: #1A1A1A;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
}

.generations-photo-feature .deco-photo-frame.large img {
    max-width: 100%;
    height: auto;
    display: block;
}

.generations-photo-feature .photo-caption {
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
}

/* ===== Numbers Context Box ===== */
.info-box.numbers-context {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 2px solid var(--gold);
    margin-bottom: 40px;
}

.info-box.numbers-context h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Featured business card */
.business-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, #1A1A1A 100%);
    position: relative;
}

.business-card.featured::before {
    content: 'PRIMARY BUSINESS';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
}

.business-card.featured .business-icon {
    background: var(--gold);
}

.business-card.featured .business-icon i {
    color: var(--black);
}

/* Info box with image */
.info-box.with-image {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 25px;
}

.info-box.with-image .info-box-icon {
    flex-shrink: 0;
}

.info-box.with-image .info-box-content {
    flex: 1;
    min-width: 300px;
}

.info-box-image {
    flex: 0 0 250px;
    text-align: center;
}

.info-box-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.info-box-image a:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.info-box-image .image-caption {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .info-box.with-image {
        flex-direction: column;
    }

    .info-box-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
