/* =========================================
   GRUNDLAGEN & VARIABLEN
   ========================================= */
:root {
    --primary: #2c3e50;    /* Dunkelblau / Dunkelgrau */
    --accent: #003da5;     /* Akzent-Blau laut Wunsch */
    --light: #f4f7f6;
    --text: #333;
    --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; margin: 0; color: var(--text); }

.container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }

/* =========================================
   NAVIGATION
   ========================================= */
.custom-nav { position: sticky; top: 0; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 10px 20px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.nav-icon { height: 45px; width: auto; border-radius: 5px; }
.nav-brand-name { color: var(--primary); font-weight: bold; font-size: 1.2rem; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { 
    font-weight: 700 !important; /* Behält die Fettschrift bei */
    border: none !important;     /* Entfernt den Rahmen */
    padding: 0 !important;       /* Setzt das Padding auf Standard zurück */
}

/* =========================================
   HERO & SKULPTUR
   ========================================= */
.hero { background: #f9f9f9; padding: 40px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero-text h1 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }

.hero-sculpture-wrapper { position: relative; display: inline-block; cursor: pointer; border-radius: 10px; overflow: hidden; }
.hero-sculpture { max-width: 100%; height: auto; display: block; transition: 0.5s; }
.hero-sculpture-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(245, 241, 232, 0.85); color: var(--accent);
    display: flex; justify-content: center; align-items: center; text-align: center;
    padding: 20px; opacity: 0; visibility: hidden; transition: 0.4s;
}
.hero-sculpture-wrapper:hover .hero-sculpture-overlay { opacity: 1; visibility: visible; }

/* =========================================
   ÜBER MICH
   ========================================= */
.section-light { background: var(--white); }
.profile-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.img-responsive { max-width: 100%; height: auto; border-radius: 8px; }
.motto { font-size: 1.3rem; font-style: italic; border-left: 5px solid var(--accent); padding-left: 20px; margin: 30px 0; }

/* =========================================
   GEMEINSAME ELEMENTE (Karten & Indikatoren)
   ========================================= */
.section-alt { background: var(--light); }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; color: var(--primary); }

.download-indicator { 
    align-self: flex-end; font-size: 0.7rem; color: var(--accent); font-weight: bold; 
    text-transform: uppercase; margin-bottom: 10px; opacity: 0.5; transition: 0.3s;
}

/* =========================================
   ANGEBOTS-KARTEN (Hover-Logik)
   ========================================= */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }

.offer-card { 
    position: relative; background: white; padding: 30px; border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; cursor: pointer; 
    display: flex; flex-direction: column; border-bottom: 4px solid transparent;
}
.offer-card h3 { color: var(--accent); margin-top: 0; transition: 0.3s; }
.offer-card ul { list-style: none; padding: 0; flex-grow: 1; }
.offer-card li::before { content: "→ "; color: var(--accent); font-weight: bold; }

/* Hover Verhalten Kacheln */
.offer-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-bottom: 4px solid var(--accent); }
.offer-card:hover h3 { color: var(--primary); } /* Wechselt zu Dunkelblau/Grau */
.offer-card:hover .download-indicator { opacity: 1; }

/* =========================================
   PROZESS-FLOW (Hover-Logik)
   ========================================= */
.process-flow { display: flex; flex-wrap: nowrap; justify-content: space-between; gap: 15px; margin-top: 60px; }

.flow-step { 
    position: relative; flex: 1; background: var(--white); padding: 20px 15px 25px; 
    border-radius: 8px; text-align: center; border-bottom: 4px solid var(--accent); 
    transition: 0.3s; cursor: pointer; display: flex; flex-direction: column;
}
.flow-step span { display: block; font-size: 2rem; color: var(--accent); font-weight: bold; transition: 0.3s; }
.flow-step strong { display: block; margin: 10px 0 5px; color: var(--accent); transition: 0.3s; } /* Startfarbe Blau */
.flow-step small { color: #666; line-height: 1.2; }

/* Hover Verhalten Prozess-Schritte */
.flow-step:hover { transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.flow-step:hover span { color: var(--primary); } /* Nummer wird Dunkel */
.flow-step:hover strong { color: var(--primary); } /* Überschrift wird Dunkel */
.flow-step:hover .download-indicator { opacity: 1; }

/* =========================================
   PARTNER & FOOTER
   ========================================= */
.partner-container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.partner-block-link { text-decoration: none; color: var(--primary); display: flex; flex-direction: column; align-items: center; gap: 10px; transition: 0.3s; }
.partner-block-link:hover { transform: scale(1.02); }
.partner-logo { max-width: 250px; height: auto; margin-bottom: 10px; }
.partner-name { font-size: 1.2rem; font-weight: bold; margin: 0; }
.partner-info-text { font-size: 0.9rem; opacity: 0.7; }

footer { background: var(--primary); color: white; text-align: center; padding: 40px 20px; margin-top: 60px; }
footer a { color: white; text-decoration: none; }

.footer-legal-links { margin: 20px 0; font-size: 0.9rem; }
.footer-legal-links a { margin: 0 10px; cursor: pointer; transition: 0.3s; border-bottom: 1px solid transparent; }
.footer-legal-links a:hover { color: var(--accent); border-bottom: 1px solid var(--accent); }

.footer-impressum { margin-top: 40px; font-size: 0.8rem; opacity: 0.8; }
.footer-impressum hr { width: 60px; border: 1px solid var(--accent); margin: 20px auto; }

/* Legal Content Styles */
#legal-content { text-align: left; }
#legal-content h3 { color: var(--primary); margin-top: 0; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 5px; margin-bottom: 20px; }
#legal-content p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 15px; }

@media (max-width: 850px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .hero-grid, .profile-grid { grid-template-columns: 1fr; text-align: center; }
    .process-flow { flex-wrap: wrap; }
    .flow-step { flex: 1 1 200px; }
}