/* =========================
   BASIS
========================= */
:root {
    --blue: #2563eb;        /* Hauptfarbe */
    --blue-dark: #1e40af;   /* Hover / stärker */
    --blue-light: #eff6ff;  /* dezente Flächen */

    --dark: #0f172a;        /* Text */
    --gray: #64748b;        /* sekundärer Text */

    --light: #f8fafc;       /* Hintergrund */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    color: var(--dark);
    line-height: 1.6;
	background: #ffffff;
}
html {
    scroll-behavior: smooth;
}

.dev-banner {
    background: #facc15;
    color: #1e293b;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* =========================
   HEADER
========================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue);
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;              
    font-size: 0.95rem;
    letter-spacing: 0.3px;         
    padding: 6px 4px;
    position: relative;
    transition: 0.2s;
}

nav a:hover {
    color: var(--blue);
}

/* optional: dezente Unterstreichung beim Hover */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--blue);
    transition: 0.25s;
    border-radius: 2px;
}

nav a:hover::after {
    width: 100%;
}

.nav-btn {
    margin-left: 30px;
    background: var(--blue);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.nav-btn:hover {
    background: var(--blue-dark);
}
/* =========================
   HERO
========================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 50px;

    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    color: white;
    gap: 40px;
}

.hero h2 {
    font-size: 2.8em;
    line-height: 1.2;
}

.hero p {
    margin: 20px 0;
    max-width: 500px;
}

.hero img {
    width: 450px;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    background: white;
    color: var(--blue);
    padding: 14px 28px;
    font-weight: 600;
	letter-spacing: 0.2px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.25s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* =========================
   USP
========================= */
.usp {
    padding: 80px 50px 140px 50px;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.usp-card {
    max-width: 400px;
    margin: auto;

    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.25s;
}

.usp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.usp h3 {
    color: var(--blue);
    margin-bottom: 10px;
}

.usp p {
    color: #475569;
}
.usp-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: 10px;
    color: var(--blue);
}

/* =========================
   SERVICES
========================= */

.services {
    padding: 100px 40px;
    background: #ffffff;
    margin-top: 80px;
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.services h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
    position: relative;
}

.services h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--blue);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.card h3 {
    color: var(--blue);
    margin-bottom: 10px;
}

/* =========================
   STATS
========================= */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 60px;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

.stats h2 {
    font-size: 2em;
}

/* =========================
   ABOUT
========================= */
.about {
    padding: 80px 50px;
    display: flex;
    gap: 40px;
}

.about img {
    width: 400px;
    border-radius: 10px;
}

.about h2 {
    margin-bottom: 15px;
}
/* =========================
   projects
========================= */
.projects {
    padding: 100px 40px;
    background: #ffffff;
    margin-top: 80px;
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.projects h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
    position: relative;
}

.projects h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--blue);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* =========================
   CTA
========================= */
.cta {
    padding: 80px 20px;
    text-align: center;
    background: var(--blue);
    color: white;
}

.cta p {
    margin: 15px 0;
}
.cta .btn {
    font-size: 1.1rem;
    padding: 16px 32px;

    background: white;
    color: var(--blue);

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta .btn:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}
/* =========================
   CONTACT
========================= */
.contact {
    padding: 80px 50px;
    background: var(--light);
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: auto;
    text-align: left;
}


form input:not([type="checkbox"]),
form textarea {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 10px auto;

    padding: 12px 14px;                 
    border: 1px solid #cbd5e1;          
    border-radius: 8px;                 
    font-size: 0.95rem;
    background: white;
    transition: 0.2s;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
form label {
    display: block;
    max-width: 600px;
    margin: 15px auto 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

button {
    width: 100%;
    background: var(--blue);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #1e40af;
}
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    max-width: 600px;
    margin: 15px 0;

    text-align: left;
}

.checkbox input {
    margin-top: 4px;
    margin: 0;
}

.checkbox span {
    flex: 1;
}

.checkbox a {
    color: var(--blue);
    text-decoration: underline;
}

/* =========================
   Öffungszeiten
========================= */
.opening-hours {
    max-width: 600px;
    margin: 30px auto 0;
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.opening-hours h3 {
    margin-bottom: 10px;
    color: var(--blue);
}

.opening-hours p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* =========================
   FAQ
========================= */
.faq {
    padding: 80px 50px;
    display: flex;
    gap: 40px;
}


.faq h2 {
    margin-bottom: 15px;
}

/* =========================
   SEO TEXT
========================= */
.seo-text {
    padding: 50px 20px;
    background: #f1f5f9;
}

.seo-text p {
    max-width: 700px;
    margin: auto;
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #475569;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 30px;
    background: var(--dark);
    color: white;
}
.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* =========================
   MOBILE
========================= */
@media(max-width: 900px) {

    header {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero img {
        width: 100%;
        max-width: 400px;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about img {
        width: 100%;
        max-width: 400px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media(max-width: 600px) {
    .logo img {
        height: 30px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }
  #cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    #cookie-banner button {
        width: 100%;
    }
}
.impressum {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    line-height: 1.7;
}

.impressum h1 {
    margin-bottom: 20px;
}

.impressum h2 {
    margin-top: 25px;
    font-size: 1.2rem;
    color: var(--blue);
}
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    
    color: var(--dark);
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    display: flex;
    align-items: center;
    gap: 20px;

    max-width: 700px;
    width: calc(100% - 40px);
    z-index: 2000;
}

#cookie-banner p {
    font-size: 0.9rem;
    flex: 1;
    color: var(--dark);
}

#cookie-banner a {
    color: var(--blue);
    text-decoration: underline;
}

#cookie-banner button {
    background: var(--blue);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

#cookie-banner button:hover {
    background: var(--blue-dark);
}