.private-breakfast-header{
   
   background-color: tomato;
   margin-top: 8rem;
}

.private-breakfast-header h3 {
   font-size: 3.5em;
   color: white;
   text-align: center;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.private-breakfast-header h3:hover {
   transform: scale(1.05);
   transition: transform 0.3s ease;
}


.private-breakfast-intro {
   display: flex;
   flex-direction: row;
   justify-content: center;
   background-color: tomato;
   padding: 50px;
   border-radius: 10px;
   text-align: center;
   max-width: 60vw;
   margin: 0 auto;
   margin-top: 50px;
}


.private-breakfast-intro > div {
   width: 50%;
   flex: 1; /* Beide divs nehmen gleich viel Platz ein */
   padding: 0 20px; /* Optional: Abstand zwischen den divs */
   margin: auto 0;
   margin-top: 0;
}

.private-breakfast-intro p {
   color: white;
   font-size: 1.5em;
   margin-top: 20px;
}

.private-breakfast-intro ul {
   margin-top: 10px;
   padding-left: 8em;
}

.private-breakfast-intro ul li {
   color: white;
   list-style-type: disc;
   text-align: left;
   font-size: 1.2em;
}

.private-breakfast-intro img {
   width: 400px;
   height: auto;
   margin-left: 50px;
   border-radius: 10px;
}

.private-breakfast-intro img:hover {
   transform: scale(1.05);
   transition: transform 0.3s ease;
}

.private-breakfast-booking {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 150px;
   margin: 0 auto;
   width: 700px;
   padding-block: 5rem;
  margin-block-start: 5rem;
   border-radius: 10px;
}


.private-breakfast-booking button {
   background-color: tomato;
   color: white;
   border: none;
   padding: 15px 30px;
   font-size: 1.5em;
   cursor: pointer;
   border-radius: 5px;
}

.private-breakfast-booking button:hover {
   background-color: #ff6347;
   transform: scale(1.05);
   transition: transform 0.3s ease, background-color 0.3s ease;
}


.intro {
   background-image: url('img/PrivateBreakfastTableImage.jpg');
   min-height: 90vh;
   border-radius: 10px;
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}

.intro h4, p, h5 {
   color: white;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
   padding: 40px
}

.intro p {
   font-size: 1.2rem;
   max-width: 600px;
   margin: 0 auto;
}

.intro-parallex {
   background-color: rgba(247, 246, 246, 0.7);
   width: 80%;
   padding: 20px;
   border-radius: 10px;
   margin-top: 20px;
}

.intro-parallex-two {
   background-color: rgba(247, 246, 246, 0.7);
   width: 80%;
   padding: 20px;
   border-radius: 10px;
   margin-top: 20px;
}

@media screen  and (max-width: 768px) {
   .private-breakfast-header h3 {
      font-size: 2.5em;
   }

   .private-breakfast-intro {
      flex-direction: column;
      padding: 20px;
   }

   .private-breakfast-intro > div {
      width: 100%;
      padding: 0;
      margin-top: 20px;
   }

   .private-breakfast-intro img {
      width: 100%;
      height: auto;
      margin-left: 0;
   }

   .private-breakfast-booking {
      width: 100%;
      padding: 20px;
   }
}