/* --- style.css --- */


/* --- LOKALE SCHRIFTEN (DSGVO-KONFORM) --- */

/* Manrope (Light) */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/manrope-300.woff2') format('woff2');
    font-display: swap;
}

/* Manrope (Regular) */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/manrope-400.woff2') format('woff2');
    font-display: swap;
}

/* Manrope (SemiBold) */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/manrope-600.woff2') format('woff2');
    font-display: swap;
}

/* Playfair Display (Regular) */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/playfair-400.woff2') format('woff2');
    font-display: swap;
}

/* Playfair Display (SemiBold) */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/playfair-600.woff2') format('woff2');
    font-display: swap;
}




:root {
    /* FARBPALETTE */
    --bg-body: #FDFBF9; 
    --bg-section: #F3F4F6;
    --primary: #1A3A32; /* Deep Forest Green */
    --accent: #C58940; /* Cognac */
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A; 
    --white: #ffffff;
    --shadow: 0 20px 40px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth; /* Neu: Sanftes Scrollen */
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 100%; 
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

p { margin-bottom: 1.5rem; color: var(--text-light); font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: 0.3s; }

/* --- LOGO STYLE --- */
.logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 30px;
    background: none;
    border: none;
   /* filter: brightness(0) invert(1); */
    opacity: 1 /* 0.95; */
}

/* --- ANIMATIONEN --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 32px; 
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    cursor: pointer;
    border-radius: 2px;
text-align: center;
max-width: 100%;
}
.btn:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.btn-link:hover { color: var(--primary); }

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* --- HERO SECTION --- */
.hero {
    min-height: 85vh; 
    display: flex;
    align-items: center;
    position: relative;
    background-color: #e8eceb;
    padding: 120px 0 160px 0; 
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('media/skandinavisches-design-holzspielzeug-regal.png'); 
    background-size: cover; background-position: center;
    opacity: 1; z-index: 0;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20, 45, 38, 0.75); 
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding-left: 0;
    text-align: center;
    margin: 0 auto;
}

.hero h1 { 
    color: var(--white); 
    font-size: clamp(2.5rem, 5vw, 4.2rem); 
    line-height: 1.1; 
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p { 
    color: #f0f0f0; 
    font-size: 1.25rem; 
    max-width: 700px; 
    margin: 0 auto 0 auto;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* --- SWITCH SECTION --- */
.switch-section {
    margin-top: -100px;
    padding-top: 0;
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

.switch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.switch-card {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden; 
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.switch-card:hover { transform: translateY(-8px); }

.switch-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.switch-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.switch-content h3 { font-size: 1.6rem; margin-bottom: 15px; color: var(--primary); }
.switch-content p { font-size: 1rem; color: var(--text-light); margin-bottom: 30px; flex-grow: 1; }

/* --- TRUST SECTION --- */
.trust-section { background-color: var(--white); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.trust-item h4 { font-size: 1.2rem; margin-bottom: 10px; font-family: 'Manrope', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.trust-number { font-size: 2.5rem; color: var(--accent); font-family: 'Playfair Display', serif; font-weight: 600; display: block; margin-bottom: 5px; }

/* --- ABOUT SECTION --- */
.about-section { background-color: var(--bg-section); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text { padding-right: 40px; }
.quote-box {
    border-left: 4px solid var(--accent);
    padding-left: 30px;
    margin-top: 30px;
    font-style: italic;
    color: var(--primary);
    font-size: 1.1rem;
}

/* --- PROZESS SECTION --- */
.process-section { background-color: var(--primary); color: var(--white); text-align: center; }
.process-section h2 { color: var(--white); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

/* Linie zwischen den Schritten */
.process-steps::before {
    content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 1px; background: rgba(255,255,255,0.3); z-index: 0;
}

.step-item { position: relative; z-index: 1; }
.step-number {
    width: 80px; height: 80px; line-height: 80px;
    background: var(--accent); color: var(--white);
    border-radius: 50%; margin: 0 auto 25px auto;
    font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600;
}
.step-item h4 { color: var(--white); font-family: 'Manrope', sans-serif; margin-bottom: 10px; font-size: 1.1rem; }
.step-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; max-width: 250px; margin: 0 auto; }

/* --- FOOTER --- */
footer {
    background: #111; 
    color: #d1d1d1; 
    padding: 80px 0 40px; 
    font-size: 1rem; 
}

footer .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    flex-wrap: wrap; 
    gap: 40px; 
}

footer h4 { color: var(--white); margin-bottom: 25px; letter-spacing: 1px; font-size: 1.2rem; }
footer a { color: #d1d1d1; display: block; margin-bottom: 15px; text-decoration: none; }
footer a:hover { color: var(--white); text-decoration: underline; }

.footer-col { flex: 1; min-width: 220px; }
.footer-bottom { border-top: 1px solid #333; margin-top: 60px; padding-top: 30px; text-align: center; font-size: 0.9rem; color: #888; }

/* --- MOBILE OPTIMIERUNG --- */
/* --- MOBILE OPTIMIERUNG (NEU & KORRIGIERT) --- */
@media (max-width: 768px) {
    /* 1. Header Text zentrieren */
    .hero { 
        padding: 100px 0 150px 0; 
        text-align: center; /* Wichtig */
    }
    .hero-content {
        width: 100%;
        text-align: center; /* Erzwingt Zentrierung */
        padding: 0 15px; /* Kleiner Abstand zum Rand */
    }
    .hero h1 { font-size: 2.2rem; }
    
    /* 2. Boxen-Layout fixen */
    .switch-grid { grid-template-columns: 1fr; gap: 40px; }
    .switch-section { margin-top: -40px; } 
    
    .logo { max-width: 180px; margin: 0 auto 30px auto; display: block; } 
    
    .about-grid { grid-template-columns: 1fr; }
    .about-text { padding-right: 0; margin-bottom: 40px; }
    
    .process-steps { grid-template-columns: 1fr; gap: 40px; }
    .process-steps::before { display: none; }
    
    /* 3. Footer nach RECHTS ausrichten */
    footer .container { 
        flex-direction: column; 
        text-align: right; /* Text nach rechts */
        align-items: flex-end; /* Flex-Boxen nach rechts schieben */
        gap: 50px; 
    }
    footer .footer-col { 
        min-width: 100%; 
        border-bottom: 1px solid #333; 
        padding-bottom: 30px; 
    }
    footer .footer-col:last-child { border-bottom: none; }
}

/* --- KONTAKT FORMULAR --- */
.contact-section {
    background-color: var(--white);
    padding: 100px 0;
}

.contact-wrapper {
    max-width: 700px; /* Schmaler, damit es lesbar bleibt */
    margin: 0 auto;
}

.contact-intro { text-align: center; margin-bottom: 40px; }

.contact-form {
    background: var(--bg-section);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

/* Anpassung Mobile */
@media (max-width: 768px) {
    .contact-form { padding: 25px; }
.btn {
        padding: 16px 15px; /* Weniger Seitenabstand */
        width: 100%;       /* Optional: Button über die volle Breite ziehen */
        box-sizing: border-box; /* Wichtig, damit Padding nicht die Breite sprengt */
    }
}
}