html, body {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:hover {
    color: inherit !important; 
    text-decoration: none !important;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.top-bar {
    width: 100%;
    height: 150px;
    background-color: black;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-bar h1 {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
}

.top-bar img {
    transition: none !important;
    transform: none !important;
    position: absolute;
    top: 10px;
    left: 100px;
    width: 150px;
    height: auto;
    margin-top: 3px;
}

.top-bar a:hover{
    transform: none !important;	
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    display: none; 
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
}

.dropdown-menu {
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 150px;
    border: 1px solid white;
    z-index: 999;
}

.dropdown-menu a {
    padding: 10px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid gray;
}

.info-bar {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 70px;
    margin-top: -2px;
    background-color: white;
    gap: 120px;
}

.info-bar a {
    margin-top: 13px;
    text-decoration: none;
    color: black;
    font-size: 20px;
    transition: color 0.3s;
    font-family: Arial;
    font-weight: bold;
    padding: 10px;
    position: relative;
    cursor: pointer;
}

.separator {
    margin-top: 11px;
    font-size: 35px;
    font-weight: 500;
    color: black;
}

.our-services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    margin-top: 160px;
}

.our-services div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    align-items: center;
    background-color: white;
    box-shadow: 5px 5px 20px black;
    width: 250px;
    height: 200px;
    border-radius: 20px;
    background-size: cover;
    margin-top: -20px;
}

.our-services div a{
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
}

#service1{
    background-image: url("/img/Gartenarbeit.jpg");
    background-size: cover;
    background-position: center;
}

#service2{
    background-image: url("/img/Entrümpelung.jpg");
    background-size: cover;
    background-position: center;
}

#service3{
    background-image: url("/img/Haus-\ und\ Hofpflege.jpg");
    background-size: cover;
    background-position: center;
}

.our-services div label {
    display: flex;
    justify-content: center;
    position: absolute;
    font-family: Arial;
    font-weight: bold;
    margin-top: -250px;
    color: black;
    font-size: larger;
}

.our-services div a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    margin-top: 280px !important;
    width: 150px !important;
    height: 40px !important;
    font-size: 18px !important; 
    font-family: "Poppins", sans-serif;
    color: black !important;
    background-color: white;
    border: none !important;
    text-decoration: none !important;
    transition: text-decoration 0.3s !important;
}

.jingle {
    margin-top: auto;
    width: 100%;
    height: 150px;
    margin-top: 70px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-align: center;
    position: relative;
    line-height: 1.5;
}

.jingle p {
    display: inline-block;
    position: relative;
}

.jingle p::before, 
.jingle p::after {
    position: absolute;
    font-size: 60px;
    color: #007bff;
    line-height: 0; /* Verhindert Einfluss auf die Zeilenhöhe */
}

.jingle p::before {
    content: '„';
    left: -20px; /* Passt die Position an */
    top: 3px;
    font-size: 60px;
}

.jingle p::after {
    content: '“';
    margin-top: 50px;
    right: 208px; /* Passt die Position an */
    top: 0;
    font-size: 60px;
}

hr {
    border: none;
    height: 0.5px;
    background-color: black;
    width: 90%;
    margin: auto;
}

#hr1 {
    margin-top: 70px;
}

#hr2 {
    margin-top: 90px;
}

@media (max-width: 400px) {
    html{
        min-height: 150vh;
        overflow: scroll ;
    }

    .top-bar{
        height: 120px;
    }

    .menu-icon{
        display: block; 
        margin-top: 20px;
        margin-right: 10px;
    }

    .top-bar img{
        margin-bottom: 20px;
        width: 90px;
        margin-left: -100px;
        margin-top: 8px;
    }

    .top-bar h1{
        text-align: left;
        margin-left: 100px;
        margin-bottom: 20px;
    }

    .info-bar{
        display: none; 
    }

    hr{
        display: none;
    }

    .our-services{
        flex-direction: column;
        gap: 140px;
        margin-top: 20px;
    }

    #service1{
        margin-top: 50px;
    }

    .jingle{
        max-width: 80%;
        font-size: 18px;
        margin-top: 15vh;
        margin-left: 10vw;
    }

    .jingle p {
        position: relative; /* Sicherstellen, dass p als Bezugspunkt dient */
    }
    
    .jingle p::before {
        position: absolute;
        left: -4vw !important;
        top: 0vh;
    }
    
    .jingle p::after {
        position: absolute;
        right: -4vw !important;
        top: 6.5vh;
    }
}

@media (max-width: 430px) {
    html{
        min-height: 150vh;
        overflow: scroll ;
    }

    .top-bar{
        height: 120px;
    }

    .menu-icon{
        display: block; 
        margin-top: 20px;
        margin-right: 10px;
    }

    .top-bar img{
        margin-bottom: 20px;
        width: 90px;
        margin-left: -100px;
        margin-top: 8px;
    }

    .top-bar h1{
        text-align: left;
        margin-left: 100px;
        margin-bottom: 20px;
    }

    .info-bar{
        display: none; 
    }

    hr{
        display: none;
    }

    .our-services{
        flex-direction: column;
        gap: 140px;
        margin-top: 20px;
    }

    #service1{
        margin-top: 50px;
    }

    .jingle{
        max-width: 80%;
        font-size: 18px;
        margin-top: 15vh;
        margin-left: 10vw;
    }

    .jingle p {
        position: relative; /* Sicherstellen, dass p als Bezugspunkt dient */
    }
    
    .jingle p::before {
        position: absolute;
        left: -2vw;
        top: 0vh;
    }
    
    .jingle p::after {
        position: absolute;
        right: -2vw;
        top: 6.5vh;
    }
}
