/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/

/* Container für jede Person */
.team-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    text-align: center;
    transition: none; /* kein Hover-Effekt auf der Karte */
}

/* Bild */
.team-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer; /* wirkt interaktiv */
}

.team-photo:hover {
    transform: scale(1.07);
    box-shadow: 0 14px 32px rgba(0,0,0,0.30);
}

/* Name & Rolle */
.team-card .name {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: #222;
}

.team-card .role {
    font-size: 1.1rem;
    color: #868e96;
    margin-bottom: 1.75rem;
}

/* Kontaktbereich */
.contact-box {
    background: #fefefe;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.03);
    transition: background-color 0.3s ease;
}

.contact-box p {
    margin: 0.5rem 0;
}

.contact-box a {
    text-decoration: none;
    color: var(--bs-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--bs-primary);
}

/* Hero Section */
.hero-wrap {
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/job-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8f9fa;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    animation: fadeSlideIn 1s ease forwards;
}

.hero-wrap h1, .hero-wrap p {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

.hero-wrap h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    animation: fadeSlideIn 1s ease 0.3s forwards;
}

.hero-wrap p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeSlideIn 1s ease 0.6s forwards;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Listen mit Check-Icon */
.list-check li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #495057;
}
.list-check li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bs-success);
    font-size: 1.3rem;
}

/* Listen mit Pfeil-Icon */
.list-arrow li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #495057;
}
.list-arrow li::before {
    content: "\f061"; /* FontAwesome arrow-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bs-primary);
    font-size: 1.3rem;
}

/* Boxen in "Wir bieten" */
.offer-box {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    will-change: transform, box-shadow;
}
.offer-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px 4px rgba(0,123,255,0.3);
}