* { box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    margin: 0;
}


/* Navigation */
nav{
    background-color: #00a6eb!important;
    height: 50px;
    
}
.nav-section{
    height: 50px;
    background-color: #00a6eb;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.nav-logo{
    width: 224px;
    height: 35px;
    margin-left: 30%;
}

@media (max-width: 1200px) {
  .nav-logo {
    margin-left: 10%;
  }
}

.first-link{
    margin-left: 80%;
}

.nav-link{
    font-size: 16px;
    font-family:'Dosis', sans-serif;
    color: #fff;
    margin-left: 10px;
}

.nav-link:hover{
    color: #337ab7;
}

@media (max-width: 1200px) {
  .first-link {
    margin-left: 30%;
  }
}

@media (max-width: 992px) {
    .nav-content {
        margin-top: -5px!important;
    }
    .nav-link{
        background-color: #00a6eb!important;
        padding-left: 25px;
    }
    .first-link{
        margin-left: 0%;
    }
    .navbar-toggler{
        border-color: #fff;
    }
}


/* START  */
.start{
    background-color: #F5F5F5;
    padding-bottom: 5px;
}

.start-img{
    margin-top: 50px;
    max-height: 600px;
    width: 100%;
}

.card{
    padding-top: 15px;
    padding-bottom: 70px;
}
.card-start{
    border-color: #F5F5F5;
    background-color: #F5F5F5;
}

.card-title-start{
    text-align: center;
    font-size: 25px;
}
.card-text-start{
    text-align: center;
}

.card-body-start{
    text-align: center;
}

.weekday{
    display: inline-block;
    text-align: center;
}

.weitere-infos{
    margin-top: -20px;
}

@media (max-width: 992px) {
    .card-body-start {
        margin-top: 25px!important;
    }

}


/* RETAURANT */
.restaurant > h2{
    padding-top: 70px;
    letter-spacing: 6px;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
}

.shape{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 20px;
}

.card-restaurant{
    border-color: #fff;
    background-color: #fff;
}
.card-title-restaurant{
    font-size: 25px;
    padding-bottom: 25px;
}


/* DIASHOWS */
/* === Mini-Diashow === */
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 20%;
    padding: 10px;
    height: 120px;
    cursor: pointer;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left { left: 0; }
.arrow.right { right: 0; }

.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

/* === Lightbox === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-img-container {
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
}

.lightbox .nav {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.lightbox .nav.left { left: 0; }
.lightbox .nav.right { right: 0; }

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* SPEISEKARTE */

.container-speisekarte{
    background-color: #F5F5F5;
    margin-top: 90px;
}

.speisekarte > h2{
    padding-top: 90px;
    letter-spacing: 6px;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
}

.shape-speisekarte{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 70px;
} 

.slideshow1-container {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  height: auto;
}

.slideshow1-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slideshow1-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow1-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: auto;
  background: #000;
  border-radius: 8px;
}

.slideshow1-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.slideshow1-left { left: 10px; }
.slideshow1-right { right: 10px; }

.slideshow1-dots {
  margin-top: 20px;
  text-align: center;
  padding-bottom: 90px;
}

.slideshow1-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slideshow1-dot.slideshow1-active {
  background-color: #333;
}

.text-speisekarte{
    padding-top: 5px;
}


/* FAQ */

.container-faq{
    margin-top: 20px;
}

.faq > h2{
    padding-top: 90px;
    letter-spacing: 6px;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
}

.faq > p{
    padding-top: 0px;
    padding-bottom: 40px;
    text-align: center;
}

.shape-faq{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 30px;
} 


.accordion {
    max-width: 800px;
    margin: 0px auto;
    /* border-radius: 8px; */
}

.accordion-item {
    /* border-bottom: 1px solid #ddd; */
    margin-bottom: 10px;
    background-color: #F3F3F3;
}

.accordion-header {
    padding: 0px 10px;
    cursor: pointer;
    /* font-weight: bold; */
    transition: background 0.3s;
    font-family: "Open Sans";
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 1px;
    color: #6d6d6d;
}

.accordion-header:hover {
    background: #eaeaea;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: #fff;
}

.accordion-content.open {
    padding: 15px 20px;
    max-height: 500px; /* ausreichend für normalen Text */
    font-size: small;
}

.acc-item-p{
    margin-bottom: 0!important;
}

.symbol {
  font-weight: bold;
  font-size: 20px;
  width: 20px;
  padding-right: 20px;
}

.td-openingtimes{
    padding-left: 20px;
}

.fragenichtbeantworteth2{
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.fragenichtbeantwortetp{
    margin-bottom: 60px;
    font-size: 14px;
    color: #000;
}

.kontaktbtn{
    color: #fff;
    background-color: #00a6eb;
    border-radius: 0px;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 1s;
    width: 161px;
    height: 42px;
    margin-right: 0px!important;
}

.kontaktbtnlink{
    text-decoration: none;
    color: #fff;
}



.card-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap; /* für mobile Ansicht */
}

.card {
    flex: 1 1 45%; /* responsive Breite */
    padding: 20px;
    min-width: 280px;
    border-style: none!important;
}

.card2{
    margin-top: 70px;
}

@media (max-width: 500px) {
    .card2 {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    padding-bottom: 70px;
    z-index: 10;
    }
}


/* KONTAKT */
.kontakt > h2{
    padding-top: 90px;
    letter-spacing: 6px;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
}

.kontakt > p{
    padding-top: 0px;
    padding-bottom: 40px;
    text-align: center;
}

.shape-kontakt{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 30px;
} 


.card-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-kontakt {
    flex: 1 1 calc(33.333% - 13.33px); /* 3 Karten + Lücke (20px) = 33.33% - etwas Abstand */
    border-radius: 8px;
    padding: 20px;
    min-width: 250px;
}

.card-kontakt > h2{
    padding-top: 0px;
    font-size: 25px;
    font-weight: 500;
}


@media (max-width: 800px) {
    .card {
    flex: 1 1 100%;
    }
}

.logo_bottom{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.impressum{
    text-align: center;
    cursor: pointer;

}

#datas {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.0s ease;
  padding: 0 25%;
  text-align: center;
}

#datas.open {
  max-height: 2000px; /* hoch genug für den gesamten Inhalt */
}

@media (max-width: 1200px) {
  #datas {
    padding: 0 10%;
  }
}

.copywriteara{
    background-color: #00a6eb;
    height: 132px;
}

.copywrite{
    text-align: center;
    color: #fff;
    padding-top: 60px;

}

.arrowincopywrite{
    padding-left:15px;
    cursor: pointer;
}

#jumpmarkarrow{
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}