@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

table {
    width: 100%;
}

th,
td {
    padding: 15px;
    text-align: left;
}

.table {
    width: 50%;
    margin: auto;
    border: 1px solid black;
    text-align: center;

}
tr{
    text-align: left;
}


/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgb(8, 0, 81);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(252, 69, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(252, 69, 102, 0);
    }
}

#termin-buchen-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

button {
    background-color: white;
    border: 2px solid #ccc;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  button {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }

  button {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
  }

 .cta-btn {
    background-color: white;
    border: 2px solid #ccc;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .cta-btn {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }

  .cta-btn {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
  }

/* Optional: Change the button color on hover */
/* #termin-buchen-button:hover {
    animation:  1s infinite;
} */

#unsere_arbeiten{
color: white;
}

h2 {
  /* color: white; */
    padding-top: 40px;
    text-align: center;
    /* font-family: 'Permanent Marker', cursive; */
    /* font-family: 'Rock Salt', cursive; */
    /* font-family: 'Henny Penny', cursive; */



}

#Impressum-Section {
    padding-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#Öffnungszeiten {
    padding-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin: auto;
    max-width: 1000px;
    margin-bottom: 30px;
    
}

#carouselExampleSlidesOnly {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    max-width: 70%;
}
.cover {
    background-image: url('../images/handyQuer.jpg');

    background-size: cover;
    background-position: center;
    height: 60vh;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .cover-content {
    text-align: center;
    color: white;
    
  }
  
  .cover-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: -1px 2px 0 #000, 1px 2px 0 #000, 1px -2px 0 #000, -1px -2px 0 #000;
  }
  

  .pricing {
    padding: 2rem;
    background-color: #fff;
    text-align: center;
  }
  
  .pricing h2 {
    margin-bottom: 2rem;
  }
  
  .pricing-plans {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .plan {
    background-color: #212529;
    padding: 2rem;
    color: white;
    border-radius: 10px;
    width: 30%;
    margin-bottom: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .plan h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .plan p {
    font-size: 1.2rem;
  }

  /* Basis-Styling */
#pricing {
    padding: 50px;
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .pricing-plans {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Ermöglicht das Umfließen der Elemente */
    gap: 20px; /* Abstand zwischen den Plänen */
  }
  
  .plan:hover {
    transform: translateY(-10px); /* Kleiner Hover-Effekt */
  }
  
  .plan h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .plan p {
    font-size: 18px;
  }
  

  .pulse:hover {
    background-color: #0056b3;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .plan {
      width: 45%; /* Bei mittleren Bildschirmen (Tablets) nehmen die Pläne 45% ein */
    }
  }
  
  @media (max-width: 768px) {
    .plan {
      width: 100%; /* Bei kleinen Bildschirmen (Handys) nehmen die Pläne die volle Breite ein */
    }
  }
  
  .plan button:hover {
    background-color: #555;
  }
  
  /* Gallery Section */
  .gallery {
    padding: 2rem;
    background-color: #212529;
    text-align: center;
  }
  
  .gallery h2 {
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .gallery-grid img {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .gallery-grid img.show {
    opacity: 1;
    transform: translateY(0);
  }
  


  
  