/* ===== CONTENT INDEX C1 ===== */

/* Index C1 - Hero */   

.hero-section {
    position: relative;
    width: var(--sectionWidth);
    background-color: var(--heroBackground);
    padding: 0 20px 60px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--sectionWidth);
    height: 600px;
    background-image:
        linear-gradient(
            rgba(8, 24, 40, 0.55),
            rgba(8, 24, 40, 0.55)
        ),
        url('/assets/images/index_c1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: var(--sectionWidth);
    max-width: var(--columnWidth);
    min-height: 490px;
    margin: 0 auto;
    padding-top: 70px;
    text-align: center;
}

.hero-kicker {
    margin-bottom: 45px;
    color: var(--indexTitle);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.hero-title {
    margin-bottom: 25px;
    color: var(--indexTitle);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 2px;
}

.hero-text {
    max-width: 950px;
    margin: 0 auto 45px;
    color: var(--indexText);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 300px;
    margin-bottom: 60px;
}

.hero-buttons .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    min-height: 50px;
    padding: 12px 22px;
    border: 2px solid;
    border-radius: var(--borderRadius);
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

/* Button orange */

.hero-buttons .button-primary {
    background-color: var(--button-OR-BG);
    border-color: var(--button-OR-Border);
    color: var(--buttonLight-Text);
}

.hero-buttons .button-primary:hover {
    background-color: var(--button-OR-Hover-BG);
    border-color: var(--button-OR-Border-Hover);
    color: var(--buttonLight-Text);
}

/* Button weiß */

.hero-buttons .button-secondary {
    background-color: var(--button-WE-BG);
    border-color: var(--button-WE-Border);
    color: var(--buttonDark-Text);
}

.hero-buttons .button-secondary:hover {
    background-color: var(--button-WE-Hover-BG);
    border-color: var(--button-WE-Border-Hover);
    color: var(--buttonDark-Text);
}

/* Hero Boxen */

.hero-boxes {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: var(--sectionWidth);
    max-width: var(--columnWidth);
    margin: 60px auto 0;
    text-align: left;
}

.hero-box-link {
    margin-top: auto;
}

.hero-box {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 200px;
    padding: 110px 20px 20px;
    background-color: var(--heroBoxBackground);
    border-radius: var(--borderRadius);
}

.hero-box-link {
    margin-top: auto;
}

.hero-box-icon {
    position: absolute;
    top: 12px;
    left: 12px;
	bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.hero-box-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.hero-box-title {
    margin-bottom: 16px;
    color: var(--indexTitle);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-box-text {
    margin-bottom: 18px;
    color: var(--indexText);
    font-size: 0.95rem;
    line-height: 2.0;
}

.hero-box-link {
    margin-top: auto;
    color: var(--link-OR-color);
    font-size: 0.9rem;
}

.hero-box-link a {
    color: inherit;
    text-decoration: none;
}

.hero-box-link a:hover {
    text-decoration: underline;
}

/* ===== CONTENT INDEX C2 ===== */

/* Index C2 - Feature */   

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Bild links */

.feature-image {
    width: 100%;
}

.feature-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--borderRadius);
}

/* Inhalt rechts */

.feature-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.feature-title {
    margin-bottom: 20px;
    color: var(--indexTitle);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-text {
    margin-bottom: 35px;
    color: var(--indexText);
    font-size: 1rem;
    line-height: 1.6;
}

/* Bullets */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list-item {
    position: relative;
    padding-left: 34px;
    color: var(--indexText);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.feature-list-item::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--icon-color);
    border: 2px solid var(--icon-color);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Button */

.feature-buttons {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.button-feature {
    background-color: var(--button-OR-BG);
    border: 2px solid var(--button-OR-BG);
    text-decoration: none;
    color: var(--buttonLight-Text);
    padding: 10px 20px 10px 20px;
    border-radius: var(--borderRadius);
}

.button-feature:hover {
    background-color: var(--button-OR-Hover-BG);
    border-color: var(--button-WE-Border);
    color: var(--buttonLight-Text);
}

/* ===== CONTENT INDEX C3 ===== */

.model-section {
    width: 100%;
    padding: 60px 40px 70px;
    background-color: var(--heroBackground);
}

.model-section-title {
    max-width: 1200px;
    margin: 0 auto 45px;
    color: var(--indexTitle);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Boxen */

.model-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.model-box {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Bilder */

.model-box-image {
    width: 100%;
    margin-bottom: 20px;
}

.model-box-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--borderRadius);
}

/* Titel */

.model-box-title {
    margin-bottom: 18px;
    color: var(--indexTitle);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Bullets */

.model-box-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
}

.model-box-list-item {
    position: relative;
    padding-left: 22px;
    color: var(--indexText);
    font-size: 0.95rem;
    line-height: 1.4;
}

.model-box-list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--icon-color);
    font-weight: 700;
}

/* Links */

.model-box-link {
    margin-top: auto;
}

.model-box-link a {
    color: var(--link-OR-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.model-box-link a::after {
    content: " →";
}

.model-box-link a:hover {
    text-decoration: underline;
}


/* ===== CONTENT INDEX C4 ===== */

.vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: var(--sectionWidth);
    max-width: var(--columnWidth);
    margin: 0 auto;
}

/* Bild rechts */

.vision-image {
    width: 100%;
}

.vision-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--borderRadius);
    margin-top:40px;
    margin-bottom:40px;
}

/* Inhalt links */

.vision-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.vision-title {
    margin-bottom: 20px;
    color: var(--indexTitle);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.vision-text {
    margin-bottom: 35px;
    color: var(--indexText);
    font-size: 1rem;
    line-height: 1.6;
}

/* Bullets */

.vision-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom:20px;
}

.vision-list-item {
    position: relative;
    padding-left: 34px;
    color: var(--indexText);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.vision-list-item::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--icon-color);
    border: 2px solid var(--icon-color);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Button */

.vision-buttons {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.button-vision {
    background-color: var(--button-OR-BG);
    border: 2px solid var(--button-OR-BG);
    text-decoration: none;
    color: var(--buttonLight-Text);
    padding: 10px 20px 10px 20px;
    border-radius: var(--borderRadius);
}

.button-vision:hover {
    background-color: var(--button-OR-Hover-BG);
    border-color: var(--button-WE-Border);
    color: var(--buttonLight-Text);
}

/* ===== CONTENT INDEX C5 ===== */

.app-section {
    width: var(--sectionWidth);
    padding: 60px 0px 70px;
    background-color: var(--heroBackground);
}

/* Titel + Einleitung */

.app-section-title {
    width: var(--sectionWidth);
    max-width: var(--columnWidth);
    margin: 0 auto 20px;
    color: var(--indexTitle);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.app-section-text {
    width: var(--sectionWidth);
    max-width: var(--columnWidth);;
    margin: 0 auto 45px;
    color: var(--indexText);
    font-size: 1rem;
    line-height: 1.6;
}

/* 4 APP Boxen */

.app-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: var(--sectionWidth);
    max-width: var(--columnWidth);
    margin: 0 auto;
}

.app-box {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* APP Bilder */

.app-box-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: var(--borderRadius);
}

.app-box-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Links */

.app-box-link {
    margin-top: 14px;
    text-align: center;
}

.app-box-link a {
    color: var(--link-OR-color);
    text-decoration: none;
}

.app-box-link a::after {
    content: " >>";
}

.app-box-link a:hover {
    text-decoration: underline;
}

/* CONTENT INDEX C6 ===== */

.team-section {
    width: var(--sectionWidth);
    padding-top: 60px;
    padding-bottom: 60px;
}

.team-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 24px;
    width: 100%;
    max-width: var(--columnWidth);
    margin: 0 auto;
}

/* Einzelne Karte */

.team-card {
    position: relative;
    width: 100%;
    padding-top: 32px;
}

/* Bild */

.team-card-image {
    width: 100%;
    overflow: hidden;
    border-bottom: 6px solid;
    border-radius: var(--borderRadius);
}

.team-card-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Icon */

.team-card-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.team-card-icon img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.team-card-mentor .team-card-image {
    border-bottom-color: var(--KachelColor1);
}

.team-card-operator .team-card-image {
    border-bottom-color: var(--KachelColor2);
}

.team-card-careeragent .team-card-image {
    border-bottom-color: var(--KachelColor3);
}

.team-card-soulguide .team-card-image {
    border-bottom-color: var(--KachelColor4);
}

.team-card-bodyguard .team-card-image {
    border-bottom-color: var(--KachelColor5);
}

.team-card-panicroom .team-card-image {
    border-bottom-color: var(--KachelColor6);
}