/* --------------------------------------------------
   Farbvariablen (Global)
-------------------------------------------------- */
:root {
    --primary: #005FA3;
    --primary-dark: #004b82;
    --accent: #1A8CFF;
    --accent-dark: #0077e6;
    --whatsapp: #25D366;
    --whatsapp-dark: #1ebe5d;

    --text: #333;
    --bg-light: #f7f7f7;
    --bg-white: #fff;
    --border: #ddd;
    --shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* --------------------------------------------------
   Global
-------------------------------------------------- */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg-light);
    margin: 0;
    color: var(--text);
}

section {
    padding: 80px 20px;
    position: relative;
}

section + section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    background: #ddd;
    transform: translateX(-50%);
    opacity: 0.6;
}

h1, h2, h3 {
    margin-top: 0;
    line-height: 1.2;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }

.container {
    max-width: 1100px;
    margin: 40px auto;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* --------------------------------------------------
   Cards
-------------------------------------------------- */
.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* --------------------------------------------------
   Buttons
-------------------------------------------------- */
.btn {
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 10px;
}

.whatsapp-btn {
    background: var(--whatsapp);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}
.whatsapp-btn:hover { background: var(--whatsapp-dark); }

/* --------------------------------------------------
   Navbar
-------------------------------------------------- */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid #eee;
    padding: 1px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    color: var(--primary);

}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}
.nav-links a:hover { color: var(--primary); }

.nav-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* --------------------------------------------------
   Hero (Premium)
-------------------------------------------------- */
.hero-premium,
.hero-region {
    position: relative;
    height: 520px;
    background: url('/static/img/hero-premium.jpg') center/cover no-repeat;
}

.hero-premium::before,
.hero-region .hero-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-inner h1,
.hero-inner p {
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

/* Fade-in Animation */
.hero-region {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1.2s ease-out forwards;
    background-attachment: fixed;
}

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

@media (max-width: 900px) {
    .hero-region { background-attachment: scroll; }
}

/* --------------------------------------------------
   Social Proof
-------------------------------------------------- */
.social-proof {
    background: #f0f6fb;
    padding: 40px 20px;
}

.proof-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.proof-grid h2 {
    font-size: 28px;
    color: var(--primary);
}

/* --------------------------------------------------
   Services
-------------------------------------------------- */
.services,
.steps {
    max-width: 1100px;
    margin: auto;
}

.service-grid,
.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card,
.step {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* --------------------------------------------------
   FAQ
-------------------------------------------------- */
.faq {
    max-width: 900px;
    margin: auto;
}

.faq-item { margin-bottom: 15px; }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.faq-answer {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid var(--border);
}

/* --------------------------------------------------
   CTA
-------------------------------------------------- */
.cta {
    background: #005bbb;
    color: white;
    padding: 80px 20px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 20px;
}

.cta-mid {
    background: #eef5ff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 20px;
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 20px 20px;
}

.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer h3, .footer h4 { color: white; }

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

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
}

/* --------------------------------------------------
   Mobile
-------------------------------------------------- */
@media (max-width: 800px) {

    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        padding: 20px 25px;
        z-index: 1200;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        gap: 12px;
    }

    .nav-links.show { display: flex; }

    .nav-links a {
        display: block;
        text-align: left;
        padding: 14px 0;
        font-size: 1.2rem;
        font-weight: 500;
        color: #222;
        text-decoration: none;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child { border-bottom: none; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

