/* Erstellt von SPACEPLANET - Simon Wernli 2026 */
/* Landing Page: www.love-mobile.ch */

/* ==========================================================================
   Base Variables
   ========================================================================== */

/* ==========================================================================
   Base Variables
   ========================================================================== */
:root {
    --bg-color: #ffffff;
    --text-main: #0a0a0a;
    --text-muted: #52525b;
    --neon-pink: #f0abfc;
    --neon-purple: #c026d3;
    --neon-blue: #0ea5e9;
    --neon-cyan: #22d3ee;
    --brand-orange: #f97316;
    --brand-orange-dark: #ea580c;
    --card-bg: #ffffff;
    --card-border: #f4f4f5;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}

a { text-decoration: none; color: inherit; }
li { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.neon-text {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.muted-text {
    color: var(--text-muted);
    font-size: 0.9em;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

/* ==========================================================================
   Fixed Top & Bottom Gradient Lines (wie we-are-united.ch)
   ========================================================================== */
body::before,
body::after {
    content: '';
    display: block;
    position: fixed;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8d4795 0%, #e94546 25%, #eaff00 45%, #eaff00 55%, #ee7221 75%, #546eb3 100%);
    z-index: 99999;
    pointer-events: none;
}
body::before { top: 0; }
body::after { bottom: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-color);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    padding-top: 6px;
    position: relative;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-content {
    height: 90px;
}

.header-left-logo {
    z-index: 101;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.header-left-logo img {
    height: 45px;
    display: block;
    transition: height 0.3s ease;
}

.header.scrolled .header-left-logo img {
    height: 40px;
}

.logo {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    z-index: 10;
}

.logo a { display: block; }

.main-logo-img {
    height: 140px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .main-logo-img {
    height: 90px;
}

.logo a:hover .main-logo-img {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 101;
    margin-top: 10px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.lang-switcher .lang-btn {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
    padding: 2px 4px;
    border-radius: 4px;
}

.lang-switcher .lang-btn:hover {
    color: var(--neon-purple);
}

.lang-switcher .lang-btn.active {
    color: var(--neon-purple);
    font-weight: 900;
    pointer-events: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-dark));
    color: white;
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.3);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--brand-orange-dark), var(--brand-orange));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    box-shadow: 0 15px 30px -5px rgba(234, 88, 12, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid #e4e4e7;
}

.btn-outline:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding-top: 160px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(192, 38, 211, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.05;
}

.hero-date {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Section Titles
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 40px 0;
    background: #fafafa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-main);
}

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

.about-image img, .about-image video {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

/* ==========================================================================
   Line-Up Section
   ========================================================================== */
.lineup-section {
    padding: 40px 0;
}

.lineup-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.dj-card {
    width: calc(50% - 15px);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dj-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    opacity: 0;
    transition: var(--transition);
}

.dj-card:hover::before { opacity: 1; }

.dj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.1);
}

.dj-card h3 {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.dj-card .dj-vs {
    font-size: 0.85rem;
    color: var(--neon-purple);
    margin: 0 6px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    vertical-align: middle;
}

.dj-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.5;
    flex-grow: 1;
    text-align: justify;
}

/* ==========================================================================
   Tickets Section
   ========================================================================== */
.tickets-section {
    padding: 40px 0;
    background: #fafafa;
}

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

.ticket-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-dark));
}

.ticket-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.12);
}

.ticket-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-orange);
    background: rgba(249, 115, 22, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.ticket-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.ticket-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 20px;
}

.ticket-features {
    padding: 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

.ticket-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ticket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: 700;
}

.ticket-action {
    margin-top: auto;
}

.ticket-info-box {
    margin-top: 40px;
    padding: 24px 28px;
    background: rgba(249, 115, 22, 0.04);
    border-left: 4px solid var(--brand-orange);
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.ticket-info-box p { margin-bottom: 8px; }
.ticket-info-box p:last-child { margin-bottom: 0; }
.ticket-info-box strong { color: var(--text-main); }

.small-print {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==========================================================================
   Schedule / Tagesablauf Section
   ========================================================================== */
.schedule-section {
    padding: 40px 0;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-purple), var(--neon-blue), var(--brand-orange));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-purple);
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 2px var(--neon-purple);
}

.timeline-item:nth-child(2)::before { background: var(--neon-blue); box-shadow: 0 0 0 2px var(--neon-blue); }
.timeline-item:nth-child(3)::before { background: var(--brand-orange); box-shadow: 0 0 0 2px var(--brand-orange); }
.timeline-item:nth-child(4)::before { background: #e94546; box-shadow: 0 0 0 2px #e94546; }

.timeline-time {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--neon-purple);
    margin-bottom: 4px;
}

.timeline-item:nth-child(2) .timeline-time { color: var(--neon-blue); }
.timeline-item:nth-child(3) .timeline-time { color: var(--brand-orange); }
.timeline-item:nth-child(4) .timeline-time { color: #e94546; }

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   SEO Text Section (für Long-Tail Keywords)
   ========================================================================== */
.seo-section {
    padding: 40px 0;
    background: #fafafa;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.seo-content p {
    margin-bottom: 20px;
}

.seo-content strong {
    color: var(--text-main);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 40px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 0;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--neon-purple);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-main);
    transition: var(--transition);
}

.faq-icon::before {
    width: 14px; height: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px; height: 14px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer-wrapper {
    max-height: 300px;
}

.faq-answer {
    padding: 12px 0 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-color);
    padding: 60px 0 30px;
    border-top: 1px solid var(--card-border);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    padding: 0 20px;
}

.logo-item {
    height: 40px;
    opacity: 1;
    transition: var(--transition);
    filter: none;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 1;
}

.logo-item[alt="Spaceplanet"] {
    height: 60px;
}

.logo-item[alt="Move Infinity"] {
    height: 55px;
}

.logo-item:hover {
    transform: scale(1.05);
}

.we-are-united-footer { height: 50px; opacity: 1; filter: none; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

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

/* ==========================================================================
   Scroll-to-Top Button
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--bg-color);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-to-top:hover {
    background: var(--neon-purple);
    color: white;
    border-color: var(--neon-purple);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Fade-In Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Typewriter Animation
   ========================================================================== */
.typing-active::after {
    content: '|';
    color: var(--cursor-color, inherit);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}
@keyframes blink {
    50% { opacity: 0; }
}

/* ==========================================================================
   Two-Column Hero & Sold Out Styles
   ========================================================================== */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text {
    width: 100%;
    max-width: 55%;
    padding: 30px 40px 30px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: left;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 650px;
    text-align: left;
}

.hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 40%;
    align-self: stretch;
}

.hero-right-col > div {
    flex: 1;
    min-height: 0;
}

.hero-dj-box.compact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--card-border);
    flex: 0 0 auto;
    text-align: center;
}

.hero-dj-box.compact h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.hero-dj-box.compact .dj-list li {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hero-sold-out-box {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.15), 0 0 0 1px rgba(239, 68, 68, 0.15);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-sold-out-box .button-group {
    display: flex;
    gap: 8px;
}

.hero-sold-out-box .btn-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-dark));
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 6px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.hero-sold-out-box .btn-link:hover {
    background: linear-gradient(90deg, var(--brand-orange-dark), var(--brand-orange));
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(234, 88, 12, 0.3);
}

.hero-title-wrapper {
    position: relative;
    margin-bottom: 24px;
    min-height: 80px;
}

.hero-title-wrapper h1.hero-title-active {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    text-align: left;
}

.hero-title-wrapper h1.hero-title-spacer {
    visibility: hidden;
    margin: 0 !important;
    pointer-events: none;
    text-align: left;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .header-content {
        height: 65px !important;
        padding-top: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .header-left-logo { display: flex !important; margin-top: 0 !important; }
    .header-left-logo img { height: 28px !important; }

    .logo {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .main-logo-img { height: 50px !important; }
    .header.scrolled .main-logo-img { height: 40px !important; }

    .header-right {
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-top: 0 !important;
    }

    .hero {
        padding-top: 110px;
    }
    
    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .hero-text h1,
    .hero-text p,
    .hero-title-wrapper h1.hero-title-active,
    .hero-title-wrapper h1.hero-title-spacer {
        text-align: center;
    }
    
    .hero-title-wrapper h1.hero-title-active {
        position: relative !important;
    }
    
    .hero-title-wrapper h1.hero-title-spacer {
        display: none;
    }

    .hero-right-col {
        max-width: 100%;
        align-self: auto;
    }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    .hero { padding-top: 100px; padding-bottom: 50px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }

    .section-title h2 { font-size: 2rem; }

    .timeline { padding-left: 30px; }
    .timeline-item { padding-left: 15px; }
    .timeline-item::before { left: -23px; }

    .footer-logos { gap: 15px; flex-wrap: wrap; }
    .logo-item { height: 30px; }
    .we-are-united-footer { height: 38px; }
    .logo-item[alt="Move Infinity"] { height: 40px; }
    .logo-item[alt="Spaceplanet"] { height: 45px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-date { font-size: 1.1rem; }

    .dj-card { width: 100%; }

    .header-left-logo img { height: 20px !important; }

    .main-logo-img { height: 45px !important; }
    .header.scrolled .main-logo-img { height: 35px !important; }

    .lang-switcher {
        gap: 4px;
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    body::before, body::after, .scroll-to-top, .header { display: none !important; }
    body { background: white !important; color: black !important; }
    .neon-text { -webkit-text-fill-color: #000 !important; background: none !important; }
    .hero { padding-top: 40px; }
}
