:root {
    --evc-navy: #12324a;
    --evc-navy-soft: #1d4f73;
    --evc-gold: #d6a84f;
    --evc-text: #223041;
    --evc-muted: #667085;
    --evc-bg: #f7fafc;
    --evc-bg-soft: #fbfdff;
    --evc-line: #e7edf4;
    --evc-white: #ffffff;
    --evc-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    --evc-shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.06);
    --evc-radius: 24px;
    --evc-radius-sm: 14px;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--evc-text);
    background: var(--evc-white);
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5 {
    letter-spacing: 0.3px;
    color: #142235;
    font-weight: 700;
}

h2 {
    font-weight: 700;
}

p {
    color: var(--evc-text);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Navbar */

.navbar {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(8px);
}

.navbar-brand {
    font-weight: 700 !important;
    color: var(--evc-navy) !important;
    letter-spacing: 0.2px;
}

.nav-link {
    color: #334155 !important;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--evc-navy) !important;
}

/* Buttons */

.btn {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--evc-navy) 0%, var(--evc-navy-soft) 100%);
    border: none;
    box-shadow: 0 12px 26px rgba(18, 50, 74, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #102c42 0%, #194667 100%);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--evc-navy);
    border-color: var(--evc-navy);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--evc-navy);
    border-color: var(--evc-navy);
    color: #fff;
}

/* Hero allgemein */

.hero {
    min-height: 90vh;
    background: url('images/hero.jpeg') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 38, 0.55);
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Einheitliche Sektionen */

.section-soft {
    background: linear-gradient(180deg, #fbfdff 0%, #f5f8fb 100%);
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 2.75rem auto;
    text-align: center;
}

.section-intro p {
    color: var(--evc-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

/* Cards / Boxen */

.premium-card,
.feature-box,
.content-card,
.info-card {
    background: var(--evc-white);
    border: 1px solid var(--evc-line);
    border-radius: var(--evc-radius);
    box-shadow: var(--evc-shadow);
}

.premium-card,
.info-card {
    padding: 30px 24px;
    height: 100%;
}

.feature-box,
.content-card {
    padding: 30px;
    height: 100%;
}

.premium-card h5,
.feature-box h4,
.feature-box h3,
.content-card h3,
.info-card h5 {
    color: var(--evc-navy);
    font-weight: 700;
    margin-bottom: 12px;
}

.premium-card p,
.feature-box p,
.content-card p,
.info-card p {
    color: var(--evc-muted);
    margin-bottom: 0;
    line-height: 1.75;
}

/* Bilder */

.feature-image,
.content-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: var(--evc-radius);
    box-shadow: var(--evc-shadow-soft);
}

@media (max-width: 768px) {
    .feature-image,
    .content-image {
        min-height: 240px;
    }
}

/* Chips / kleine Fachgebiete */

.topic-chip,
.info-chip {
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 999px;
    padding: 14px 18px;
    text-align: center;
    font-weight: 600;
    color: #17324d;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    height: 100%;
}

/* CTA Bereiche */

.cta-box,
.final-cta,
.highlight-box {
    background: linear-gradient(135deg, var(--evc-navy) 0%, var(--evc-navy-soft) 100%);
    color: #fff;
    border-radius: 28px;
    padding: 38px 28px;
    box-shadow: 0 18px 40px rgba(18, 50, 74, 0.22);
    text-align: center;
}

.cta-box h2,
.cta-box h3,
.final-cta h2,
.final-cta h3,
.highlight-box h2,
.highlight-box h3 {
    color: #fff;
}

.cta-box p,
.final-cta p,
.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */

.testimonial-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid var(--evc-line);
    border-radius: 24px;
    box-shadow: var(--evc-shadow);
    padding: 28px 24px;
    height: 100%;
}

.testimonial-card p {
    color: var(--evc-text);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card strong {
    color: var(--evc-navy);
}

/* Footer */

footer {
    background: #111827 !important;
}

footer p {
    margin-bottom: 0;
    color: #fff;
}

/* Accordion schöner */

.accordion-item {
    border: none;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 16px;
}

.accordion-button {
    background: #ffffff;
    color: #17324d;
    font-weight: 700;
    padding: 20px 22px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #edf5fb;
    color: var(--evc-navy);
}

.accordion-body {
    padding: 22px;
    background: #ffffff;
}

/* DW Formular modern */

.booking-card .table,
.table {
    background: white !important;
    border-radius: 18px;
    overflow: hidden;
    border-spacing: 0 !important;
}

.booking-card .head,
.head {
    background: linear-gradient(135deg, var(--evc-navy) 0%, var(--evc-navy-soft) 100%) !important;
    color: white !important;
    font-size: 18px;
}

.booking-card .main,
.main {
    padding: 12px !important;
}

.booking-card .main.align,
.main.align {
    font-weight: 500;
}

.booking-card .button_send,
.button_send {
    background: linear-gradient(135deg, var(--evc-navy) 0%, var(--evc-navy-soft) 100%) !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
}

.booking-card .button,
.button {
    padding: 10px 20px;
    border-radius: 12px;
}

.booking-card .input,
.booking-card .select,
.booking-card .textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Kleine Helfer */

.text-muted,
.text-secondary {
    color: var(--evc-muted) !important;
}

.rounded-premium {
    border-radius: var(--evc-radius) !important;
}

.shadow-premium {
    box-shadow: var(--evc-shadow) !important;
}
/* Hero-Titel nur auf der Startseite heller machen */
.hero-premium h1 {
    color: var(--evc-gold) !important;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* Optional: Hero-Unterzeile noch etwas klarer */
.hero-premium .hero-subtitle {
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.hero-premium .hero-meta,
.hero-premium .hero-date,
.hero-premium .lead,
.hero-premium .hero-kicker {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.30);
}