/* ============================================
   BEE BLESSED - Main Stylesheet
   Honig, der Gutes bewirkt
   ============================================ */

/* ========== CSS Variables ========== */
:root {
    /* Colors */
    --background: #FFF9F0;
    --foreground: #2D1B0E;
    --card: #FFFFFF;
    --primary: #E6A824;
    --primary-foreground: #2D1B0E;
    --secondary: #8B5A3C;
    --secondary-foreground: #FFFFFF;
    --muted: #D4B896;
    --muted-foreground: #5A4A3A;
    --accent: #7FA650;
    --accent-foreground: #FFFFFF;
    --border: rgba(139, 90, 60, 0.15);
    --white-color: #FFFFFF;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;

    /* Shadows */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    /* Platz reservieren, damit Anker-Ziele nicht vom festen Header überdeckt werden */
    scroll-padding-top: 84px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========== Container ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== Header / Navigation ========== */
header {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    /* Etwas durchsichtiger machen */
    background: rgba(255, 249, 240, 0.78);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

/* Neues Styling: stellt sicher, dass ein <img> innerhalb des kreisförmigen Logos korrekt skaliert und zentriert ist */
.logo-icon img {
    /* etwas größer im Kreis */
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

/* Footer-Logo: Bild passend in kreisförmigem Footer-Icon skalieren */
.footer-logo-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.logo-title {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.logo-link:hover .logo-title {
    color: var(--primary);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    position: relative;
    font-weight: 500;
    color: var(--foreground);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a.active {
    color: var(--secondary);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu:hover {
    color: var(--secondary);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.35), rgba(0,0,0,0.6));
}

/* Decorative Blur Elements */
.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.hero-blur-1 {
    top: 80px;
    right: 80px;
    width: 400px;
    height: 400px;
    background: var(--primary);
}

.hero-blur-2 {
    bottom: 80px;
    left: 80px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

/* Hero Typography - Lighter & More Elegant */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: white;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.15;
    animation: slideUp 0.8s ease 0.2s backwards;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    animation: slideUp 0.8s ease 0.4s backwards;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 750px;
    margin: 0 auto;
    animation: slideUp 0.8s ease 0.6s backwards;
    line-height: 1.7;
    font-weight: 300;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(230, 168, 36, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    box-shadow: var(--shadow-xl);
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-2px) scale(1.05);
}

.btn-accent {
    background: var(--primary);
    color: var(--primary-foreground);
}

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

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

.btn-product:hover {
    background: var(--primary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-newsletter {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.875rem 2rem;
}

.btn-newsletter:hover {
    background: var(--accent);
    color: white;
}

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header-compact {
    margin-bottom: var(--spacing-md);
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
    color: var(--secondary);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== Why Section ========== */
.why-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, white, var(--background), white);
    position: relative;
    overflow: hidden;
}

/* Background Blur Elements */
.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.bg-blur-left {
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: var(--primary);
}

.bg-blur-right {
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--accent);
}

.bg-blur-top {
    top: 25%;
    right: 0;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.bg-blur-bottom {
    bottom: 25%;
    left: 0;
    width: 400px;
    height: 400px;
    background: var(--accent);
}

.bg-blur-top-right {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.bg-blur-bottom-left {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: var(--accent);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139, 90, 60, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 168, 36, 0.05), rgba(127, 166, 80, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(230, 168, 36, 0.3);
}

.value-card:hover .card-gradient {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.value-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(3deg);
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: var(--primary);
}

.value-card p {
    color: var(--foreground);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ========== Product Highlights ========== */
.product-highlights {
    padding: var(--spacing-xl) 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.product-content p {
    color: var(--foreground);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.product-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Mission Note */
.mission-note {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(230, 168, 36, 0.1), rgba(127, 166, 80, 0.1));
    border-radius: var(--radius-2xl);
    padding: var(--spacing-lg);
    border: 1px solid rgba(230, 168, 36, 0.2);
}

.mission-note p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.mission-note-highlight {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--secondary);
}

/* ========== Mission Teaser ========== */
.mission-teaser {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(127, 166, 80, 0.12), rgba(230, 168, 36, 0.12), rgba(0, 0, 0, 0.05));
    position: relative;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.mission-image-container {
    position: relative;
}

.mission-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid white;
}

.mission-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 90, 60, 0.4), transparent);
}

/* Floating Stats Card */
.stats-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-2xl);
    border: 2px solid rgba(230, 168, 36, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon i {
    color: white;
    font-size: 1.5rem;
}

.stats-number {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.stats-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Mission Content */
.mission-content {
    padding-left: var(--spacing-md);
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(127, 166, 80, 0.2);
    border: 1px solid rgba(127, 166, 80, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.impact-badge i {
    fill: currentColor;
}

.mission-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.mission-text {
    margin-bottom: var(--spacing-lg);
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* Impact Highlights */
.impact-highlights {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.impact-item {
    flex: 1;
    text-align: center;
}

.impact-value {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.impact-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.impact-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.mission-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ========== Gallery ========== */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: white;
    color: var(--foreground);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(230, 168, 36, 0.1);
    border-color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: white;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ========== About Mission ========== */
.about-mission {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, white, var(--background), white);
    position: relative;
    overflow: hidden;
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: 7rem;
}

.story-grid-reverse {
    direction: rtl;
}

.story-grid-reverse > * {
    direction: ltr;
}

.story-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.story-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid white;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, rgba(230, 168, 36, 0.1), rgba(127, 166, 80, 0.05), rgba(230, 168, 36, 0.1));
    border: 1px solid rgba(230, 168, 36, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    margin-bottom: 5rem;
}

.values-section h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

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

.value-item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.value-item:hover .value-item-icon {
    transform: scale(1.1) rotate(3deg);
}

.value-item-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.value-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

.value-item:hover h4 {
    color: var(--primary);
}

.value-item p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.impact-section h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.impact-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.thank-you-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(127, 166, 80, 0.75), rgba(107, 143, 67, 0.75));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(127, 166, 80, 0.4);
    border-radius: 50px;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(127, 166, 80, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.thank-you-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 166, 80, 0.35);
    background: linear-gradient(135deg, rgba(138, 183, 94, 0.85), rgba(127, 166, 80, 0.85));
}

.thank-you-button i {
    font-size: 1.25rem;
}

.thank-you-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(127, 166, 80, 0.2), rgba(230, 168, 36, 0.2));
    border: 2px solid rgba(127, 166, 80, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 1.125rem;
    font-weight: 600;
}

.thank-you-badge i {
    color: var(--accent);
    fill: currentColor;
}

/* ========== Contact ========== */
.contact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(230, 168, 36, 0.08), rgba(255, 200, 87, 0.06), rgba(230, 168, 36, 0.05));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info {
    padding: var(--spacing-lg) 0;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.contact-details {
    margin: var(--spacing-lg) 0;
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(230, 168, 36, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    border-color: var(--primary);
    background: rgba(230, 168, 36, 0.08);
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-text p,
.contact-text a {
    color: var(--muted-foreground);
    font-size: 1rem;
}

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

/* Map Container */
.map-container {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(230, 168, 36, 0.15);
}

.contact-form-container h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 168, 36, 0.15);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #E53935;
}

.error-message {
    color: #E53935;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========== Footer ========== */
footer {
    background: linear-gradient(to bottom, #5D4E37, #4A3C28, #3D3021);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
    background: url('../img/dji_fly_20240528_075108_0526_1744375205959_photo.JPEG') no-repeat center;
    background-size: cover;
    opacity: 0.04;
}

/* Newsletter Section */
.newsletter-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-sm);
    color: white;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

/* Main Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-brand {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
    transition: transform 0.3s ease;
}

.footer-col ul li:hover {
    transform: translateX(8px);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

.footer-contact-list i {
    color: var(--primary);
    font-size: 1.125rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

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

/* ========== Scroll to Top Button ========== */
.scroll-to-top {
    display: none !important;
}

/* ========== Notifications ========== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2xl);
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: var(--transition-slow);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.hide {
    opacity: 0;
    transform: translateX(400px);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.notification-success {
    border-left: 5px solid #4CAF50;
}

.notification-error {
    border-left: 5px solid #E53935;
}

/* ========== Lazy Loading Images ========== */
img[data-src] {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

img[data-src].loaded {
    filter: blur(0);
}

/* Placeholder für ladende Bilder */
.gallery-item img:not(.loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

/* ========== Lightbox Modal ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    z-index: 10002;
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.125rem;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10003;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close i,
.lightbox-prev i,
.lightbox-next i {
    font-size: 1.5rem;
}

/* Mobile Optimierungen für Lightbox */
@media screen and (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close i,
    .lightbox-prev i,
    .lightbox-next i {
        font-size: 1.25rem;
    }

    .lightbox-caption {
        bottom: 10px;
        font-size: 0.95rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 80vh;
    }
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========== Custom Scrollbar ========== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========== Accessibility ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .mission-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .story-grid-reverse {
        direction: ltr;
    }

    .stats-card {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .value-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu {
        display: block;
        z-index: 1002;
        position: relative;
        padding: 0.5rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    nav {
        position: static;
    }

    nav ul {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 12px;
        right: 12px;
        flex-direction: column;
        background: var(--white-color);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        padding: var(--spacing-md);
        border-radius: var(--radius-md);
        gap: 0;
        z-index: 1001;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1.0625rem;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    nav ul li a:active {
        background: rgba(230, 168, 36, 0.1);
    }

    .stats-card {
        bottom: 1rem;
        right: 1rem;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Sections */
    section {
        padding: var(--spacing-lg) 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1.25rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========== Print Styles ========== */
@media print {
    header,
    footer,
    .mobile-menu,
    .btn,
    .scroll-to-top,
    .notification {
        display: none;
    }
}

/* ========== Impressum Page Styles ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--white-color);
    margin-top: 84px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-sm);
    color: var(--white-color);
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.impressum-content {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.impressum-section {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-section h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary);
}

.impressum-block {
    background: var(--card);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.impressum-block h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.impressum-block p {
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-sm);
}

.impressum-block p:last-child {
    margin-bottom: 0;
}

.impressum-block a {
    color: var(--primary);
    transition: var(--transition);
}

.impressum-block a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.impressum-block i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Footer Impressum Link */
.footer-bottom a {
    color: var(--primary);
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .page-header {
        margin-top: 70px;
        padding: var(--spacing-lg) 0;
    }

    .impressum-section h2 {
        font-size: 1.5rem;
    }

    .impressum-block {
        padding: var(--spacing-sm);
    }
}
