/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.d-block {
    display: block;
}

:root {
    --bg-black: #0A0A0A;
    --text-white: #FFFFFF;
    --accent-yellow: #FFC700;
    --font-primary: Helvetica, Arial, sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 12rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 2rem;
    /* Added padding for anchor links */
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    /* Bold */
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-yellow);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.text-yellow {
    color: var(--accent-yellow);
}

.text-black {
    color: var(--bg-black);
}

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

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
}

/* Components */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    /* Pill shape */
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1.125rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 0, 0.3);
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--bg-black);
}

.btn-secondary {
    background-color: var(--bg-black);
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.badge {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--bg-black);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

/* Specific Section Styles */

/* Hero Fixed Background (iOS Friendly Parallax) */
.hero-fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Fallback */
    height: 100svh;
    z-index: 0;
    /* Behind content sections (z-index: 1) */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero_bg_new.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    will-change: transform;
    /* Performance hint */
}

/* Hero Section Container */
#hero {
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: transparent;
    /* Transparent so fixed bg shows through */
}

/* Mobile Typography & Spacing Optimization */
@media (max-width: 768px) {
    .hero-fixed-bg {
        /* Keep position: fixed for parallax effect */
        background-attachment: scroll;
        /* GPU compositing hints — prevents iOS/Brave zoom glitch */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        will-change: auto;
    }

    #hero {
        padding-top: calc(env(safe-area-inset-top, 0px) + 6vh);
        padding-bottom: var(--spacing-lg);
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        /* Fluid font size for title */
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero-content h2 {
        font-size: 1.1rem !important;
        /* Override inline styles */
        line-height: 1.4;
        margin-bottom: 1.5rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.5;
        padding: 0 10px;
        /* Prevent text hitting edges */
    }

    .hero-content .btn {
        width: 90%;
        /* Full width button on mobile for easier tapping */
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .quote-card {
        margin-top: 2rem !important;
        padding: 1rem;
    }
}

/* Remove separate placeholder if it exists, or style it */
.hero-bg-placeholder {
    display: none;
}

/* Hero Content Styles */
.hero-content h1,
.hero-content h2,
.hero-content p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Anchor Bar */
#anchor {
    background-color: var(--accent-yellow);
    color: var(--bg-black);
    padding: var(--spacing-md) 0;
}

.anchor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
}

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

    .anchor-grid>div {
        margin-bottom: var(--spacing-sm);
    }
}

/* Standard Grids (2 columns) */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

/* GALLERY SECTION */
#gallery {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-black);
}

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

.gallery-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

    .order-mobile-first {
        order: -1;
    }
}

/* TARGET AUDIENCE SECTION */
#target-audience {
    background-image: url('images/bg_gradient_rotated.webp');
    background-size: cover;
    background-position: center;
    color: var(--bg-black);
    padding: var(--spacing-xl) 0;
    position: relative;
    /* For absolute positioning of dividers */
}

/* Wave Dividers */
.custom-shape-divider-top,
.custom-shape-divider-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    /* Let clicks pass through */
}

.custom-shape-divider-top {
    top: 0;
}

.custom-shape-divider-bottom {
    bottom: 0;
}

.custom-shape-divider-top svg,
.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    left: 50%;
    transform: translateX(-50%);
    /* Centered with overlap on both sides */
}

.custom-shape-divider-top .shape-fill {
    fill: var(--bg-black);
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--text-white);
}

@media (min-width: 768px) {

    .custom-shape-divider-top svg,
    .custom-shape-divider-bottom svg {
        height: 120px;
        /* Taller waves on desktop */
    }
}

#target-audience h2 {
    color: var(--bg-black);
    margin-bottom: var(--spacing-lg);
}

#target-audience .card {
    background-color: rgba(255, 255, 255, 0.5);
    /* Semi-transparent initially */
    /* backdrop-filter removed for performance */
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    color: var(--bg-black);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 1s ease;
    will-change: background-color, transform, box-shadow;
}

#target-audience .card.active {
    background-color: #ffffff !important;
    /* Pure white when revealed */
}

#target-audience .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
}

#target-audience .card-icon {
    color: var(--bg-black);
    font-weight: 800;
}

#target-audience p {
    color: #333;
    font-weight: 500;
}

/* Card Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

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

.card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-yellow);
}

/* Info Table/Grid */
.info-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.5);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: #666;
}

.info-value {
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--bg-black);
}

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

    .info-label {
        margin-top: var(--spacing-sm);
    }
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--spacing-md) 0;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: var(--spacing-md);
    color: #555;
}

/* Bio Image */
.bio-img-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.bio-img {
    width: 300px;
    height: 300px;
    border-radius: 24px;
    /* Rounded square */
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Distributed Testimonial Quote Card */
.quote-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent-yellow);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-radius: 0 8px 8px 0;
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-white);
    /* Explicit white for dark sections */
}

.quote-card.dark {
    background-color: rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--bg-black);
    color: var(--bg-black);
    /* Dark text for light sections */
}

.quote-text {
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.quote-author {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    opacity: 0.8;
}

/* ----------------------------- */
/* Szekció 11: HIGH-VOLTAGE CTA  */
/* ----------------------------- */

#cta {
    background-color: var(--accent-yellow);
    /* Subtle noise texture for premium feel */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    color: var(--bg-black);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

/* Container Frame Effect (Optional, keep subtle) */
#cta .container {
    position: relative;
    z-index: 2;
}

/* Typography Upgrade */
#cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4;
    /* Slightly more space for the two lines */
}

/* CTA Specific Grid */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

@media (max-width: 768px) {
    #cta {
        min-height: 100svh;
        min-height: 100dvh;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }
}

.cta-btn-small {
    background-color: var(--bg-black) !important;
    color: var(--text-white) !important;
    border: none;
    width: 100%;
    /* Ensure buttons fill grid cells */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem !important;
    font-size: 1rem !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Highlighted Primary Wrapper */
.cta-primary-wrapper {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    /* Glassmorphism on yellow */
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.cta-label {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bg-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn-large {
    font-size: 1.25rem !important;
    padding: 1.25rem 3rem !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-black) !important;
    color: var(--accent-yellow) !important;
    width: 100%;
    max-width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn-large:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.tft-support-card {
    margin: var(--spacing-md) auto 0;
    width: min(680px, 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.34);
    padding: 1rem 1.1rem;
    text-align: center;
}

.tft-support-card h3 {
    margin: 0 0 0.4rem;
    color: var(--bg-black);
    font-size: 1.35rem;
}

.tft-support-card p {
    margin: 0 0 0.9rem;
    color: rgba(0, 0, 0, 0.86);
    font-size: 0.98rem;
}

.tft-support-btn {
    background: #FFFFFF;
    color: #000000;
    border: none;
    min-height: 48px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 1.4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tft-support-btn:hover {
    color: #000000;
    background: #f8f8f8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

/* ----------------------------- */
/* LUXURY ANIMATIONS             */
/* ----------------------------- */

/* 1. Scroll Reveal ("The Flow") */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Disable fade-in-up on mobile ONLY if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Previously disabled on mobile max-width: 768px, now enabled for better experience */

/* Previously disabled on mobile max-width: 768px, now enabled for better experience */

/* Staggered delays for grids */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* 2. High-Voltage Pulse ("The Energy") */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 199, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 199, 0, 0);
    }
}

.pulse-animation {
    animation: pulse-glow 3s infinite;
}

/* Custom Shape Divider Top */
.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    /* Subtle wave height */
    transform: rotateY(180deg);
}

.custom-shape-divider-top .shape-fill {
    fill: #f9f9f9;
    /* Match the previous section's background color */
}

/* Custom Shape Divider Bottom */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--text-white);
}


/* ----------------------------- */
/* TARGET AUDIENCE DIVIDERS      */
/* ----------------------------- */

/* Top Divider (Black to match Gallery) */
.divider-audience-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-audience-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    left: 50%;
    transform: translateX(-50%) rotateY(180deg);
}

.divider-audience-top .shape-fill {
    fill: var(--bg-black);
}

/* Bottom Divider (Black to match Certification) */
.divider-audience-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-audience-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.divider-audience-bottom .shape-fill {
    fill: var(--bg-black);
}

/* Helper Class for 4-column Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 900px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ----------------------------- */
/* VISUAL JOURNEY (MASONRY)      */
/* ----------------------------- */
#visual-journey {
    background-color: var(--bg-black);
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    position: relative;
    /* Context for divider */
}

.masonry-grid {
    column-count: 1;
    column-gap: 1rem;
}

@media (min-width: 600px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 900px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    /* Prevent layout shift during lazy load - removed aspect-ratio to allow natural height */
}

/* Cinematic Mode: Grayscale default, Color on hover */
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    /* Cinematic "Moody" Look instead of B&W */
    filter: brightness(0.85) contrast(1.1) sepia(0.1);
    will-change: transform, filter;
}

.masonry-item:hover img {
    transform: scale(1.04);
    /* "Magical" Reveal: Bright, vibrant, clear */
    filter: brightness(1.1) contrast(1.05) sepia(0) saturate(1.1);
}

/* The Quote Block in the middle of grid (optional) or separate */
.visual-quote-container {
    padding: var(--spacing-lg) 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
    position: relative;
}

/* Add a soft glow behind the divider that follows the wave */
#visual-journey .custom-shape-divider-top {
    overflow: visible;
}



.visual-quote {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0;
    display: inline-block;
}

/* Light Theme Modifier for Quote */
.visual-quote.light-theme {
    position: relative;
    padding: 0 20px;
}

/* Elegant decorative lines for light quote */
.visual-quote.light-theme::before,
.visual-quote.light-theme::after {
    content: "•";
    display: block;
    font-size: 2rem;
    color: var(--accent-yellow);
    line-height: 1;
    opacity: 0.6;
    margin: 10px 0;
}

.visual-quote .d-block {
    display: block;
    /* Removed white-space: nowrap to allow wrapping on mobile */
}

.visual-quote strong {
    color: var(--accent-yellow);
    font-weight: 400;
    font-family: 'Allura', cursive;
}

/* Elegant Highlight for "térkép" */
.highlight-glow {
    color: var(--accent-yellow);
    text-shadow: 0 0 15px rgba(255, 199, 0, 0.4);
    animation: soft-glow 3s infinite alternate;
    font-weight: 400;
    /* Maintain elegance */
}

@keyframes soft-glow {
    from {
        text-shadow: 0 0 10px rgba(255, 199, 0, 0.3);
        filter: brightness(1);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 199, 0, 0.6);
        filter: brightness(1.1);
    }
}

/* Contrast fix for highlighted word on light background */
.visual-quote.light-theme .highlight-glow {
    color: #b38b00;
    /* Darker, more readable gold on light bg */
    text-shadow: 0 0 10px rgba(179, 139, 0, 0.2);
}

/* Mobile Optimization for Quote Section */
@media (max-width: 768px) {
    .visual-quote-container {
        padding: var(--spacing-lg) 0;
        /* More space on mobile */
        width: 85%;
    }

    .visual-quote {
        font-size: clamp(2rem, 8vw, 2.8rem);
        /* Slightly larger on mobile */
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }

    .visual-quote.light-theme {
        padding: 0 5px;
    }

    .visual-quote .d-block {
        display: block;
        /* Keep line breaks on mobile for better rhythm */
        margin-bottom: 0.5rem;
    }
}
