/* ==== SZ Transporte – Global Styles ==== */

/* Farben & Basis */
:root {
    --sz-primary: #C80000;
    --sz-secondary: #8A0000;
    --sz-text: #111111;
    --sz-grey-bg: #f4f4f4;
}

body {
    color: var(--sz-text);
    background: #ffffff;
}

/* Header / Topbar */
#sp-top-bar {
    background: #222222;
    color: #ffffff;
    font-size: 14px;
    padding: 6px 0;
}

#sp-top-bar a {
    color: #ffffff;
}
#sp-top-bar a:hover {
    color: var(--sz-primary);
}

#sp-header {
    background: #ffffff;
    border-bottom: 3px solid var(--sz-primary);
}

#sp-header .logo img {
    max-height: 70px;
}

/* Menü */
.sp-megamenu-parent > li > a {
    color: #111111;
    font-weight: 600;
}

.sp-megamenu-parent > li:hover > a,
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li.current-item > a {
    color: var(--sz-primary) !important;
}

/* Buttons */
.btn,
.sppb-btn,
button,
input[type="submit"],
input[type="button"] {
    background-color: var(--sz-primary);
    border-color: var(--sz-primary);
    color: #ffffff;
    border-radius: 4px;
}
.btn:hover,
.sppb-btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--sz-secondary);
    border-color: var(--sz-secondary);
    color: #ffffff;
}

/* Hero */
.sz-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
}
.sz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.sz-hero-inner {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}
.sz-hero-badge {
    display: inline-block;
    background: rgba(0,0,0,0.6);
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.sz-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}
.sz-hero-lead {
    font-size: 18px;
    max-width: 540px;
    margin-bottom: 30px;
}

/* Kachel-Grid (Leistungen / Fuhrpark) */
.sz-section {
    padding: 80px 0;
}
.sz-section-grey {
    background: var(--sz-grey-bg);
}
.sz-section-title {
    text-align: center;
    margin-bottom: 40px;
}
.sz-section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sz-section-title p {
    max-width: 520px;
    margin: 0 auto;
}

.sz-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.sz-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.sz-card-icon {
    font-size: 30px;
    margin-bottom: 12px;
    color: var(--sz-primary);
}
.sz-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.sz-card-text {
    font-size: 15px;
}

/* Über-uns Block */
.sz-about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* CTA-Band */
.sz-cta-band {
    background: linear-gradient(135deg, var(--sz-primary), var(--sz-secondary));
    color: #ffffff;
    padding: 40px 0;
}
.sz-cta-band h3 {
    margin: 0 0 10px;
    font-size: 26px;
}
.sz-cta-band p {
    margin: 0;
}

/* Footer */
#sp-footer {
    background: #222222;
    color: #ffffff;
    padding-top: 50px;
}
#sp-footer a {
    color: #ffffff;
}
#sp-footer a:hover {
    color: var(--sz-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .sz-hero-inner {
        text-align: center;
    }
    .sz-hero h1 {
        font-size: 32px;
    }
    .sz-hero-lead {
        margin: 0 auto 30px;
    }
    .sz-card {
        flex: 1 1 100%;
    }
}
/* ===== SZ Transporte – Sections, Cards, Footer ===== */

.sz-section {
    padding: 80px 20px;
}
.sz-section-grey {
    background: #f5f5f5;
}

.sz-section-title {
    text-align: center;
    margin-bottom: 40px;
}
.sz-section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sz-section-title p {
    max-width: 520px;
    margin: 0 auto;
}

/* Karten-Grid (Leistungen & Fuhrpark) */
.sz-card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.sz-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px 22px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}
.sz-card-icon {
    font-size: 34px;
    margin-bottom: 10px;
    color: #C80000;
}
.sz-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}
.sz-card-text {
    font-size: 15px;
}

/* Über uns */
.sz-about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.sz-about-text,
.sz-about-image {
    flex: 1 1 300px;
}
.sz-about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Fuhrparkkarten */
.sz-fleet-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* CTA-Band */
.sz-cta-band {
    background: linear-gradient(135deg, #C80000, #8A0000);
    color: #ffffff;
    padding: 40px 20px;
}
.sz-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.sz-cta-inner h3 {
    margin: 0 0 6px;
    font-size: 26px;
}
.sz-cta-inner p {
    margin: 0;
}

/* Footer */
.sz-footer {
    background: #111111;
    color: #ffffff;
    padding: 50px 20px 25px;
}
.sz-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.sz-footer h3 {
    margin-bottom: 12px;
    font-size: 18px;
}
.sz-footer a {
    color: #ffffff;
    text-decoration: none;
}
.sz-footer a:hover {
    color: #C80000;
}
.sz-footnote {
    max-width: 1200px;
    margin: 25px auto 0;
    border-top: 1px solid #333;
    padding-top: 12px;
    font-size: 13px;
    color: #aaaaaa;
}

/* Responsive */
@media (max-width: 991px) {
    .sz-card {
        flex: 1 1 100%;
    }
    .sz-about-wrap {
        flex-direction: column;
    }
    .sz-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ===== SZ Transporte – Feintuning Abstände & Typo ===== */

/* Hero etwas kompakter & H1 nicht ganz so riesig */
.sz-hero {
    padding: 140px 40px 110px !important;
}
.sz-hero h1 {
    font-size: 42px !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
}
.sz-hero p {
    font-size: 18px !important;
}

/* Allgemeine Sektionen – weniger Luft oben/unten */
.sz-section {
    padding: 60px 20px 70px !important;
}

/* Abschnittstitel */
.sz-section-title {
    margin-bottom: 30px !important;
}
.sz-section-title h2 {
    font-size: 30px !important;
    font-weight: 700;
    margin-bottom: 6px !important;
}
.sz-section-title p {
    font-size: 16px;
    line-height: 1.5;
}

/* Kachel-Grid (Leistungen/Fuhrpark) – etwas kompakter */
.sz-card-grid {
    gap: 24px !important;
}
.sz-card {
    padding: 22px 20px !important;
}
.sz-card-title {
    font-size: 18px !important;
    margin-bottom: 4px !important;
}
.sz-card-text {
    font-size: 15px;
    line-height: 1.5;
}

/* Über-uns & Kontakt – Textblöcke enger */
.sz-about-wrap {
    gap: 30px !important;
}
.sz-about-text p {
    margin-bottom: 14px;
}

/* CTA-Band – oben weniger Luft */
.sz-cta-band {
    padding: 32px 20px !important;
}
.sz-cta-inner h3 {
    font-size: 24px !important;
}

/* Footer – etwas weniger Höhe und kleinere Schrift */
.sz-footer {
    padding: 40px 20px 20px !important;
}
.sz-footer h3 {
    font-size: 16px !important;
}
.sz-footer-inner p {
    font-size: 14px;
    line-height: 1.6;
}
.sz-footnote {
    padding-top: 8px !important;
    font-size: 12px !important;
}

/* Mobile-Anpassungen */
@media (max-width: 991px) {
    .sz-hero {
        padding: 110px 20px 90px !important;
        text-align: left;
    }
    .sz-hero h1 {
        font-size: 32px !important;
    }
    .sz-section {
        padding: 45px 16px 55px !important;
    }
    .sz-card {
        padding: 20px 18px !important;
    }
}
.sppb-section:empty,
.sppb-row:empty {
    display: none !important;
}
.sz-legal-page h1 {
    font-size: 32px;
    margin-bottom: 28px; /* vorher 18px */
    padding-top: 10px;   /* neues Top-Spacing */
}
