/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Bellmt";
    font-weight: bold;
    font-size: 16pt;
}

.show {
    transform: translateY(0);
}

p, span, h1, h2, h3, h4{
    text-transform: uppercase;
}

nav{
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: auto;
    padding-top: 20px;
    top: 0;
    margin: 0;
    background-color: #798c39;
    text-align: center;
    transform: translateY(-140px);
    transition: 0.3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.navbar-brand{
    margin-right: unset;
}
.jumbotron{
    position: relative;
    z-index: -1;
    width:100%;
    margin-top: unset;
}

.full-width-image {
    width:100%;
}

.full-width-image img{
    max-height: 80vh;
    width: 100%;
}

section{
    margin-top: 5%;
}


/* Füge zusätzliche Stile hinzu, um den Inhalt und das Aussehen der Boxen anzupassen */
.card {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    min-height: 150px;
}



.angebote .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
.angebote .box:hover .card-inner {
    transform: rotateY(180deg);
}

.angebote .card-front,
.card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.angebote .card-back {
transform: rotateY(180deg);
}

.flex-direction-column{
    flex-direction: column;
}

.flex-direction-row{
    flex-direction: row;
}


.card{
    background-color: white;
    border: 3px solid #008C45; 
    outline: 3px solid #CD212A;
    outline-offset: -9px;
    border-radius: 15px;
    min-height: 350px;
  }

  .angebote .price{
    color: white;
    background-color: black;
    border-radius: 12px;
    font-size: 14pt;
    display: inline-block
  }


  .text-left{
    text-align: left;
  }

  .justify-content-space-around{
    justify-content: space-around;
  }

  .green{
    border-top: 5px solid #008C45; 
    width: 100%;
  }
  
  .red{
    border-top: 5px solid #CD212A; 
    width: 100%;
  }
  .white{
    border-top: 5px solid white; 
    width: 100%;
  }

 .margin-food-card{
  margin-left: 3%;
  margin-right: 3%;
 }


 .food-background{
  background-color: #f4f4f4;
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 2%;
}

 .header-food{
  border-radius: 15%;
 }

 .food-text-title{
	color: #c41718;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14pt;
}


.food-text{
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 11pt;
}

.singele-price-box{
  display: flex;
  align-items: center;
}
.single-price-text{
  margin-bottom: unset;
  display: inline;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12pt;
}


#info-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: black;
  background: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;  height: 50px;
  text-align: center;
}

/* Modal-Styling */
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow-y: scroll;
  max-height: 70%;
}

.modal-content p {
  margin: 0;
}

.close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}




#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 60px;
  font-size: 24px;
  cursor: pointer;
  color: black;
  background: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;  height: 50px;
  text-align: center;
}

#scrollTopBtn:hover {
  opacity: 1;
}


footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  padding: 0 20px;
  box-sizing: border-box; /* Berücksichtigt padding in der Breite */
}

.footer-column .container h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-column .container p {
  font-size: 14px;
  line-height: 1.6;
}
