/* Start custom CSS */:root {
    --color-primary: #2D4A3E;
    --color-primary-light: #3D6B5A;
    --color-accent: #D4A574;
    --color-accent-hover: #C4956A;
    --color-warm: #E8DDD4;
    --color-warm-light: #F5F0EB;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-border: #E0D6CC;

    --font-display: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --shadow-soft: 0 4px 20px rgba(45, 74, 62, 0.08);
    --shadow-medium: 0 8px 30px rgba(45, 74, 62, 0.12);
    --shadow-hover: 0 12px 40px rgba(45, 74, 62, 0.16);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-light);
}

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-accent);
}

/* ========================================
   Layout
======================================== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(45, 74, 62, 0.1) 0%,
        rgba(45, 74, 62, 0.4) 50%,
        rgba(45, 74, 62, 0.85) 100%
    );
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
    padding: 80px 24px 100px;
    width: 100%;
}

/* Badge & Headline */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.8;
}

/* ========================================
   Main Content
======================================== */
.content {
    background: var(--color-white);
    margin-top: -40px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    z-index: 2;
}

.content-inner {
    padding: 60px 24px 80px;
    max-width: 1024px;
    margin: 0 auto;
}

/* ========================================
   Typography
======================================== */
h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 56px 0 24px;
    line-height: 1.3;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: 40px 0 16px;
}

p {
    margin-bottom: 20px;
    color: var(--color-text);
}

/* ========================================
   Highlight Box
======================================== */
.highlight-box {
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-warm-light) 100%);
    border-left: 4px solid var(--color-accent);
    padding: 28px 32px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 36px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--color-primary);
    font-style: italic;
}

/* ========================================
   Quote Examples
======================================== */
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.quote-card {
    background: var(--color-warm-light);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
}

.quote-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-accent);
}

.quote-card p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0;
    font-weight: 500;
}

/* ========================================
   Product Gallery
======================================== */
.gallery-section {
    background: var(--color-warm-light);
    padding: 60px 24px;
    margin: 60px -24px;
}

.gallery-section h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 12px;
}

.gallery-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--color-text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--color-warm);
}

.gallery-item figcaption {
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
    text-align: center;
}

/* ========================================
   Product Highlights
======================================== */
.products-section {
    margin: 60px 0;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.product-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-soft);
}

.product-name {
    font-weight: 600;
    color: var(--color-primary);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.product-link:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateX(4px);
}

.product-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.product-link:hover svg {
    transform: translateX(3px);
}

/* ========================================
   Benefits List
======================================== */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 14px;
    height: 14px;
    color: var(--color-white);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* ========================================
   Fazit / Conclusion
======================================== */
.fazit {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    margin: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.fazit::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.fazit-content {
    position: relative;
    z-index: 1;
}

.fazit h2 {
    color: var(--color-white);
    margin: 0 0 20px;
    font-size: 1.6rem;
}

.fazit p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.fazit p:last-of-type {
    margin-bottom: 0;
}

/* ========================================
   CTA Buttons
======================================== */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Author Box
======================================== */
.author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--color-warm-light);
    border-radius: var(--radius-md);
    margin: 48px 0 0;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 700;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--color-primary);
    padding: 40px 24px;
    text-align: center;
}

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

.footer a {
    color: var(--color-accent);
}

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

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }

    .hero-content {
        padding: 60px 20px 80px;
    }

    .content-inner {
        padding: 40px 20px 60px;
    }

    h2 {
        font-size: 1.5rem;
        margin: 40px 0 20px;
    }

    .gallery-section {
        padding: 40px 20px;
        margin: 40px -20px;
    }

    .fazit {
        padding: 36px 28px;
    }

    .product-item {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-group {
        flex-direction: column;
    }

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

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Animations
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.hero-image {
    animation: slowZoom 20s ease-out forwards;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}/* End custom CSS */