/* LEISTUNGEN PAGE SPECIFIC STYLES */

/* Hero Section */
.leistungen-hero {
    height: 450px;
    margin-top: 0px;
    background-size:auto;
    background: url('/uploads/business-4312920_1920.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo{
    filter: brightness(100%) invert(1);
}

header.scrolled .logo img {
    height: 50px;
    filter: brightness(0) invert(0);
}

.menu > li > a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

nav{
    color: white !important;
}

.leistungen-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.leistungen-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 16px;
}

/* Featured Services Section */
.featured-services {
    padding: 80px 80px;
    background: #fff;
}

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

.services-two {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
}

.service-card,
.service-card-large {
    position: relative;
    height: 300px;
    background: url('/uploads/pagetitle.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover,
.service-card-large:hover {
    transform: translateY(-5px);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.service-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.service-content h2 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
    color: #ccc;
}

.service-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #fff;
    color: #333;
}

/* All Services Section */
.all-services {
    padding: 80px 80px;
    background: #f6f6f6;
}

.all-services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.flip-card {
    height: 220px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.flip-card h3 {
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: #000;
}

.flip-card-back p {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    margin-top: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 1024px) {
    .featured-services {
        padding: 60px 40px;
    }

    .all-services {
        padding: 60px 40px;
    }

    .all-services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
.mobile-menu-toggle span{
    background: white;
}


@media (max-width: 768px) {
    .leistungen-hero {
        height: 250px;
        margin-top: 0 !important;
    }

    .leistungen-hero h1 {
        font-size: 26px !important;
        letter-spacing: 5px;
    }
    

    .featured-services {
        padding: 40px 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .services-two {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card-large {
        height: 280px;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h2 {
        font-size: 18px;
    }

    .all-services {
        padding: 40px 20px;
    }

    .all-services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .flip-card {
        height: 200px;
    }

    .flip-card-front,
    .flip-card-back {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .leistungen-hero h1 {
        font-size: 32px;
    }

    .all-services-container {
        grid-template-columns: 1fr;
    }
}



/* Team Section */
.team-section {
    padding: 150px 80px 80px;
    background: #fff;
}

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

.team-container h1 {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
    border: 10px solid rgba(0, 0, 0, 0.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-info h3 {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.team-roles {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
}

.team-roles p {
    font-size: 10px;
    font-family: 'Mulish', sans-serif;
    color: #666;
    line-height: 1.6;
    margin: 3px 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .team-section {
        padding: 120px 40px 60px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .team-container h1 {
        margin-bottom: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .team-section {
        padding: 100px 20px 40px;
    }

    .team-container h1 {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 300px;
        margin: 0 auto;
    }

    .team-image {
        border-width: 8px;
    }
}

@media (max-width: 480px) {
    .team-container h1 {
        font-size: 28px;
    }
}

/* KARRIERE PAGE STYLES */


/* Karriere Content Section */
.team-section {
    padding: 80px 80px;
    background: #fff;
}

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

.team-container > p {
    font-size: 16px;
    line-height: 1.8;
    color: #2d3032;
}

.team-container h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.team-container h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 40px 0 20px;
    letter-spacing: 0.5px;
}

.team-container ul {
    margin: 20px 0 30px 0;
    padding-left: 0;
    list-style: none;
}

.team-container ul li {
    font-size: 16px;
    line-height: 2;
    color: #2d3032;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.team-container ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}

.team-container strong {
    font-weight: 600;
    color: #000;
}

.team-container a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.team-container a:hover {
    color: #666;
}

/* Tablet */
@media (max-width: 1024px) {
    .leistungen-hero {
        height: 250px;
    }

    .leistungen-hero h1 {
        font-size: 50px;
        letter-spacing: 6px;
    }

    .team-section {
        padding: 60px 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .leistungen-hero {
        height: 250px;
        margin-top: 70px;
    }

    .leistungen-hero h1 {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .team-section {
        padding: 40px 20px;
    }

    .team-container h2 {
        font-size: 24px;
    }

    .team-container h3 {
        font-size: 20px;
    }

    .team-container > p,
    .team-container ul li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .leistungen-hero h1 {
        font-size: 32px;
    }

    .team-container h2 {
        font-size: 22px;
    }

    .team-container h3 {
        font-size: 18px;
    }

    .team-container > p,
    .team-container ul li {
        font-size: 14px;
    }
}

/* KONTAKT PAGE STYLES */

.kontakt-section {
    padding: 80px 80px;
    background: #fff;
}

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

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

/* Contact Info */
.kontakt-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.kontakt-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 50px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    color: #000;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #2d3032;
    margin: 2px 0;
}

.info-text a {
    color: #2d3032;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #000;
    text-decoration: underline;
}

.info-text strong {
    font-weight: 600;
}

/* Contact Form */
.kontakt-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Hind', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 15px 40px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Tablet */
@media (max-width: 1024px) {
    .kontakt-section {
        padding: 60px 40px;
    }

    .kontakt-grid {
        gap: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .kontakt-section {
        padding: 40px 20px;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .kontakt-info h2 {
        font-size: 28px;
    }

    .kontakt-info h3 {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kontakt-form h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .kontakt-info h2 {
        font-size: 24px;
    }

    .kontakt-form h3 {
        font-size: 20px;
    }

    .info-text p,
    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
    }
}