body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6f4f5;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

.hotline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin-top: 20px;
    margin-left: 70%;
}

.hotline h1 {
    text-align: center;
    margin: 0;

    color: #66aeb2;
    font-weight: 600;
    font-size: 30px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    text-decoration: underline;
}

.hotline a{
    text-decoration: none;
    color: #000;
    font-size: 20px;
}

.service {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.service h2 {
    color: #66aeb2;
    font-weight: 600;
    font-size: 30px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

.service p {
    max-width: 800px;
    font-size: 22px;
}

.grid-container {
    margin-top: 20px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; 
    max-width: 90%; 
    padding: 0 20px;
    text-align: center;
    justify-items: center; 
    align-items: stretch; 
}

.grid-item {
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    position: relative;
    overflow: hidden; 
    transition: transform 0.3s ease;

    padding: 0; 
    justify-content: flex-end;

}

.grid-item:hover {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.grid-item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    aspect-ratio: 16 / 9;

}

.grid-item h1 {
    color: #66aeb2;
    font-weight: 600;
    font-size: 30px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

.grid-item p {
    font-size: 20px;
    padding: 20px;
}

.kontakt {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.kontakt-text h2{
    color: #66aeb2;
    font-weight: 600;
    font-size: 30px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

.kontakt-text p {
    max-width: 800px;
    font-size: 22px;
    font-weight: bold;
}

.whatsapplink{
    margin-top: 10px;
}
  
.whatsapplink button{
    padding: 1rem 1.5rem;
    width: 200px; 
    background-color: #25D366;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #e6f4f5;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
  
.whatsapplink button:hover {
  background-color: #e6f4f5;
  border: 2px solid #25D366;
  color: #000;
  transform: scale(1.07); 
  transition: background-color 0.3s ease, transform 0.3s ease; 
} 

.kontakt a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 0 10px;
}

.about {
    padding-top: 40px;
    text-align: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.about-text h2 {
    color: #66aeb2;
    font-weight: 600;
    font-size: 30px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

.about-text p {
    max-width: 800px;
    font-size: 22px;
}

.row {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding-bottom: 40px;
}

.column {
    margin: 3%;
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.7s ease;
}

.column h3 {
    font-size: 30px;
    font-weight: lighter;
    margin-bottom: 4px;
}

.column h4 {
    font-size: 20px;
    font-weight: lighter;
    padding-bottom: 30px;
    margin: 0;
}

.short-divider {
    width: 70%; 
    height: 0px; 
    flex-shrink: 0; 
    margin-bottom: 20px;
}   

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.contact a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: lighter;
    padding-bottom: 10px;
}

@media(max-width: 1024px) {
    .service p {
        max-width: 600px;
    }

    .about p {
        max-width: 600px;
    }

    .grid-container {
        max-width: 90%;
    }
}


@media(max-width: 1000px) {
    .grid-container {
        margin-bottom: 20px;
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media(max-width: 830px) {
    .service p {
        max-width: 550px;
    }

    .about p {
        max-width: 500px;
    }
}

@media(max-width: 780px) {
    .column h3 {
        font-size: 25px;
    }
}   

@media(max-width: 700px) {
    .service p {
        max-width: 500px;
        font-size: 16px;
    }

    .about p {
        max-width: 450px;
        font-size: 16px;
    }
    
    .grid-item {
        padding: 5px;
    }

    .grid-item p {
        font-size: 16px;
    }
}

@media(max-width: 630px) {
    .grid-item p {
        font-size: 14px;
    }
}

@media(max-width: 610px) {
    .hotline {
        margin-left: 0;
        padding-top: 20px;
    }
}

@media(max-width: 500px) {
    .service p {
        max-width: 350px;
        font-size: 18px;
    }

    .about p {
        max-width: 80%;
        font-size: 18px;
    }

    .column {
        flex-basis: 80%;
    }

    .column h4 {
        padding-top: 7px;
        font-size: 18px;
    }


}

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

    .grid-item p{
        font-size: 18px;
    }
}

@media(max-width: 375px) {
    .service p {
        max-width: 320px;
        font-size: 16px;
    }

    .about p {
        max-width: 80%;
        font-size: 16px;
    }

    .column {
        flex-basis: 80%;
    }

    .column h4 {
        padding-top: 7px;
        font-size: 16px;
    }
}