/* mass-plissees.de Premium Design */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    /* Colors */
    --color-primary: #2C3E50;
    --color-secondary: #E67E22;
    --color-accent: #1ABC9C;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F9FA;
    --color-text: #34495E;
    --color-text-light: #7F8C8D;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* UI */
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
/* Typography Improvements */
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
    /* Add breathing room above new sections */
}

h2:first-child,
h3:first-child {
    margin-top: 0;
    /* No top margin for the very first heading */
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-top: var(--space-lg);
    /* Slightly less space for sub-headings */
}

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

ul,
ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: 6rem 0;
    /* Increased from 4rem for more air */
}

/* Header - Keep concise */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

/* ... (keep existing header styles) ... */

/* Legal Content Specifics */
.legal-content h2 {
    border-bottom: 2px solid var(--color-bg-alt);
    padding-bottom: var(--space-sm);
}

.legal-content h3 {
    color: var(--color-secondary);
}

/* Helper Classes */
.mb-lg {
    margin-bottom: var(--space-lg);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.py-xl {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

/* ... (rest of the file) ... */

.seo-footer-text {
    background: #f8f9fa;
    padding: var(--space-xl) 0;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #666;
}

.seo-footer-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-text);
    margin-top: 0;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

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

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: var(--space-xl);
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-image {
    flex: 1;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

/* Features/Benefits Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

/* Image Sections */
.split-section {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

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

.split-image img {
    transition: transform 0.5s ease;
}

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

/* Footer */
footer {
    background: var(--color-primary);
    color: white;
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.footer-col a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero {
        flex-direction: column-reverse;
        height: auto;
        padding-top: 100px;
    }

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

    .split-section {
        flex-direction: column !important;
    }

    .hero-image {
        width: 100%;
        height: 400px;
    }
}

/* Additional Styles for Expanded Content */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.bg-light {
    background-color: var(--color-bg-alt);
}

.intro-text h3 {
    font-size: 1.5rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.stars {
    color: #f1c40f;
    margin-bottom: var(--space-sm);
}

.author {
    font-weight: 600;
    margin-top: var(--space-sm);
    color: var(--color-primary);
}

.seo-footer-text {
    background: #f8f9fa;
    padding: var(--space-xl) 0;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #666;
}

.seo-footer-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}