
   
   body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        
    }

    body.modo-oscuro {
      background-color: #000000e7;
      color: white;
    }
    
    body.modo-oscuro h1 {
      color: white;
      
    }
    
    body.modo-oscuro h3 {
    color: white;
    }
    
    body.modo-oscuro footer {
      color: #000;
    }


    .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 30px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    transition: background-color 0.2s ease-in-out;
    z-index: 9999;
    opacity: 0.75;
    transition: all 0.2s ease-in-out;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 12px;
    pointer-events: none;
  }
 
  .menu-icon:before,
  .menu-icon-middle,
  .menu-icon:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.2s ease-in-out;
  }
 
  .menu-icon-middle {
    margin-top: 0.5px;
  }


  .menu-icon:before {
    transform: translateY(-2px);
  }

  .menu-icon:after {
    transform: translateY(2px);
  }

  .menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 25px;
    width: calc(94vw - 50px); /* Modificado para que el menú ocupe casi toda la pantalla */
    max-width: 400px; /* Establecido un ancho máximo para evitar que el menú sea demasiado ancho en pantallas grandes */
    background-color: rgba(0, 0, 0, 0.823);
    border-radius: 10px;
    padding: 10px;
    animation: fadeInDown 0.5s;
    z-index: 9999;
    justify-content: center;
    
  }
 
  .menu.show {
    display: block;
  }
 
  .menu ul {
    list-style-type: none;
   padding: 0;
   
  }
 
  .menu li {
    margin-bottom: 40px;
    position: relative; /* Necesario para el dropdown */
    
  }
 
  .menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
  }
 
  .menu a:hover {
    text-decoration: underline;
  }
 
  @keyframes fadeInDown {
    from {
      transform: translate3d(10%, -50%, 0);
      opacity: 0;
    }
 
    to {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }

  ul {
    color: white;
    font-size: x-large;
    text-align: center;
    line-height: 50px;
    text-align: center;
    vertical-align: bottom;
   
  }

    .img {
    border-radius: 10px;
    cursor: pointer;
    width: 358px;
    height: 234px;
}



h1 {
    font-family: palatino, serif;
    font-size: 200%;
    color: brown;
    text-align: center;
}

h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(39, 39, 39);
    font-size: 130%;
}


p {
    font-family: sans-serif;
    font-size: small;
}



.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: white;
  text-align: center;
  overflow: hidden;
  animation: fadeIn 1.5s ease-out; /* Animación de desvanecimiento al cargar la página */
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  z-index: 1;
  text-align: center;
}

.hero-content img {
  max-width: 300px;
  height: auto;
}

.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.button {
  background-color: #ee0202;
  color: white;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  margin: 0 20px;
  font-size: 18px;
  border-radius: 25px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #a00202;
  opacity: 1;
  transform: scale(1.1);
}



    main {
        position: relative;
        width: 100%;
        height: 100vh;
    }

    .carta {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap; /* Para que los platos se envuelvan en una nueva línea cuando no haya espacio */
  justify-content: space-between; /* Espaciado uniforme entre los platos */
}

.carta div {
  width: 100%; /* Ancho del contenedor de cada plato en una columna */
  margin-bottom: 20px; /* Espacio entre los platos */
}

/* Media Query para 3 columnas en pantallas mayores a 1280px */
@media (min-width: 1281px) {
  .carta div {
    width: 30%; /* Ancho del contenedor de cada plato en 3 columnas */
  }
}

/* Media Query para 2 columnas en pantallas entre 769px y 1280px */
@media (min-width: 769px) and (max-width: 1280px) {
  .carta div {
    width: 48%; /* Ancho del contenedor de cada plato en 2 columnas */
  }
}

/* Media Query para 1 columna en pantallas menores o iguales a 768px */
@media (max-width: 768px) {
  .carta div {
    width: 100%; /* Ancho del contenedor de cada plato en 1 columna */
  }
}

    /* Nueva sección de pantalla completa */
    .fullscreen-section .content p, .fullscreen-section .gourmet {
      animation: fadeIn 1s ease-in-out;
      opacity: 1; /* Agrega esto para establecer la visibilidad inicial en 0 */
  }
  
  .fullscreen-section .gourmet {
      font-family: 'Sacramento', cursive;
      font-size: 140px;
      opacity: 1; /* Asegúrate de que la propiedad opacity está aquí también */
  }
  
  @keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
  }

    .fullscreen-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
      text-align: center;
      background-image: url("images/poster.jpg?v=56");
      min-height: 500px;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      animation: fadeIn 1s ease-in-out; /* Aplicar la animación directamente a la sección */
  }
  
  .fullscreen-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
  }
  
  .fullscreen-section .content {
      font-family: 'Sacramento', cursive;
      font-size: 100px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      z-index: 1;
  }
  
 
  
  


/* Nueva sección para el párrafo centrado */
.paragraph {
        text-align: center;
        justify-content: center;
    }

    .paragraph-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }


.paragraph h2 {
        color: #a82112;
        margin-bottom: 10px; /* Agrega espacio debajo del título */
}


/* carrusel*/

/* Estilos específicos para el carrusel */
.carousel-container {
            width: 75%;
            height: 10%;
            margin: auto;
            overflow: hidden;
            position: relative;
        }

        #image-carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-image {
            width: 100%;
            min-width: 100%;
            object-fit: cover;
            border-radius: 30px;
        }

        .carousel-button {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: white;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            padding: 10px;
            outline: none;
        }

        #prev-button {
            left: 10px;
        }

        #next-button {
            right: 10px;
        }

/* nosotros */

.nosotros {
            text-align: center;
            margin-bottom: 20px;
        }

        .nosotros h2 {
            margin-bottom: 10px;
        }

        .imagen-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
        }

        .imagen-container div {
            text-align: center;
            margin: 20px; /* Aumentado el margen entre las imágenes */
            flex: 1 0 calc(33.33% - 40px); /* Establece el ancho de cada imagen para 33.33%, restando los márgenes */
            box-sizing: border-box;
        }

        .imagen-container img {
            max-width: 100%;
            height: auto;
        }

        .mapa {
            text-align: center;
            padding: 20px;
        }

        iframe {
            width: 100%;
            height: 600px;
            border: 0;
        }


        /*contact*/
        .contact {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.contact img {
    max-width: 300px;
        /* Adjust the width as needed */
        height: auto;

}

.contact-info p,
.business-hours p {
  margin: 5px 0;
}

.social-media a {
  margin: 0 10px;
}

.social-media img {
  width: 30px; /* ajusta el tamaño según sea necesario */
}

    /* Updated footer styles */
    footer {
        background-color: #333;
        color: white;
        text-align: center;
        padding: 20px 0;
        position: relative;
        z-index: 2;
    }

    footer a {
        color: white;
    }

    /* Media query for larger screens */
    @media (min-width: 768px) {
        .buttons {
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
    }

   
    /*ANIMACIONES*/

    /* Estilo para ocultar inicialmente el elemento */
.scroll-hidden {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estilo para mostrar el elemento con fade-in al hacer scroll */
.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  /* The image used */
  background-image: url("images/poster.jpg?v=56");

  /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.dropdown-content {
  display: none;
  position: relative; /* Cambiado a relative para que funcione bien en móviles */
  background-color: rgba(0, 0, 0, 0.823);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Mostrar el dropdown cuando se active */
.show {
  display: block;
}

@keyframes fadeInDown {
  from {
    transform: translate3d(10%, -50%, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
