/* ========================================
   Vitalmarkt Uelzen – Premium Styles
   ======================================== */

:root {
    --green: #23aa26;
    --green-light: #74c151;
    --green-dark: #1a8a1d;
    --green-muted: #e8f5e8;
    --orange: #efa700;
    --orange-light: #ffc233;
    --white: #ffffff;
    --gray-50: #fafbfa;
    --gray-100: #f3f4f3;
    --gray-200: #e5e7e5;
    --gray-300: #d1d5d1;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
    --shadow-glow: 0 8px 32px rgba(35,170,38,0.15);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

em {
    font-style: normal;
    color: var(--green);
}

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

/* ========================================
   Animations
   ======================================== */

.anim-fade,
.anim-up,
.anim-hero-text .hero-line {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.anim-fade.visible,
.anim-up.visible,
.anim-hero-text .hero-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.stand-card {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stand-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0);
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    transition: transform 0.3s var(--ease-out);
}

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

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

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

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

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

/* ========================================
   Hero
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    contain: layout style;
}

.hero-shape-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(116, 193, 81, 0.15) 0%, rgba(116, 193, 81, 0.05) 40%, transparent 70%);
    top: -20%;
    right: -10%;
    animation: float1 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 167, 0, 0.1) 0%, rgba(239, 167, 0, 0.03) 40%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: float2 25s ease-in-out infinite;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(35, 170, 38, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: float3 18s ease-in-out infinite;
}

.hero-grain {
    display: none;
}

@keyframes float1 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(30px, -40px, 0) scale(1.05); }
    66% { transform: translate3d(-20px, 20px, 0) scale(0.95); }
}

@keyframes float2 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(-30px, 30px, 0) scale(1.1); }
    66% { transform: translate3d(40px, -20px, 0) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(60px, -40px, 0); }
}

.hero-content {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-tagline {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.hero-line {
    display: block;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
}

.badge {
    background: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(116, 193, 81, 0.3);
    border-radius: var(--radius-md);
    padding: 18px 28px;
    text-align: center;
    transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.badge:hover {
    transform: translateY(-4px);
    border-color: var(--green-light);
}

.badge-day {
    display: block;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.badge-time {
    display: block;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--green);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -60px; }
    100% { top: 60px; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--orange);
    color: var(--gray-900);
    box-shadow: 0 4px 16px rgba(239, 167, 0, 0.3);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(239, 167, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: 120px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
    position: relative;
    padding: 0 48px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 32px;
    height: 1px;
    background: var(--green-light);
}

.section-label::before { left: 0; }
.section-label::after { right: 0; }

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   Foto-Banner
   ======================================== */

.photo-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.photo-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center bottom;
}

/* ========================================
   Über uns
   ======================================== */

.section-about {
    background: var(--gray-50);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

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

/* Impressionen */
.impressions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.impression {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    cursor: default;
}

.impression img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

.impression:hover img {
    transform: scale(1.06);
}

.impression span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text .emphasis {
    color: var(--green-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding-left: 20px;
    border-left: 3px solid var(--green-light);
    margin-top: 24px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
    background: var(--white);
    padding: 28px 28px 28px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.highlight:hover {
    border-color: var(--green-light);
    transform: translateX(8px);
}

.highlight-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--green-light);
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
}

.highlight h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.highlight p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   Marquee
   ======================================== */

.marquee-section {
    padding: 24px 0;
    background: var(--green);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 32px;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.marquee-track span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.marquee-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Stände
   ======================================== */

.staende-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 22px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.filter-btn:hover {
    border-color: var(--green-light);
    color: var(--green);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(35, 170, 38, 0.25);
}

.staende-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.stand-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
}

.stand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
}

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

.stand-card:hover {
    border-color: var(--green-light);
    transform: translateY(-4px) scale(1);
}

.stand-card.hidden {
    display: none;
}

.stand-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 8px;
}

.stand-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.stand-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ========================================
   Besuch planen
   ======================================== */

.section-besuch {
    background: var(--gray-50);
}

.besuch-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.besuch-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.info-card:hover {
    border-color: var(--green-light);
    transform: translateY(-4px);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--green-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.info-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

.besuch-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.besuch-map iframe {
    display: block;
}

.map-consent {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: border-color 0.3s;
}

.map-consent:hover {
    border-color: var(--green-light);
}

.map-consent-inner {
    padding: 32px;
}

.map-consent-inner p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.map-consent-inner a {
    color: var(--green-dark);
    text-decoration: underline;
}

/* ========================================
   Kontakt
   ======================================== */

.section-kontakt {
    position: relative;
    overflow: hidden;
}

.kontakt-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.kontakt-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-light);
}

.kontakt-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.kontakt-rolle {
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.kontakt-divider {
    width: 48px;
    height: 2px;
    background: var(--green-light);
    margin: 24px auto;
    border-radius: 2px;
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kontakt-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out);
}

a.kontakt-item:hover {
    background: var(--green-muted);
    color: var(--green-dark);
}

.kontakt-item svg {
    flex-shrink: 0;
    color: var(--green);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 72px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
}

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

/* ========================================
   Responsive
   ======================================== */

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

    .impressions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .photo-banner img {
        height: 300px;
    }

    .besuch-grid {
        gap: 32px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section { padding: 80px 0; }
}

@media (max-width: 680px) {
    .nav-inner {
        height: 64px;
    }

    .nav-logo-img {
        height: 40px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.99);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 24px;
        z-index: 99;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.55;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .hero-tagline {
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 32px;
    }

    .badge {
        padding: 14px 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
    }

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

    .section { padding: 56px 0; }

    .section-header { margin-bottom: 32px; }

    .section-header h2 {
        font-size: 1.6rem;
        br { display: none; }
    }

    .section-label {
        padding: 0 32px;
        font-size: 0.7rem;
    }

    .section-label::before,
    .section-label::after {
        width: 20px;
    }

    .section-desc {
        font-size: 0.9rem;
        line-height: 1.55;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .photo-banner img {
        height: 200px;
        object-position: center 40%;
    }

    .about-grid {
        gap: 28px;
    }

    .about-text .lead {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .about-text p {
        hyphens: auto;
        -webkit-hyphens: auto;
        word-break: break-word;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-text .emphasis {
        font-size: 0.95rem;
    }

    .about-image {
        border-radius: var(--radius-md);
    }

    .impressions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 32px;
    }

    .impression {
        border-radius: var(--radius-sm);
    }

    .impression span {
        font-size: 0.75rem;
        padding: 16px 10px 8px;
    }

    .highlight {
        padding: 20px;
    }

    .staende-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .staende-filter {
        gap: 6px;
        margin-bottom: 32px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 7px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .stand-card {
        padding: 18px 20px;
    }

    .besuch-grid {
        gap: 24px;
    }

    .info-card {
        padding: 20px;
        gap: 16px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-card h3 {
        font-size: 0.9rem;
    }

    .info-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .map-consent {
        height: 280px;
        border-radius: var(--radius-md);
    }

    .kontakt-card {
        padding: 32px 20px;
        border-radius: var(--radius-lg);
    }

    .kontakt-card h3 {
        font-size: 1.3rem;
    }

    .kontakt-rolle {
        font-size: 0.8rem;
    }

    .kontakt-item {
        font-size: 0.82rem;
        padding: 8px 10px;
        gap: 8px;
        word-break: break-word;
    }

    .kontakt-item svg {
        width: 16px;
        height: 16px;
    }

    .marquee-section {
        padding: 16px 0;
    }

    .marquee-track span {
        font-size: 0.8rem;
    }

    .marquee-track {
        gap: 24px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-inner {
        gap: 24px;
        padding-bottom: 32px;
    }

    .footer-logo {
        height: 28px;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-links h4 {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .footer-links a,
    .footer-links p {
        font-size: 0.82rem;
    }

    .footer-bottom {
        font-size: 0.72rem;
        padding: 16px 0;
    }
}
