/* ================================================
   Gerald Kunzmann - Webvisitenkarte
   Farbschema basierend auf Logo-Blau #1E6093
   Mobile-first, responsive
   ================================================ */

/* ---------- Lokale Schriftarten ---------- */
@font-face { font-family: 'Work Sans'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/work-sans-italic-400.ttf') format('truetype'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/work-sans-300.ttf') format('truetype'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/work-sans-400.ttf') format('truetype'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/work-sans-500.ttf') format('truetype'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/work-sans-600.ttf') format('truetype'); }
@font-face { font-family: 'Work Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/work-sans-700.ttf') format('truetype'); }

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-primary: #1E6093;
    --color-primary-dark: #154d75;
    --color-primary-darker: #0e3650;
    --color-primary-light: #2a7ab5;
    --color-primary-bg: #e9f1f7;

    --color-accent: #c47b2b;
    --color-accent-light: #d4952e;

    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-text-muted: #8494a5;

    --color-white: #ffffff;
    --color-bg: #f8fafb;
    --color-bg-alt: #f0f4f7;
    --color-border: #dce4ea;

    --font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --header-height: 70px;
    --container-width: 1120px;
    --border-radius: 6px;
    --border-radius-lg: 12px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 8px rgba(30,96,147,0.08);

    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

strong {
    font-weight: 600;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-bg);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition);
    height: var(--header-height);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: rgba(255,255,255,0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo-link {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo {
    height: 38px;
    width: auto;
}

/* Hamburger */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Hamburger active */
.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Nav */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-white);
    padding: calc(var(--header-height) + 20px) 30px 30px;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
}

.main-nav.open {
    right: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--border-radius);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background-color: var(--color-primary-bg);
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.visible {
    opacity: 1;
    visibility: visible;
}

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

.hero-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120%;
    background-image: url('../img/gerald-kunzmann-business-trainer-berlin-hero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: inherit;
    background-position: inherit;
    animation: hero-zoom 25s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes hero-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 54, 80, 0.82);
}

/* Wrapper: Text nach rechts schieben */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-content {
    text-align: right;
    color: var(--color-white);
    max-width: 540px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-claim {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 32px;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.claim-word {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.claim-word.visible {
    opacity: 1;
    animation: claim-glow 1.2s ease 0.3s;
}

@keyframes claim-glow {
    0%, 100% { color: var(--color-accent-light); }
    35% { color: rgba(255, 230, 180, 0.9); }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 0.8s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 60px;
    color: rgba(255,255,255,0.5);
    animation: bounce-down 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========================================
   SECTIONS (allgemein)
   ======================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary-darker);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-intro {
    max-width: 640px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.values-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
    align-items: center;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.value-label {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ========================================
   ÜBER MICH
   ======================================== */
.section-about {
    background-color: var(--color-white);
}

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin: 0 auto;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(30,96,147,0.15), transparent);
    pointer-events: none;
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 14px;
    color: var(--color-text);
}

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

/* ========================================
   ANGEBOTE / SERVICES
   ======================================== */
.section-services {
    background-color: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30,96,147,0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: var(--color-primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary-darker);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   ZITAT / PARALLAX
   ======================================== */
.section-quote {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/gerald-kunzmann-beratung-gespraech.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 54, 80, 0.92) 0%,
        rgba(30, 96, 147, 0.88) 100%
    );
}

.quote {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto;
}

.quote p {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 16px;
}

.quote cite {
    font-size: 1rem;
    font-weight: 500;
    font-style: normal;
    color: var(--color-accent-light);
    letter-spacing: 0.05em;
}

/* ========================================
   KONTAKT
   ======================================== */
.section-contact {
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.contact-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.contact-info {
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
}

.contact-item a {
    color: var(--color-text);
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: var(--color-primary-darker);
    color: rgba(255,255,255,0.8);
    padding-top: 50px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin: 0 auto 8px;
    background-color: var(--color-white);
    padding: 6px 10px;
    border-radius: var(--border-radius);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact p {
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 900;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

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

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-up {
    transform: translateY(40px);
    transition-delay: calc(var(--delay, 0) * 0.15s);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================
   RESPONSIVE - Mobile (bis 599px)
   Hero: zentriert mit stärkerem Overlay
   ======================================== */
@media (max-width: 599px) {
    .hero-content-wrapper {
        justify-content: center;
    }

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

    .hero-claim {
        justify-content: center;
    }

    .hero-buttons {
        align-items: center;
    }

    .hero-scroll-indicator {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    @keyframes bounce-down {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(8px); }
    }
}

/* ========================================
   RESPONSIVE - Tablet (ab 600px)
   ======================================== */
@media (min-width: 600px) {
    .container {
        padding: 0 30px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-end;
    }

    .values-bar {
        flex-direction: row;
        gap: 0;
        align-items: stretch;
    }

    .value-item {
        flex: 1;
        position: relative;
        padding: 0 20px;
        justify-content: flex-start;
    }

    .values-bar::before,
    .values-bar::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
        width: 1px;
        background-color: var(--color-border);
    }

    .values-bar {
        position: relative;
    }

    .values-bar::before {
        left: 33.33%;
    }

    .values-bar::after {
        left: 66.66%;
    }

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

    .contact-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .contact-buttons .btn:last-child {
        grid-column: 1 / -1;
    }
}

/* ========================================
   RESPONSIVE - Desktop (ab 900px)
   ======================================== */
@media (min-width: 900px) {
    :root {
        --header-height: 80px;
    }

    .section {
        padding: 100px 0;
    }

    /* Desktop Nav */
    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        box-shadow: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 4px;
    }

    .nav-link {
        padding: 8px 16px;
        font-size: 0.95rem;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 16px;
        right: 16px;
        height: 2px;
        background-color: var(--color-primary);
        transform: scaleX(0);
        transition: transform var(--transition);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent;
    }

    /* Logo */
    .logo {
        height: 44px;
    }

    /* About grid */
    .about-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 60px;
    }

    .about-image-wrapper {
        max-width: 100%;
    }

    /* Services 4 columns */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .contact-image {
        max-width: 100%;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        text-align: left;
    }

    .footer-logo {
        margin: 0 0 8px;
    }

    .footer-legal {
        justify-content: flex-end;
    }

    /* Quote section */
    .section-quote {
        padding: 120px 0;
    }
}

/* ========================================
   RESPONSIVE - Large Desktop (ab 1200px)
   ======================================== */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .about-grid {
        gap: 80px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        padding: 36px 28px;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-title-line,
    .hero-subtitle,
    .hero-claim,
    .hero-buttons {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-particle {
        animation: none;
    }

    .hero-scroll-indicator {
        animation: none;
    }
}

/* ---------- Print ---------- */
@media print {
    .site-header,
    .scroll-top,
    .hero-scroll-indicator,
    .hero-particles {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
    }
}
