/* ==========================================================================
   Mossautal Touristik e.V. – Hauptstylesheet
   Design: Editorial, image-centric, minimalist (inspired by australia.com)
   Stand: 2026-04-14
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&display=swap');

/* --------------------------------------------------------------------------
   1. Custom Properties / CI-Variablen
   -------------------------------------------------------------------------- */
:root {
    /* Farben – minimal palette, image-first */
    --c-primary:        #1a5c2a;
    --c-primary-dark:   #134a20;
    --c-primary-light:  #247a38;
    --c-secondary:      #ffd600;
    --c-secondary-dark: #e0bd00;
    --c-accent:         #e8930c;
    --c-accent-dark:    #d07f08;
    --c-bg:             #ffffff;
    --c-bg-warm:        #f8f7f5;
    --c-text:           #1a1a1a;
    --c-text-light:     #ffffff;
    --c-muted:          #6b6b6b;
    --c-border:         #e8e8e8;
    --c-card-bg:        #ffffff;
    --c-hero-overlay:   linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
    --c-hero-gradient:  linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );

    /* Schriften */
    --f-headline:  "Source Serif 4", Georgia, "Times New Roman", serif;
    --f-body:      "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Typografie Skala (clamp) */
    --fs-hero:     clamp(2.5rem, 6vw, 4.5rem);
    --fs-h1:       clamp(2.5rem, 5vw, 4rem);
    --fs-h2:       clamp(2rem, 4vw, 3rem);
    --fs-h3:       clamp(1.25rem, 2vw, 1.5rem);
    --fs-h4:       clamp(1.1rem, 1.5vw, 1.35rem);
    --fs-h5:       clamp(1rem, 1.2vw, 1.15rem);
    --fs-h6:       clamp(0.9rem, 1vw, 1rem);
    --fs-body:     1rem;
    --fs-small:    0.875rem;
    --fs-xs:       0.8rem;

    /* Abstände */
    --space-xs:    0.25rem;
    --space-sm:    0.5rem;
    --space-md:    1rem;
    --space-lg:    1.5rem;
    --space-xl:    2.5rem;
    --space-2xl:   4rem;
    --space-3xl:   6rem;

    /* Rundungen */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   16px;
    --radius-pill: 100px;

    /* Schatten – very subtle */
    --shadow-sm:   0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md:   0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg:   0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-card: none;
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Uebergaenge */
    --transition:       0.3s ease;
    --transition-slow:  0.4s ease;

    /* Layout */
    --container-max:    1280px;
    --container-narrow: 800px;
    --nav-height:       72px;
    --nav-height-mobile: 60px;
}


/* --------------------------------------------------------------------------
   2. Reset / Basis
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--f-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--c-text);
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main-Bereich: Abstand fuer fixe Navbar */
main {
    padding-top: 88px; /* Hoehe der Navbar */
}

/* Startseite: Hero fuellt den ganzen Viewport, kein Padding noetig */
.page-home main {
    padding-top: 0;
}

/* Skip-Link (nur fuer Screenreader, fokussierbar) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--c-accent);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.875rem;
}
.skip-link:focus {
    left: 8px;
    top: 8px;
}

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

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

a:hover,
a:focus-visible {
    color: var(--c-accent);
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--c-accent);
    color: var(--c-text-light);
}


/* --------------------------------------------------------------------------
   3. Typografie – editorial, confident
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-headline);
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-text);
    margin: 0 0 var(--space-md) 0;
    letter-spacing: -0.01em;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: var(--fs-h2);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

h3 {
    font-size: var(--fs-h3);
}

h4 { font-size: var(--fs-h4); }

h5 {
    font-size: var(--fs-h5);
    font-weight: 500;
}

h6 {
    font-size: var(--fs-h6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-muted);
}

p {
    margin: 0 0 var(--space-md) 0;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--c-muted);
    max-width: 680px;
}

.text-muted {
    color: var(--c-muted);
}

.text-small {
    font-size: var(--fs-small);
}

.text-xs {
    font-size: var(--fs-xs);
}

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

/* Section title – thin orange accent line */
.section-title {
    position: relative;
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--c-accent);
    border-radius: 1px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Overline – small label above headings */
.overline {
    display: block;
    font-family: var(--f-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-muted);
    margin-bottom: var(--space-sm);
}

/* Prose / content blocks */
.prose {
    max-width: var(--container-narrow);
}

.prose p {
    margin-bottom: var(--space-lg);
}

.prose ul,
.prose ol {
    margin-bottom: var(--space-lg);
    padding-left: 1.5em;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: var(--space-sm);
}

.prose a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.prose blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 3px solid var(--c-accent);
    background: transparent;
    font-family: var(--f-headline);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--c-muted);
}


/* --------------------------------------------------------------------------
   4. Layout-Utilities
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Flexbox helpers */
.flex         { display: flex; }
.flex-wrap    { flex-wrap: wrap; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-sm       { gap: var(--space-sm); }
.gap-md       { gap: var(--space-md); }
.gap-lg       { gap: var(--space-lg); }
.gap-xl       { gap: var(--space-xl); }

/* CSS Grid Layouts */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

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

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

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

/* Sidebar layout (detail pages) */
.layout-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .layout-sidebar {
        grid-template-columns: 1fr 360px;
    }
}

/* Visibility helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hidden        { display: none !important; }
.block         { display: block; }
.inline-block  { display: inline-block; }


/* --------------------------------------------------------------------------
   5. Header / Navigation – premium, transparent-to-solid
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 88px;
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled: kompakter */
.site-header.nav-solid {
    height: var(--nav-height);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1010;
}

.site-logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease, filter 0.3s ease;
}

/* Beim Scrollen Logo kleiner */
.site-header.nav-solid .site-logo img {
    height: 42px;
}

/* Transparent header: white logo */
/* Logo immer im Originalfarben */

.site-logo-text {
    font-family: var(--f-headline);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.2;
}

/* Logo-Text immer dunkel */

/* Main Navigation */
.main-nav {
    display: none;  /* Mobile: versteckt, per JS togglen */
}

.main-nav.is-open {
    display: flex;
}

@media (min-width: 769px) {
    .main-nav {
        display: flex !important; /* Desktop: immer sichtbar */
    }
    .nav-toggle {
        display: none; /* Hamburger auf Desktop verstecken */
    }
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav a {
    display: block;
    position: relative;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--c-text);
    border-radius: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Hover underline animation – thin line slides in from left */
.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--c-text);
}

.main-nav a.active {
    font-weight: 600;
}

/* Transparent header: white nav links */
/* Nav-Links immer dunkel */

/* CTA link in nav */
.main-nav .nav-cta a {
    background: var(--c-accent);
    color: var(--c-text-light);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
}

.main-nav .nav-cta a::after {
    display: none;
}

.main-nav .nav-cta a:hover {
    background: var(--c-accent-dark);
    color: var(--c-text-light);
}

/* Dropdown (submenu) */
.nav-item-has-children {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--c-card-bg);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    flex-direction: column;
    z-index: 1020;
}

.nav-item-has-children:hover .nav-dropdown,
.nav-item-has-children:focus-within .nav-dropdown {
    display: flex;
}

.nav-dropdown a {
    padding: 8px 20px;
    color: var(--c-text);
    font-size: var(--fs-small);
    border-radius: 0;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background: var(--c-bg-warm);
    color: var(--c-primary);
}

/* Hamburger – minimal, two lines */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    z-index: 1010;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--c-text);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger immer dunkel */

/* Hamburger -> X */
.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* Mobile Navigation – full-screen overlay */
@media (max-width: 767px) {
    .site-header {
        height: var(--nav-height-mobile);
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--space-2xl);
        animation: navFadeIn 0.3s ease;
    }

    @keyframes navFadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }

    .main-nav a {
        font-size: 1.4rem;
        font-family: var(--f-headline);
        font-weight: 600;
        color: var(--c-text);
        padding: 12px 24px;
        letter-spacing: -0.01em;
    }

    .main-nav a::after {
        display: none;
    }

    /* Mobile: dropdown always visible, indented */
    .nav-dropdown {
        display: flex;
        position: static;
        box-shadow: none;
        padding: 0;
        min-width: 0;
        background: transparent;
    }

    .nav-dropdown a {
        font-size: 1.1rem;
        color: var(--c-muted);
        padding: 8px 24px;
    }

    /* Force hamburger text color on open overlay */
    .nav-toggle.is-active span {
        background: var(--c-text);
    }
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
    }
}


/* --------------------------------------------------------------------------
   6. Hero Section – full viewport, image-first
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--c-hero-gradient);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 24px calc(80px + 4vh) 24px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 0 calc(80px + 6vh) 0;
    }

    .hero .container .hero-content,
    .hero > .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.hero-title {
    font-family: var(--f-headline);
    font-size: var(--fs-hero);
    font-weight: 700;
    color: var(--c-text-light);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.3rem, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    max-width: 540px;
}

.hero-cta {
    display: inline-flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Scroll indicator – subtle chevron with bounce */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: heroScrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* Compact hero (subpages) */
.hero-compact {
    min-height: 50vh;
    min-height: 50svh;
}

.hero-compact .hero-content {
    padding-bottom: calc(48px + 3vh);
}

.hero-compact .hero-title {
    font-size: var(--fs-h1);
}


/* --------------------------------------------------------------------------
   7. Footer – clean, minimal
   -------------------------------------------------------------------------- */
.site-footer {
    background: #f5f4f2;
    color: var(--c-muted);
    padding: 80px 0 0;
}

.site-footer > * {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-col h4 {
    font-family: var(--f-headline);
    font-size: 1rem;
    color: var(--c-text);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.footer-col p {
    font-size: var(--fs-small);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    color: var(--c-muted);
}

.footer-col a {
    color: var(--c-muted);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--c-text);
}

/* Contact info in footer */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-small);
}

.footer-contact-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--c-muted);
}

/* Footer navigation */
.footer-nav a {
    display: block;
    padding: 4px 0;
    font-size: var(--fs-small);
    color: var(--c-muted);
    transition: color var(--transition);
}

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

/* Footer logo */
.footer-logo img {
    max-width: 140px;
    opacity: 0.6;
    margin-bottom: var(--space-lg);
}

/* Copyright bar – dark bottom strip */
.footer-bottom {
    background: #f5f4f2;
    border-top: 1px solid #ddd;
    color: var(--c-muted);
    padding: var(--space-md) 0;
    font-size: var(--fs-xs);
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: var(--c-muted);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--c-text);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}


/* --------------------------------------------------------------------------
   8. Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Tablet */
@media (min-width: 768px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Small screens */
@media (max-width: 480px) {
    :root {
        --space-xl:  2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-inner {
        gap: var(--space-2xl);
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--space-sm);
    }
}


/* --------------------------------------------------------------------------
   9. Animations
   -------------------------------------------------------------------------- */

/* Fade-in on scroll (activated via IntersectionObserver) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Variants */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Hover animations */
.hover-lift {
    transition: transform var(--transition), box-shadow var(--transition);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}


/* --------------------------------------------------------------------------
   10. prefers-reduced-motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
    }

    .hero-scroll {
        animation: none;
    }
}


/* --------------------------------------------------------------------------
   11. Print
   -------------------------------------------------------------------------- */
@media print {
    .site-header,
    .site-footer,
    .hero-scroll,
    .nav-toggle,
    .back-to-top,
    .filter-bar {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: var(--space-lg);
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
