/* ========================================
   HERO SECTION - CSS
   NUR FÜR HERO SECTION
   ======================================== */

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* HERO SECTION */
.person-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1d2d5f 0%, #2c3e7a 100%);
    overflow: hidden;
}

.person-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(235, 103, 80, 0.15) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(58, 145, 207, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.person-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.person-hero-content {
    animation: slideInLeft 1s ease;
}

.person-hero-flag {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.flag-stripe {
    width: 60px;
    height: 15px;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.flag-stripe:hover {
    transform: translateY(-3px);
}

.flag-coral {
    background: #eb6750;
}

.flag-blue {
    background: #3a91cf;
}

.flag-navy {
    background: #1d2d5f;
}

.person-hero-title {
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #eb6750 0%, #3a91cf 50%, #1d2d5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.person-hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.person-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
}

.person-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.person-hero-stat {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
}

.person-hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #3a91cf;
}

.person-hero-stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #eb6750 0%, #3a91cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.person-hero-stat-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO IMAGE */
.person-hero-image-container {
    position: relative;
    animation: slideInRight 1s ease;
}

.person-hero-image {
    width: 100%;
    height: 800px;
    background: linear-gradient(135deg, #1d2d5f 0%, #3a91cf 50%, #eb6750 100%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(58, 145, 207, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.person-hero-image:hover .founder-photo {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(0, 0, 0, 0.2) 0%,
            transparent 60%
        );
    z-index: 2;
    pointer-events: none;
    animation: shimmer 4s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes shimmer {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
    .person-hero-title {
        font-size: 64px;
    }
    .person-hero-subtitle {
        font-size: 26px;
    }
}

@media (max-width: 968px) {
    .person-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    .person-hero-title {
        font-size: 56px;
    }
    .person-hero-subtitle {
        font-size: 24px;
    }
    .person-hero-image {
        height: 400px;
    }
    .person-hero-stats {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 640px) {
    .person-hero-title {
        font-size: 42px;
    }
    .person-hero-subtitle {
        font-size: 20px;
    }
    .person-hero-description {
        font-size: 16px;
    }
    .person-hero-image {
        height: 450px;
    }
    .person-hero-stat-number {
        font-size: 32px;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   SECTIONS 1-9 - CSS
   OHNE HEADER, OHNE FOOTER
   ======================================== */
/* ========================================
   SECTIONS 1-9 - CSS
   OHNE HEADER, OHNE FOOTER
   ======================================== */

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: #1a1a1a;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

.container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        #3a91cf 10%,
        #eb6750 50%,
        #1d2d5f 85%,
        transparent 90%
    );
    transform: translateX(-50%);
    z-index: 0;
}

.section {
    background: #ffffff;
    border-radius: 30px;
    padding: 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #f5f5f5;
}

.section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(58, 145, 207, 0.2);
    border-color: #3a91cf;
}

.section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #3a91cf;
    border-radius: 50%;
    border: 4px solid #ffffff;
    z-index: 10;
    box-shadow: 0 0 0 8px rgba(58, 145, 207, 0.2);
    transition: all 0.3s ease;
}

.section:hover::before {
    box-shadow: 0 0 0 12px rgba(58, 145, 207, 0.3);
}

.section:first-child::before {
    display: none;
}

.section:nth-child(9)::before {
    display: none;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.section:nth-child(even) .section-grid {
    direction: rtl;
}

.section:nth-child(even) .section-content {
    direction: ltr;
}

.section-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #3a91cf 0%, #eb6750 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.section-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(0, 0, 0, 0.1) 0%,
            transparent 50%
        );
    z-index: 1;
}

.section-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    min-height: 500px;
}

.section-number {
    font-size: 14px;
    font-weight: 700;
    color: #eb6750;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1d2d5f 0%, #3a91cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    min-height: 130px;
}

.section-description strong {
    color: #1d2d5f;
    font-weight: 600;
}

.section-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

/* Ensure exactly 3 features per section */
.section-features .feature:nth-child(n + 4) {
    display: none;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f9f9f9;
    border-radius: 15px;
    border-left: 4px solid #3a91cf;
    transition: all 0.3s ease;
    cursor: default;
    min-height: 86px;
}

.feature:hover {
    background: #e6f4fb;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(58, 145, 207, 0.2);
}

.feature-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a91cf 0%, #eb6750 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.glass-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(58, 145, 207, 0.3);
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #1d2d5f;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(58, 145, 207, 0.3);
}

@media (max-width: 968px) {
    .section-grid {
        grid-template-columns: 1fr;
    }

    .section:nth-child(even) .section-grid {
        direction: ltr;
    }

    .section-image {
        height: 350px;
        font-size: 60px;
    }

    .section-content {
        padding: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .container {
        padding: 60px 20px;
    }
}

@media (max-width: 640px) {
    .section-image {
        height: 250px;
        font-size: 50px;
    }

    .section-content {
        padding: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature {
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .feature-text {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    /* Mobile optimizations */
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.feature:focus {
    outline: 3px solid #3a91cf;
    outline-offset: 3px;
}
