/* ========================================
   JSON KONFIGURATION - Hier Links bearbeiten
   ======================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section - Dunkelblauer Hintergrund */
.hero {
    background: #1e3a5f;
    color: white;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 60px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-banner {
    background: white;
    padding: 8px 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-banner-text {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 0.02em;
}

.hero-banner-highlight {
    color: #2c3e50;
    font-weight: 800;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

/* Einheitliches Button Design */
.cta-button,
.application-button,
.job-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 18px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.application-button:hover,
.job-button:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.45);
}

/* Kununu Slider Section */
.kununu-slider {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 40px 20px;
}

.kununu-slider::before,
.kununu-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 2;
    pointer-events: none;
}

.kununu-slider::before {
    left: 0;
    background: linear-gradient(to right, 
        #1e3a5f 0%, 
        #1e3a5f 5%,
        rgba(30, 58, 95, 0.98) 15%,
        rgba(30, 58, 95, 0.9) 30%,
        rgba(30, 58, 95, 0.7) 50%,
        rgba(30, 58, 95, 0.4) 70%,
        rgba(30, 58, 95, 0.15) 85%,
        transparent 100%);
}

.kununu-slider::after {
    right: 0;
    background: linear-gradient(to left, 
        #1e3a5f 0%, 
        #1e3a5f 5%,
        rgba(30, 58, 95, 0.98) 15%,
        rgba(30, 58, 95, 0.9) 30%,
        rgba(30, 58, 95, 0.7) 50%,
        rgba(30, 58, 95, 0.4) 70%,
        rgba(30, 58, 95, 0.15) 85%,
        transparent 100%);
}

.kununu-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.kununu-logo {
    flex-shrink: 0;
    width: 150px;
    height: 175px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.kununu-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    min-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Was machen wir Section */
.section {
    padding: 80px 20px;
}

.section-white {
    background: white;
}

.section-blue {
    background: #2c3e50;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.section-blue .section-text {
    color: rgba(255, 255, 255, 0.9);
}

.section-image {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.section-image img {
    width: 65%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Benefits Section */
.benefits-section {
    background: #1e3a5f;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Bewerbung Section */
.application-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.application-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.application-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.application-button {
    padding: 18px 55px;
    font-size: 20px;
}

/* Einblick Section */
.insight-section {
    background: #1e3a5f;
    padding: 80px 20px;
    color: white;
}

.insight-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.insight-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-image {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 200px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Jobs Section */
.jobs-section {
    background: white;
    padding: 80px 20px;
}

.jobs-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.jobs-banner-slider {
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.jobs-banner-slider::before,
.jobs-banner-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.jobs-banner-slider::before {
    left: 0;
    background: linear-gradient(to right, 
        #ffffff 0%, 
        #ffffff 5%,
        rgba(255, 255, 255, 0.98) 15%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.15) 85%,
        transparent 100%);
}

.jobs-banner-slider::after {
    right: 0;
    background: linear-gradient(to left, 
        #ffffff 0%, 
        #ffffff 5%,
        rgba(255, 255, 255, 0.98) 15%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.15) 85%,
        transparent 100%);
}

.jobs-banner-track {
    display: flex;
    gap: 0px;
    animation: bannerScroll 15s linear infinite;
    will-change: transform;
}

@keyframes bannerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.jobs-banner-item {
    flex-shrink: 0;
    width: 500px;
    height: auto;
}

.jobs-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.job-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
}

.job-content {
    padding: 24px;
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.job-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.job-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.job-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.job-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Footer */
footer {
    background: #1e3a5f;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Social Media Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content,
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-title,
    .benefits-title,
    .application-title,
    .insight-title,
    .jobs-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .benefits-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    /* Header Spacing für Mobile */
    .header {
        gap: 15px;
        margin-bottom: 40px;
    }

    .logo-image {
        height: 40px;
    }

    .header-link {
        font-size: 14px;
    }

    /* Kununu Slider für Mobile optimieren */
    .kununu-slider {
        padding: 20px 0;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .kununu-logo {
        width: 90px;
        height: 105px;
    }

    .kununu-track {
        gap: 15px;
    }

    .kununu-slider::before,
    .kununu-slider::after {
        width: 80px;
    }

    .hero-banner {
        padding: 0 20px;
    }

    .hero-banner-text {
        font-size: 14px;
    }

    .cta-button,
    .application-button {
        padding: 16px 40px;
        font-size: 18px;
    }

    .hero-image img {
        min-height: 300px;
    }

    /* Jobs Banner für Mobile */
    .jobs-banner-item {
        width: 350px;
    }
}