html{
    font-family:sans-serif;
}
body{
    text-align: center;
    background-color: white;
}

/* Base styles */
#body_header{
    width: auto;
    /*position: relative;*/
}

#side-bar-buton{
    position: absolute;
    top: 1.5vw; /*1.5cm;*/
    left:3%; /*1cm;*/

}
#side-bar-buton{
    background-color: white;
    border: #fff;
}

#side-bar-buton:hover{
    color: rgb(183, 181, 181);
}

#side-bar-buton i{
    font-size: 4vw;
}

#direct-reservation{
    position: absolute;
    left: auto;
    top: 1.5vw; /*1.5cm;*/
    left:10vw; /*1cm;*/
    padding: 1.5vw;
    background-color: #3f0000;
    color: #f1f1f1;
    border: none;
    pointer-events: auto;
    opacity: 85%;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#direct-reservation:hover{
    background-color: #777;
    opacity: 90%;
}

.takeaway{
  color:#3f0000;
  position: absolute;
  top: 1%; /*1.5cm;*/
  right:15%; /*1cm;*/
  padding: 1.5vw;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.takeaway:hover{
  color:#bbb;
}
#lang-container{
  position: absolute;
  top: 3%;
  right: 2%;
  display: flex;
  gap: 10px;
}

#lang-container a{
  font-size: 17px;
  color: black;
  text-decoration: underline;
}

#lan-fr:hover{
  color: #666;
}
#lan-en:hover{
  color: #666;
}

#body_header p{
    position: relative;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    margin: 0%;
    font-size: small;
    padding-top: 5px;

}

#body_header img{
    height: 15%;
    width: 20%;
    max-width: 100%;
    margin: 0cm;
    align-self: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  #body_header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  #direct-reservation,
  #lang-container,
  .takeaway {
    position: static;
    margin: 10px 0;
    padding: 10px;
  }

  #side-bar-buton i {
    font-size: 6vw;
  }

  #direct-reservation {
    flex-direction: row;
    font-size: 4vw;
    width: auto;
    margin: 0 auto;
    padding: 10px;
  }

  #lang-container {
    justify-content: center;
    padding: 5px;
  }



  #body_header img {
    width: 50%;
    padding:5px;
  }
}

#slogan{
    /*font-family: 'Courier New', Courier, monospace;*/
    text-align: center;
    margin-bottom: 15px;
    font-size: small;
}

img {
    max-width: 100%;
    height: auto;
    margin: 0%;
  }


div.scrollmenu {
    background-color: #333;
    overflow: auto;
    overflow-x: auto;
    white-space: nowrap;
    width: auto;
    margin: 0%;
    display: flex;
    padding: 10px 0;
    scroll-behavior: smooth;

  }

div.scrollmenu a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    width: 15%;
    padding: 12px 20px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: max-content;
    white-space: nowrap;

  }

div.scrollmenu a:hover {
    background-color: #777;
  }


    /* Para móviles: scroll horizontal visible */
    .scrollmenu::-webkit-scrollbar {
        height: 6px;
      }

      .scrollmenu::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 4px;
      }

      .scrollmenu::-webkit-scrollbar-track {
        background-color: #333;
      }

      /* Media queries: centrar y hacer más grande en pantallas grandes */
      @media (min-width: 768px) {
        .scrollmenu {
          justify-content: center;
        }
        .scrollmenu a {
            font-size: 18px;
            padding: 14px 30px;
    }
}


.reviews {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 1rem 0;
}

.reviews-h3 {
  text-align: center;
}

.reviews-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* ❗ Impide que se apilen */
  gap: 1rem;
  padding: 0 1rem;
  width: max-content; /* ❗ Asegura que el contenido defina el ancho */
  overflow-x: auto;
  overflow-y: hidden;
}

.review {
  min-width: 250px;
  max-width: 300px;
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review:hover {
  transform: scale(1.03);
}

.stars {
  font-size: 1.2rem;
  color: #e0aa0f;
}

.icono-imagen {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Scroll personalizado */
.reviews-container::-webkit-scrollbar {
  height: 6px;
}
.reviews-container::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

/* Opcional: desactivar scroll en pantallas grandes */
@media (min-width: 1024px) {
  .reviews-container {
    overflow-x: auto;
    justify-content: flex-start;
  }
}

#footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(182, 0, 18);
    opacity: 0.9;
    padding: 20px;
    gap: 10px;
  }

  #footer-container div {
    flex: 1 1 30%;
    min-width: 250px; /* Se asegura de que no se compriman demasiado */
    padding: 10px;
    box-sizing: border-box;
    color: black;
  }

  #footer-container h3 {
    color: black;
    margin-bottom: 10px;
  }

  #footer-container li {
    list-style-type: none;
    margin-bottom: 8px;
  }

  #footer-container a {
    color: rgb(26, 24, 24);
    text-decoration: none;
  }

  #footer-container a:hover {
    color: rgb(183, 181, 181);
  }

  #footer-container a:active {
    color: rgb(255, 255, 255);
  }

  #column3 i {
    font-size: 24px;
    margin-right: 10px;
  }

  /* 🔁 Responsivo en pantallas pequeñas */
  @media (max-width: 768px) {
    #footer-container {
      flex-direction: column;
      align-items: flex-start;
    }

    #footer-container div {
      width: 100%;
    }
  }
.copy-right{
    background: black;
    text-align: center;


}
.copy-right-sec{
    padding: 0.5cm;
    background: black;
    color: #fff;
    text-align: center;




}
.copy-right-sec a{
	color: #fcd462;
    font-weight: 500;
}

a{
  text-decoration:none;
}

/* footer section end */

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }

  /* The navigation menu links */
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }

  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }

  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    transition: margin-left .5s;
    padding: 20px;
  }

  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  /*scroller*/
  @media (min-width: 1420px) {

  #body_header p{
    font-size: large;
  }
  #slogan{
    font-size: large;
  }
}

  /*scroller*/
@media (min-width: 1920px) {
  html {
    font-size: 2rem;
  }

  button{
    font-size: 1vw;
  }
  #lang-container a{
    font-size: 1vw;
  }
  .scrollmenu a{
    font-size: 1vw;
  }
  #column3 i{
    font-size: 1rem;
  }
  #slogan{
    font-size: larger;
  }
  #body_header p{
    font-size: larger;
  }
}
