/* ---------------------------------------
   RESPONSIVE DESIGN
------------------------------------------ */
/* ---------------------------------------
   BURGER-MENÜ (Mobil)
------------------------------------------ */
.burger-menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
}

.burger-icon {
    font-size: 28px;
    background: #0d5b66;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.burger-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
}

.burger-links a {
    text-decoration: none;
    color: #0d5b66;
    padding: 10px;
    font-weight: 600;
}

.burger-links a:hover {
    background-color: #e3f1f1;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .header-title {
        font-size: 54px;
    }

    .hero-second-title{
        font-size: 18px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }
.hero-fingerprint{
    top: 700px;
}

.img-logo-right{
        left: 315px;
}
    .section-title {
        font-size: 30px;
    }

    .contact-form button {
        width: 100%;
    }

    .site-footer {
        font-size: 13px;
        padding: 20px 12px;
    }

    .burger-menu {
        display: block;
    }

    .dot-nav {
        display: none;
    }

    .footer-contact-second {
        font-size: 12px;
    }

    .team-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 10px;
    }


.team-member {
    max-width: 90%;
    height: auto;
    padding: 15px;
}

.team-content.hiddenTeam {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.team-content.visible {
    max-height: 500px;
    /* oder je nach Inhalt */
    opacity: 1;
}

.team-toggle-btn {
    background-color: #004450;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
}
        .offer-text {
            font-size: 15px;
        }
    
        .offer-list li {
            font-size: 15px;
        }
}

@media (max-width: 480px) {

    .img-logo-left,
    .img-logo-right,
    .img-horse {
        display: none;
    }
        .offer-list strong {
            font-weight: 500;
            font-size: 17px;
            margin-bottom: 2px;
        }
}