@import "css/aos.css";

:root {
    --nav-height: 100px;
    --nav-height-scrolled: 60px;
    --maxwidth: 1400px;
    --maxwidthnarrow: 1024px;
    --logo-height: 5rem;
    --logo-height-scrolled: 2.5rem;
    --radius: 7px;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
    --shadow_sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow_med: 0 2px 8px rgba(0,0,0,0.1);
    --shadow_lg: 0 20px 60px -30px rgba(0,0,0,.5);
    --shadow_shine: 0 20px 60px -30px #fb7d00;

    --orange: #fb7d00;
    --lightOrange: #ffc080;
    --red: #bc3b18;
    --green: #8ce0bc;
    --darkBlue: #5b87c4;
    --lightBlue: #d2e1f9;
    --offWhite: #f3f3f3;
    --gray: #ededed;
    --lightGray: #dadada;
    --darkOrange: #bc3b18;
    --lightBrown: #b7b0a7;
    --darkBrown: #3c3731;
    --white: #fff;

    --primary: #000000;
    --bodybg: #3c3731;

    --gradient-orange: linear-gradient(135deg,#fb7d00 25%,#bc3b18 90%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }


/* HINTERGRUNDFARBEN */
.bglightorange { background-color: var(--lightOrange) !important; }
.bglightgray { background-color: var(--lightGray) !important; }
.bglightblue { background-color: var(--lightBlue) !important; }
.bgwhite { background-color: var(--white) !important; }
.bgoffwhite { background-color: var(--offWhite) !important; }
.bggreen { background-color: var(--green) !important; }
.bgdarkbrown { background-color: var(--darkBrown) !important; }
.bggradient-orange { background: var(--gradient-orange) !important; color: var(--white) !important; }


/* FONTS */
@font-face {
	font-family: Barlow;
	src: url(fonts/Barlow-Light.ttf);
	font-weight: 300;
}
@font-face {
	font-family: Barlow;
	src: url(fonts/Barlow-Regular.ttf);
	font-weight: 400;
}
@font-face {
	font-family: Barlow;
	src: url(fonts/Barlow-Italic.ttf);
	font-weight: 400;
    font-style: italic;
}
@font-face {
	font-family: Barlow;
	src: url(fonts/Barlow-SemiBold.ttf);
	font-weight: 600;
}
@font-face {
	font-family: Barlow;
	src: url(fonts/Barlow-Bold.ttf);
	font-weight: 700;
}


/* TYPOGRAFIE */
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', Helvetica, sans-serif; hyphens: auto; background: var(--bodybg); color: var(--primary); }
h1 { font-size: 4.2rem; font-weight: 600; hyphens: none; }
h2 { font-size: 3.5rem; font-weight: 500; }
h3 { font-size: 2.7rem; font-weight: 600; margin-bottom: 60px; text-align: center;}
h4 { font-size: 2.2rem; font-weight: 600; margin-bottom: 7px; }
a { color: var(--darkBlue); text-decoration: none; border-bottom: 1px dotted; } a:hover { border-bottom: 1px solid; }
p { margin-bottom: 15px; }
p.small { font-size: 1rem; }
p.smaller { font-size: 0.8rem; }
p.bigger { font-size: 1.5rem; }
.nohyphens { hyphens: none; }
.right { text-align: right; }
.left { text-align: left; }
.center { text-align: center; }
.justify-self-end { justify-self: end; }
ul {
    list-style-position: outside;
    margin: 10px 20px 30px 20px;
    font-size: 1rem;
}
li {
    margin-bottom: 10px;
}
b { font-weight: 700; }
strong { font-weight: 600; }
a > img {
    margin-bottom: 0;
}
a:has(img),
a:has(img):hover {
    border: none;
}
.button {
    display: block;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    margin-bottom: 20px;
    color: var(--primary);
    box-shadow: var(--shadow_med);
    border-radius: var(--radius);
    transition: var(--transition);
}
.button:hover {
    color: var(--white);
    border: none;
    background-color: var(--darkBlue) !important;
}


/* Images */
img { max-width: 100%; margin-bottom: 20px; }
.rounded {
    border-radius: 999px;
}


/* ********* */
/* SECTIONS */
/* ********* */
.wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
section {
    position: relative;
    overflow: hidden;
}
.section {
    width: 100%;
    padding: 120px 40px;
    margin-bottom: 0;
    font-size: 1.2rem;
}
.container,
.container-narrow {
    position: relative;
    width: 100%;
    max-width: var(--maxwidth);
    margin: 0 auto;
    z-index: 2;
}
.container-narrow {
    max-width: var(--maxwidthnarrow);
}
.container.testimonialcontainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: -80px auto;
}
.container.testimonialcontainer img {
    margin-right: 2.5rem;
}


/* GRIDS */
.grid {
    display: grid;
    gap: 2.5rem;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.span-2 {
    grid-column: span 2;
}
.span-3 {
    grid-column: span 3;
}
.span-4 {
    grid-column: span 4;
}
.card {
    padding: 20px;
    font-size: 1.2rem;
    text-align: center;
    color: var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow_med);
}
.card h4 {
    margin-bottom: 30px;
}



/* ********** */
/* ********** */
/* ********** */



/* Header und Navigation */
#service-nav {
    width: 100%;
    max-width: var(--maxwidth);
    /* margin:0 auto; */
    padding: 15px 30px 0 0;
    text-align: right;
}
#service-nav a {
    color: var(--white);
    text-decoration: none;
    border: none;
    font-weight: 500;
    font-size: 1.08rem;
    padding: 8px 0 0 10px;
    position: relative;
    transition: color var(--transition);
}
#service-nav a.active,
#service-nav a:hover {
    color: var(--orange);
    border-bottom: none;
}
header {
    width: 100%;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    height: var(--nav-height);
    z-index: 100;
    transform: translateY(50px);
    transition: all var(--transition);
}
header .container {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    margin: 0 auto;
    transition: all var(--transition);
}
header.scrolled {
    height: var(--nav-height-scrolled);
    transform: translateY(0);
}
header.scrolled .container {
    height: var(--nav-height-scrolled);
}
header a {
    border: none;
}
header a:hover {
    border: none;
}
.logo {
    display: block;
    height: var(--logo-height);
    transition: all var(--transition);
    margin-bottom: 0;
}

header.scrolled .logo {
    height: var(--logo-height-scrolled);
}
nav {
    display: flex;
    gap: 28px;
}
nav a {
    color: var(--primary);
    text-decoration: none;
    border: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}
nav a.active,
nav a:hover {
    color: var(--orange);
    border-bottom: none;
}
.header-links {
    display: flex;
    gap: 18px;
    align-items: center;
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    gap: 6px;
    margin-left: 18px;
}
.burger span {
    display: block;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}
main {
    padding-top: var(--nav-height);
    width: 100%;
    margin: 0 auto;
}
header.scrolled + main {
    padding-top: var(--nav-height-scrolled);
}

.logoBG {
    position: absolute;
    width: 30vw;
    z-index: 1;
    opacity: .2;
    top: -7vw;
    left: -3.5vw;
}


/* ------------- */
/* KACHELN */
.doppelkachel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
    column-gap: 0.5rem;
}
.doppelkachel-card {
    position: relative;
    padding: 20px;
    font-size: 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow_med);
}
.mentorcard img {
    background: var(--offWhite);
    width: 100%;
    border-radius: var(--radius);
}
.mentorcard .small-icon {
    background: none;
    width: 40px;
    float: left;
    margin-right: 15px;
    margin-bottom: 0;
}
.dreifachkachel {
    row-gap: 2.5rem;
    column-gap: 0.5rem;
}
.dreifachkachel-card {
    position: relative;
    padding: 20px;
    font-size: 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow_med);
}
.dreifachkachel-card:nth-child(3n+1) {
    background-color: var(--lightOrange);
}
.dreifachkachel-card:nth-child(3n+2) {
    background: var(--gradient-orange);
    color: var(--white);
}
.dreifachkachel-card:nth-child(3n) {
    background-color: var(--green);
}
.doppelkachel-card:nth-child(odd)::after,
.dreifachkachel-card:nth-child(3n+1)::after,
.dreifachkachel-card:nth-child(3n+2)::after {
    content: "";
    z-index: 10;
    position: absolute;
    top: 50%; /* direkt unterhalb der Box */
    left: 100%; /* horizontale Position des Pfeils */
    margin-left: -5px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--lightOrange);
    transform: rotate(270deg);
}
.doppelkachel-card:nth-child(odd)::after {
    border-top: 10px solid var(--lightBlue);
}
.dreifachkachel-card:nth-child(3n+2)::after {
    border-top: 10px solid var(--darkOrange);
}


/* ------------- */
/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}
.hero img {
    margin: 0 0 -5px 0;
}
.hero-img-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    width: 100%;
    transform: translate(-50%, -50%);
    top: 75%; left: 50%;
    color: var(--white);
    text-align: center;
}
.hero-name {
    font-size: 7rem;
    font-weight: 600;
    margin-bottom: -0.4rem;
    letter-spacing: 1px;
}
.hero-claim {
    font-size: 2.08rem;
    font-weight: 400;
}


/* ------------- */
/* INTRO SECTION */
.intro {
    color: var(--white);
    padding: 80px 40px;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}
.intro p {
    margin: 0 auto;
    max-width: 900px;
}
.subintro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    color: var(--white);
    padding: 80px 40px;
    text-align: left;
    font-size: 2rem;
    font-weight: 500;
    border-radius: var(--radius);
    margin-bottom: 40px;
}
.subintro img {
    grid-column: span 1;
    margin-bottom: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow_med);
}
.subintro .subintrotextwrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: span 2;
}
.subintro .subintrotextwrapper p {
    margin-bottom: 15px;
}


/* ------------- */
/* EIGENSCHAFTEN SECTION */
.eigenschaften {
    padding: 120px 40px;
    background: var(--lightBlue);
    text-align: center;
}
.eigenschaften-title {
    margin-bottom: 60px;
}
.eigenschaften-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    justify-content: center;
}
.eigenschaft-card {
    background: var(--darkBrown);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow_lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 40px;
    text-decoration: none;
    transition: background-color var(--transition);
}
.eigenschaft-card:hover {
    background: var(--lightOrange);
    border: none;
}
.eigenschaft-title {
    font-weight: 600;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.eigenschaft-desc {
    font-size: 1.2rem;
    /* font-weight: 600; */
    hyphens: none;
}
.eigenschaft-detail {
    font-size: 1rem;
}
.eigenschaft-outcome {
    color: var(--darkBlue);
    border-radius: var(--radius);
}
.eigenschaft-card:hover .eigenschaft-detail,
.eigenschaft-card:hover .eigenschaft-outcome {
    color: var(--primary);
}


/* ------------- */
/* BESCHÄFTIGUNG SECTION */
.beschaeftigung {
    padding: 120px 40px;
    background: var(--offWhite);
    text-align: center;
}
.beschaeftigung-title {
    text-align: center;
    margin-bottom: 60px;
}
.beschaeftigung-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 20px;
}
.beschaeftigung-card {
    background: var(--white);
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 20px;
    font-size: 1.2rem;
    margin-bottom: 40px;
}
.beschaeftigung-icon {
    margin-bottom: 10px;
}

/* Parallaxenbilder */
.parallax {
    height: 400px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}
.parallax-content {
    color: var(--white);
}
.beschaeftigung-parallax {
    background-image: url('img/pritu-detemple-reading.jpg');
    background-position: 30% center;
}
.leader-parallax {
    margin-top: 40px;
    background-image: url('img/pritu-detemple-team.jpg');
    background-position: bottom right;
}


/* ------------- */
/* WERTE SECTION */
.wertecheck {
    /* background: var(--white); */
    background: var(--darkBrown);
    padding: 120px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    color: var(--white);
}
.wertecheck-title {
    margin-bottom: 3px;
}
.wertecheck-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
}
.wertecheck-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 40px;
    justify-content: center;
}
.wertecheck-list {
    background: var(--offWhite);
}
.wertecheck-list-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.wertecheck-list ul,
.checklist ul {
    list-style: none;
    padding: 0;
}
.wertecheck-list li,
.checklist li {
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
.wertecheck-list li.positive::before,
.checklist li.positive::before,
.checklist li.index::before {
    align-self: flex-start;
    content: url('img/icon-value-pos.png');
    display: inline-block;
    margin-top: 5px;
    margin-right: 0.7em;
}
.checklist li.positive::before {
    content: url('img/icon-thumb-positive.png');
}
.wertecheck-list li.negative::before,
.checklist li.negative::before,
.checklist li.index::before {
    align-self: flex-start;
    content: url('img/icon-value-neg.png');
    display: inline-block;
    margin-top: 5px;
    margin-right: 0.7em;
}
.checklist li.negative::before {
    content: url('img/icon-thumb-negative.png');
}
.checklist li.index::before {
    content: url('img/icon-thumb-index.png');
}
.wertecheck-cta {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}


/* ------------- */
/* TESTIMONIALS SECTION */
.testimonials {
    background: var(--lightBlue);
    padding: 120px 40px;
    text-align: center;
}
.testimonial-grid {
    margin-bottom: 80px;
}
.testimonial-card {
    font-size: 0.9rem;
    line-height: 1.6;
}
.testimonial-card-header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    line-height: 1.3;
}
.testimonial-card-name {
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 10px;
}
.testimonial-card-name .date {
    font-weight: 400;
    font-size: 0.8rem;
}
.testimonial-card-platform img {
    min-width: 20px;
    flex-shrink: 0;
}

.bignumber {
    font-size: 2.5rem;
    margin: 100px 0;
}
.cta-button {
    display: inline-block;
    align-self: center;
    padding: 15px 35px;
    margin: 1rem 0;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    color: white;
    font-size: 2rem;
    border: none !important;
    border-radius: 999px;
    z-index: 1;
    position: relative;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--gradient-orange);
}
.cta-button::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: none !important;
    border-radius: 999px;
    transition: all var(--transition);
    background: linear-gradient(135deg,#fb7d00 80%,#bc3b18 95%);
    box-shadow: 0 0 60px -20px var(--orange);
    z-index: -1;
    opacity: 0;
}
.cta-button:hover::before {
    opacity: 1;
    border: none !important;
}
.cta-button:hover {
    color: var(--darkBrown);
}
.smallerbutton {
    font-size: 1.2rem;
    padding: 10px 20px;
}
.bubble {
    opacity: 0.6;
    display: inline-block;
    padding: 3px 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--white);
    border-radius: var(--radius);
}


/* ------------- */
/* LEADERBEWERTUNGEN */
.leaderbewertungen {
    padding-top: 40px;
}
.leaderbewertungen-card {
    background: var(--lightBlue);
    border-radius: var(--radius);
    box-shadow: var(--shadow_sm);
    font-weight: 600;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}
.leaderbewertungen-card img {
    margin: 0 0 -2px 5px;
}
.leaderbewertungen-card.bigcard {
    margin-top: 20px;
    font-size: 1.5rem;
}


/* ------------- */
/* VIDEO */
.videowrapper {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow_lg);
}
video {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-bottom: -6px;
}


/* ------------- */
/* FOOTER */
footer {
    background: var(--darkBrown);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    color: var(--white);
    padding: 40px;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 0;
}
footer .logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}
.footer-links {
    margin-bottom: 40px;
}
.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    padding: 4px 0;
}



/* ------------------------------------- */



/* ************* */
/* MEDIA QUERIES */
/* ************* */

@media (max-width: 767px) {
    .grid,
    .beschaeftigung-grid,
    .testimonials-grid,
    .doppelkachel-grid,
    .subintro,
    .subintro .subintrotextwrapper,
    .container.testimonialcontainer {
        display: block;
    }
    .container.testimonialcontainer {
        text-align: center;
    }
    .container.testimonialcontainer img {
        margin-left: auto;
        margin-right: auto;
    }
    .container.testimonialcontainer p {
        text-align: center !important;
    }
    .intro, .subintro { font-size: 1.2rem; padding: 20px; }
    .subintro img { margin-bottom: 20px; }
    .subintro h2 { font-size: 9vw; }
    .logo { height: 10vw; }
    .hero-overlay { top: 77%; left: 50%; }
    .hero-name, .subintro h1 { font-size: 13vw; }
    .hero-claim { font-size: 3.93vw; }
    .card { margin-bottom: 40px; }
    .parallax { 
        background-attachment: unset;
        background-position: center;
        height: 200px;
    }
    .wertecheck-lists {
        display: flex;
        flex-direction: column-reverse;
    }
    .doppelkachel-card,
    .dreifachkachel-card {
        box-shadow: none;
    }
    .doppelkachel-card:nth-child(odd) {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .doppelkachel-card:nth-child(even) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-bottom: 40px;
    }
    .dreifachkachel-card:nth-child(3n+1) {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .dreifachkachel-card:nth-child(3n+2) {
        border-radius: 0;
    }
    .dreifachkachel-card:nth-child(3n) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-bottom: 40px;
    }
    .doppelkachel-card:nth-child(odd)::after,
    .dreifachkachel-card:nth-child(3n+1)::after,
    .dreifachkachel-card:nth-child(3n+2)::after {
        top: 100%;
        left: 50%;
        margin-left: -10px;
        transform: rotate(0deg);
    }
    .leaderbewertungen {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .leaderbewertungen-card {
        margin-bottom: 0;
    }
    .leaderbewertungen-card.bigcard {
        margin-top: 40px;
    }
    footer { display: block; }
}

@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    nav {
        position: fixed;
        top: var(--nav-height);
        right: 0;
        background: var(--white);
        flex-direction: column;
        width: 150px;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -2px 0 8px rgba(0,0,0,0.07);
        gap: 0;
        padding: 32px 10px;
        height: 100vh;
    }
    nav.open {
        transform: translateX(0);
    }
    nav.scrolled {
        top: var(--nav-height-scrolled);
    }
    .burger {
        display: flex;
    }
    .eigenschaften-grid { display: block; }
}

@media (min-width: 1400px) {
    .parallax {
        background-position: center;
    }
}