/* style.css */

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #222;
    background: #f5f6fa;
}

h1, h2, h3 {
    font-weight: 600;
    //color: #111;
}

p {
    margin-bottom: 0.75rem;
}

/* Hero */
.hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    background: linear-gradient(135deg, #0b1020, #1a2a6c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(0,212,255,0.18), transparent 55%);
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
}

.hero-content {
    position: relative;
    max-width: 900px;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
	color: #FFF;
}

.hero p {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 1.5rem auto;
    color: #e5e9f0;
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid #e1e4ea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #1a2a6c;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #ff8c00, #ff5c33);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.28);
    opacity: 0.95;
}

/* Sektionen */
.section {
    padding: 4rem 1.5rem;
}

.section-light {
    background: #f5f6fa;
}

.section-dark {
    background: #111827;
    color: #e5e7eb;
}

.section-dark h2 {
    color: #f9fafb;
}

.section-accent {
    background: linear-gradient(135deg, #0f172a, #1f2937);
    color: #e5e7eb;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) minmax(0,1.2fr);
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Karten & Elemente */
.card-highlight {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15,23,42,0.12);
}

.section-dark .card-highlight,
.section-accent .card-highlight {
    background: rgba(15,23,42,0.8);
    color: #e5e7eb;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 22px rgba(15,23,42,0.08);
    border-top: 3px solid #ff8c00;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.quote-box {
    background: rgba(15,23,42,0.9);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    color: #e5e7eb;
    border-left: 4px solid #ff8c00;
}

.quote-text {
    font-style: italic;
    margin-bottom: 0.75rem;
}

.quote-author {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Listen */
.checklist {
    list-style: none;
    margin: 0.75rem 0 0.75rem 0;
}

.checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.35rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 700;
}

/* Kontaktformular */
.contact-form {
    margin-top: 1.5rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background: #f9fafb;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37,99,235,0.3);
    background: #fff;
}

select[multiple] {
    min-height: 120px;
}

small {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

textarea {
    resize: vertical;
}

.form-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    min-height: 1.2em;
}

.form-status.success {
    color: #16a34a;
}

.form-status.error {
    color: #b91c1c;
}

/* Footer */
.footer {
    background: #020617;
    color: #9ca3af;
    padding: 1.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.85rem;
}

.footer-meta {
    margin-top: 0.25rem;
    opacity: 0.9;
}

/* Responsiv */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 4rem 1.5rem 3rem 1.5rem;
    }
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .main-nav ul {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* SCHÖNERER RECHTER BLOCK */
.card-highlight {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;  /* Mehr Innenabstand */
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 5px 15px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);  /* Glanz-Effekt */
    border: 1px solid rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

.card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff5c33, #ff8c00);
    border-radius: 20px 20px 0 0;
}

.card-highlight h3 {
    margin-bottom: 1.5rem;
    color: #1a2a6c;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.card-highlight ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.card-highlight li {
    position: relative;
    padding: 1rem 0 1rem 2.2rem;  /* Mehr Zeilenabstand */
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid rgba(229,231,235,0.5);
}

.card-highlight li:last-child {
    border-bottom: none;
}

.card-highlight li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 1rem;
    background: linear-gradient(135deg, #ff8c00, #ff5c33);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255,140,0,0.4);
}

.note {
    background: rgba(255,140,0,0.1);
    border-left: 4px solid #ff8c00;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
    font-style: italic;
    color: #7c2d12;
    font-weight: 500;
}

/* DUNKLE CARDS für section-accent */
.card-highlight-dark {
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border: 1px solid rgba(75, 85, 99, 0.5);
    color: #f9fafb;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.card-highlight-dark h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.card-highlight-dark li {
    color: #e5e7eb;
    font-weight: 500;
    padding: 1rem 0 1rem 2.2rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    position: relative;
}

.card-highlight-dark li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.1rem;
}

.card-highlight-dark li:last-child {
    border-bottom: none;
}

/* Textbalance für gleiche Höhen */
.grid-2 > div {
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .grid-2 > div {
        min-height: auto;
    }
}