/* Allgemeine Layout-Einstellungen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Navbar-Stil */
.navbar {
    background-color: #143735;
    padding: 10px 0;
    display: flex;
    justify-content: center; /* Zentriert die Navbar insgesamt */
    align-items: center;
    width: 100%;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Platzierung von Logo und Firmenname am Rand */
    width: 100%;
    max-width: 1200px; /* Limitiert die Breite des Containers */
    position: relative; /* Wichtig für die Positionierung der Navigation */
}

/* Logo */
.navbar .logo {
    margin-right: 20px; /* Abstand zum nächsten Element */
}

.navbar .logo-img {
    height: 70px; /* Logo-Größe anpassen */
}

/* Navigation Links */
.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Dies zentriert die Links */
}

.navbar .nav-links li {
   margin: 0 10px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: black; /* Goldfarbe beim Hover */
}

/* Firmenname (Rechts) */
.company-name {
    margin-left: 20px; /* Abstand zum vorherigen Element */
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    white-space: nowrap; /* Verhindert Zeilenumbruch im Firmennamen */
    text-decoration: none;
}

.company-name:hover {
    font-style: italic;
}

/* Burger-Menü-Stil für mobile Ansicht */
.burger-menu {
    display: none; /* Standardmäßig nicht anzeigen */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: white;
}

/* Banner*/

.msv {
    padding: 10px;
    background-color: #143735;
}
.banner-container{
    width: 100%;
    background-color:#154341;
    margin: 0;
}
.banner-grün {
    text-align: center;
    z-index: 10;
    height: 800px;
    background-color:#154341;
}

.bannerimage img{
    position: relative;
    z-index: 20;
    top: -100px;
    width: 55%;
}
.banner-grün h1{
    margin-bottom: 50px;
    font-weight: 700;
    line-height: 100px;
    margin-top: 20px;
    color: white;
    font-size: 55px;
    z-index: 11;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1)
}

.msvbanner{ 
    width: 50%;
}

.banner-rot{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    background-color: #cc6c44;
}

.spielfeldlinie {
    background-color: #fef7d2;
    width: 100%;
    height: 80px;
    margin-top: 100px;
}
.rot-button{
    margin-top: 250px;
    z-index: 100;
    margin-bottom: 100px;
}
.red-button{
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 25px 50px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.red-button:hover {
    background-color: #555;
    color: white;
    font-weight: bold;
    border-color:#555;
    
}


/* Highlight-Bereich */
.highlight {
    background: #154341;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.highlight h2{
    color: white;
}
.highlight p {
    margin-bottom: 30px;
}
.btn-primary, .btn-secondary {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #002233;
    color: white;
    font-weight: bold;
    border: 2px solid #002233;
    text-decoration: none;
}

.btn-primary:hover {
    background: white;
    color: #002233;
    font-weight: bold;
    border: 2px solid #002233;
}
.btn-secondary {
    background: white;
    color: #002233;
    font-weight: bold;
    border: 2px solid #002233;
    text-decoration: none;;
}

.btn-secondary:hover {
    background: #002233;
    color: white;
    font-weight: bold;
    border: 2px solid #002233;
}

/* Features */
.features {
    background-color: #f6f6f6;
    padding: 50px 0px;
}

.features .grid {
    display: flex;
    justify-content: center;
    padding: 0 200px;
}

.feature {
    background-color: #fff;
    border-radius: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 50px;
    width: 300px;
    flex: 1;
    border-bottom: 5px solid #154341; /* Gelbe Linie unten */
    margin: 25px;
}

.feature p{
    line-height: 22px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.preis{
    font-weight: 700;
    font-style: italic;;
}

.sortiment-schrift{
    font-weight: 700;

}
.besaitungsdauer {
    font-weight: 700;
    text-decoration: underline;
}

.terminbutton{ 
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 50px;
}

.terminbutton:hover {
    background-color: #555;
}


/* Services Section */

.services-section {
    background-color: #f6f6f6;
    padding: 50px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Titel */
.services-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.services-title span {
    font-size: 3rem;
    color: #333;
    font-weight: normal;
}

/* Grid */
.services-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-icon img {
    border-radius: 50%;
}

/* Card */
.service-card {
    background-color: #fff;
    border-radius: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    max-width: 400px;
    flex: 1;
    border-bottom: 5px solid #154341; /* Gelbe Linie unten */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Icon */
.service-icon img {
    height: 50px;
    margin-bottom: 20px;
}

/* Titel im Card */
.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Text */
.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Button */
.service-button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #555;
}


/* Testimonials Slider Container */
  .testimonials {
    margin: 80px 0;
    height: 25vh;
    background: #154341;
    display: flex;;
    align-items: center;
    justify-content: center;
  }

  .testimonial-slider {
  width: 80%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid black;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-slide {
  display: none;
  padding: 40px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.testimonial-slide p {
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-slide span {
  font-weight: bold;
}

.testimonial-slider .active {
  display: block;
}

  

/* Kontakt */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 200px;
    background-color: #f9f9f9;
}

.content {
    max-width: 40%;
    padding: 20px;
}

.logo-and-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

.content h1 {
    font-size: 1.6rem;
    color: #2a2a2a;
}

.content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px; 
}

.content p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-info {
    margin: 20px 0;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.icon {
    font-size: 18px;
    margin-right: 10px;
    color: #154341; /* Grün für die Symbole */
}

.contact-button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.contact-button:hover {
    background-color: #555;
}

.image-container {
    max-width: 45%;
    padding: 20px;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
/*öffnungszeiten*/

.oeffnungszeiten{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 25vh;
    text-align: center;
}
 
#current-hours {
    display: flex;
    justify-content: center;
    text-align: left;
    font-size: 1.5em;
    margin-bottom: 10px;
}

#toggle-arrow {
    margin-left: 10px;
    cursor: pointer;
    font-size: 1.2em;
    user-select: none;
}

#all-hours {
    display: none; /* Liste standardmäßig versteckt */
    margin-top: 10px;
    padding: 0;
}

#all-hours li {
    list-style: none;
    font-size: 1.2em;
}

#all-hours .today {
    font-weight: bold; /* Heutiger Tag fett markieren */
}
/*mapgsintegration*/
#map {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 600px;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #002233;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    

}

footer ul{
    display: flex;
    list-style: none;
    text-decoration: none;
}

footer li{
    margin-right: 10px;
}

.footerlink {
    text-decoration: none;
}
footer .footerlink a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: color 0.3s;
}

footer .footerlink a:hover {
    color: #26800b; /* grün beim Hover */
}

/*impressum datenschutz*/

.impressumcontainer h1, h2, h3 {
    color: #333;
}

.impressumcontainer {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.impressumsection-header {
    color: white;
    padding: 10px;
    font-size: 1.5em;
    margin-top: 0;
}

.impressumsection-content {
    padding: 20px;
}

.impressumsection-content ul {
    list-style-type: none;
    padding-left: 0;
}

.impressumsection-content ul li {
    margin-bottom: 10px;
}






/* Media Queries für mobile Geräte */
@media (max-width: 768px) {
     /* Verstecke die normalen Navigation Links auf mobilen Geräten */
     .navbar .company-name,
     .navbar .nav-links {
         display: none; /* Firmenname und Navigation ausblenden */
     }

     .logo{
        margin-left: 30px;
        margin-bottom: 20px;
     }
     .logo-img{
        border-radius: 50%;
     }
 
     /* Das Burger-Menü anzeigen */
     .burger-menu {
         display: flex;
         margin-right: 50px;
     }
 
     /* Navigation links, wenn Burger-Menü geöffnet */
     .nav-links.active {
         display: flex;
         flex-direction: column;
         align-items: center;
         width: 50%;
         background-color: #143735;
         position: absolute;
         top: 0px;
         left: 50%;
         padding: 10px 0px 20px 0 ;
         line-height: 40px;
     }
 
     .nav-links li {
         margin: 15px 0;
     }
 
     .nav-links a {
         color: white;
         text-decoration: none;
         font-size: 17px;
         font-weight: bold;
         padding: 10px 20px;
         transition: color 0.3s;
     }
 
     .nav-links a:hover {
         color: black; /* Goldfarbe beim Hover */
     }

     .container {
        margin: 0 50px;
        line-height: 27px;        
     }

    .banner-grün {
        height: 400px;
    }
    .banner-grün h1 {
        font-size: 40px;
    }

    .bannerimage img {
        max-width: 100%;
        width: 70%
    }

    .banner-rot{
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        background-color: #cc6c44;
    }
    
    .spielfeldlinie {
        background-color: #fef7d2;
        width: 100%;
        height: 60px;
        margin-top: 60px;
    }
    .rot-button{
        margin-top: 160px;
        z-index: 100;
        margin-bottom: 80px;
    }
    .red-button{
        display: inline-block;
        background-color: #333;
        color: #fff;
        text-decoration: none;
        padding: 25px 50px;
        font-size: 1.5rem;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .feature {
        margin: 20px 0;
        width: 400px;
    }

    .features .grid{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0px;
    }

    .services-section {
        background-color: #f6f6f6;
        padding: 20px 20px;
    }
    .services-grid {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .services-container {
        padding: 20px;
    }

    .contact-section {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .content {
        max-width: 100%;
        padding: 20px;
    }

    .image-container {
        display: none;
        max-width: 100%;
        padding: 20px;
    }

    .contact-button {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }
}

/* Tablet-Größen */
@media (max-width: 1024px) {
    /* Verstecke die normalen Navigation Links auf mobilen Geräten */
     .navbar .company-name,
     .navbar .nav-links {
         display: none; /* Firmenname und Navigation ausblenden */
     }

     .logo{
        margin-left: 30px;
     }
     .logo-img{
        border-radius: 50%;
     }
 
     /* Das Burger-Menü anzeigen */
     .burger-menu {
         display: flex;
         margin-right: 50px;
     }
 
     /* Navigation links, wenn Burger-Menü geöffnet */
     .nav-links.active {
         display: flex;
         flex-direction: column;
         align-items: center;
         width: 30%;
         background-color: #143735;
         position: absolute;
         top: 0px;
         left: 50%;
         padding: 10px 0px 20px 0 ;
         line-height: 40px;
     }
 
     .nav-links li {
         margin: 15px 0;
     }
 
     .nav-links a {
         color: white;
         text-decoration: none;
         font-size: 17px;
         font-weight: bold;
         padding: 10px 20px;
         transition: color 0.3s;
     }
 
     .nav-links a:hover {
         color: black; /* Goldfarbe beim Hover */
     }

     .container {
        margin: 0 50px;
        line-height: 27px;        
     }

    .banner-grün {
        height: 400px;
    }
    .banner-grün h1 {
        font-size: 40px;
    }

    .bannerimage img {
        max-width: 100%;
        width: 70%
    }

    .banner-rot{
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        background-color: #cc6c44;
    }
    
    .spielfeldlinie {
        background-color: #fef7d2;
        width: 100%;
        height: 60px;
        margin-top: 60px;
    }
    .rot-button{
        margin-top: 160px;
        z-index: 100;
        margin-bottom: 80px;
    }
    .red-button{
        display: inline-block;
        background-color: #333;
        color: #fff;
        text-decoration: none;
        padding: 25px 50px;
        font-size: 1.5rem;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .feature {
        margin: 20px 0;
        width: 400px;
    }

    .features .grid{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0px;
    }

    .services-section {
        background-color: #f6f6f6;
        padding: 20px 20px;
    }
    .services-grid {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .services-container {
        padding: 20px;
    }

    .contact-section {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .content {
        max-width: 100%;
        padding: 20px;
    }

    .image-container {
        display: none;
        max-width: 100%;
        padding: 20px;
    }

    .contact-button {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }
    .datenschutzschrift{
        font-size: 35px;
       }
}

/* Für noch kleinere Geräte */
@media (max-width: 480px) {
    /* Verstecke die normalen Navigation Links auf mobilen Geräten */
    .navbar .company-name,
    .navbar .nav-links {
        display: none; /* Firmenname und Navigation ausblenden */
    }

    .logo{
       margin-left: 30px;
       margin-bottom: 0px;
    }
    .logo-img{
       border-radius: 50%;
    }

    /* Das Burger-Menü anzeigen */
    .burger-menu {
        display: flex;
        margin-right: 50px;
    }

    /* Navigation links, wenn Burger-Menü geöffnet */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        background-color: #143735;
        position: absolute;
        top: 0px;
        left: 50%;
        padding: 10px 0px 20px 0 ;
        line-height: 40px;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 17px;
        font-weight: bold;
        padding: 10px 20px;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: black; /* Goldfarbe beim Hover */
    }

    .container {
       margin: 0 50px;
       line-height: 27px;        
    }
    .msvbannercontainer{
        margin-top: 20px;
        padding: 0;
    }
    .msvbanner{
        width: 90%;
    }

   .banner-grün {
       height: 350px;
   }
   .banner-grün h1 {
       font-size: 30px;
       line-height: 60px;
       padding-top: 20px;
   }

   .bannerimage img {
    margin-top: 50px;
    width: 120%;
   }

   .banner-rot{
       display: flex;
       flex-direction: column;
       text-align: center;
       width: 100%;
       background-color: #cc6c44;
   }
   
   .spielfeldlinie {
       background-color: #fef7d2;
       width: 100%;
       height: 40px;
       margin-top: 60px;
   }
   .rot-button{
       margin-top: 90px;
       z-index: 100;
       margin-bottom: 80px;
   }
   .red-button{
       display: inline-block;
       background-color: #333;
       color: #fff;
       text-decoration: none;
       padding: 15px 25px;
       font-size: 1.2rem;
       font-weight: bold;
       border-radius: 5px;
       transition: background-color 0.3s ease;
   }
   .container{
    display: flex;
    flex-direction: column;
   }

   .testimonials{
    padding: 20px;
    height: auto;
   }

   .feature {
       margin: 20px 0;
       width: 200px;
   }
    .features{
        margin-top: 0;
        margin: 0;
        padding: 0;
    }
   .features .grid{
       display: flex;
       flex-direction: column;
       align-items: center;
       padding: 20px 0px;
   }
    .services-title{
        font-size:28px;
    }
   .services-section {
       background-color: #f6f6f6;
       padding: 20px 20px;
   }
   .services-grid {
       display: flex;
       align-items: center;
       flex-direction: column;
   }

   .services-container {
       padding: 20px;
   }

   .contact-section {
       padding: 20px;
       flex-direction: column;
       text-align: center;
   }

   .content {
       max-width: 100%;
       padding: 20px;
   }

   .image-container {
       display: none;
       max-width: 100%;
       padding: 20px;
   }

   .contact-button {
       width: 100%;
       padding: 15px 0;
       text-align: center;
   }
   
   .datenschutzschrift{
    font-size: 30px;
   }
}