@import url('https://fonts.googleapis.com/css2?family=Belleza&display=swap');

@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/NeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/NeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/NeueMontreal-Bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/NeueMontreal-Light.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('../fonts/NeueMontreal-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/NeueEinstellung-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/NeueEinstellung-Medium.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/NeueEinstellung-Bold.woff2') format('woff2');
  font-weight: 700;
}
@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/NeueEinstellung-Light.woff2') format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/NeueEinstellung-ExtraBold.woff2') format('woff2');
  font-weight: 800;
}
@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/NeueEinstellung-Thin.woff2') format('woff2');
  font-weight: 100;
}

/* Reset y configuración global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Titulares */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Neue Montreal', sans-serif;
  font-weight: 500;
}

/* Texto general */
body, p, span, li, a {
  font-family: 'Neue Einstellung', sans-serif;
  font-weight: 400;
}

/* Navbar y branding */
.navbar, .nav-links, .logo, .menu, li, ul, a {
  font-family: 'Playfair Display', serif;
}

body, html {
    width: 100%;
    height: 100%;
}

body {
    background-color: rgb(227, 221, 215);
}

/* Contenedor del video de fondo */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Capa negra sobre el video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajusta el valor de opacidad (0.5 = 50%) */
    z-index: 1;
}

/* Asegurar que el contenido esté por encima de la capa negra */
.navbar, .hero-content {
    position: relative;
    z-index: 2;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    width: 100%;
    align-items: center;
    justify-content: space-between; /* Distribuye uniformemente */
    padding: 0;
    position: relative;
}


.nav-links li {
    flex: 1; /* Hace que todos los elementos ocupen el mismo espacio */
    text-align: center;
}

.nav-links a {
    text-decoration: none;
    color: #d7d2cb;
    font-size: 26px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff; /* Cambia el color al pasar el mouse */
}

/* Efecto de subrayado desde el centro */
.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease-in-out;
    margin: 0 auto;
}

/* Expansión del subrayado desde el centro */
.nav-links a:hover::after {
    width: 15%;
}

/* Excluir el logo del efecto */
.logo a::after {
    display: none;
}

/* Estilos para centrar el logo */
.logo {
    flex-grow: .5;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 55px; /* Ajusta según sea necesario */
}

/* Botón de orden */
.order-btn {
    color: #00ff00;
    font-weight: bold;
}

/* Imagen de "Kalayo Eventos" */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.logo-texto {
    width: 450px;  /* Ajusta el tamaño según sea necesario */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.menu-toggle {
    display: none;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

.inicio {
    display: none;
}

.order-btn {
    color: #00ff00;
    font-weight: bold;
    position: relative;
}

/* Punto verde animado */
.order-btn {
    color: #00ff00;
    font-weight: bold;
    position: relative;
}

/* Punto verde animado */
.order-btn {
    color: #00ff00;
    font-weight: bold;
    position: relative;
}

/* Punto verde animado */
.order-btn::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -4px;
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    animation: blink 0.9s step-start infinite, hideDot 5s forwards 5s;
}

/* Animación de parpadeo */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Desaparece después de 5 segundos */
@keyframes hideDot {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Responsividad */
@media (max-width: 1100px) {
    .nav-links a {
        font-size: 22px;
    }
}

@media (max-width: 980px) {
    .nav-links a {
        font-size: 20px;
    }
}

.banquete-section {
    background-image: url('imgs/banquetes-exclusivos.png'); 
    background-size: cover;
    background-position: center;
    height: 600px; 
    position: relative;
}


.overlay {
    background: rgba(0, 0, 0, 0.5); 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.evento-texto {
    font-size: 39px;
    margin-bottom: 90px;
}

/* Botón */
.botones-accion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-blanco {
  background-color: #fff;
  color: #000;
  padding: 24px 56px;
  border-radius: 999px;
  font-weight: 400;
  text-decoration: none;
  font-family: Neue montreal;
  font-size: 1.2rem;
  transition: all 0.45s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-blanco:hover {
  background-color: #000;
  color: #fff;
}


/* Encabezado */
.banquete-header {
    text-align: center;
    margin-bottom: 60px;
}

.banquete-titulo {
    margin-top: 90px;
    font-family: 'Belleza';
    font-size: 48px;
    font-weight: 300;
    color: #333;
}

.banquete-linea {
    width: 30%;
    height: 3px;
    background-color: #333;
    margin: 30px auto;
    opacity: 34%;
}

.catering-experiences {
    text-align: center;
    background-color: #e3ddd7; /* Color similar al fondo de la imagen */
    padding: 40px 20px;
}

.catering-experiences h2 {
    font-family: Einstellung;
    font-size: 38px;
    font-weight: 400;
    margin-top: 8rem;
    margin-bottom: 30px;
}

.catering-experiences h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #444;
    margin: 10px auto 0;
}

.event-section {
    position: relative;
    overflow: hidden;
    background: url('imgs/catering.png') no-repeat center center fixed;
    color: rgb(255, 255, 255);
    padding: 120px 20px;
    text-align: center;
    background-size: cover;
}

.event-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Capa negra semitransparente */
}

.event-decorator {
    width: 60px;
    height: 4px;
    background-color: #ffffff; /* Decorador blanco */
    margin: 20px auto; /* Centra el decorador y agrega espacio arriba y abajo */
}

.event-content {
    position: relative;
    max-width: 600px;
    margin: auto;
    padding: 30px;
    z-index: 1; /* Para que el texto quede encima del overlay */
}


.event-content h3 {
    font-size: 29px;
    margin-bottom: 15px;
}

.event-content p {
    text-align: left;
    font-size: 18px;
    margin-bottom: 50px;
    margin-top: 40px; /* Separa más el texto del título */
}

.btn {
    background: white;
    color: black;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

/* Decorador centrado debajo del título */
.event-decorator {
    width: 200px;
    height: 4px;
    background-color: #ffffff88; /* Decorador blanco */
    margin: 20px auto; /* Centra el decorador y agrega espacio arriba y abajo */
}

/* Espacio entre el título y el texto */
.event-content p {
    margin-top: 20px; /* Separa más el texto del título */
}

/* Estilo para el botón con fondo negro y texto blanco */
.black-btn {
    background-color: #ffffff; /* Fondo negro */
    color: #000000; /* Texto blanco */
    border: none; /* Sin borde */
    padding: 20px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}


.event-content .btn:hover {
    background: #000000;
    color: #ffffff;
}

/* Cambio de color del botón al pasar el mouse */
.black-btn:hover {
    background-color: #000000; /* Oscurece el fondo cuando pasa el mouse */
    color: #ffffff;
}

/* Fondo específico para la sección de eventos empresariales */
.event-empresarial {
    position: relative;
    background-image: url('imgs/catering-empresas.png'); /* Cambia por la imagen que desees */
    color: white;
    padding: 100px 20px;
    text-align: center;
}

/* Espacio entre las dos secciones */
.event-section {
    margin-bottom: 40px; /* Espacio entre secciones */
}
/* Estilos generales para la sección */
.steps-container {
    padding: 60px 20px;
    background-color: rgb(227, 221, 215);
    text-align: center;
    margin-bottom: 5rem;
}

/* Estilo para los círculos con números */
.step-number {
  background-color: #000;
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  font-family: 'Neue Einstellung', sans-serif;
  margin-right: 20px;
}

.step-info h3 {
  font-size: 24px;
  font-weight: 200;
  font-family: 'Neue Montreal', sans-serif;
  color: #222;
  margin: 0;
}


/* Encabezado de la sección */
.steps-header {
    margin-bottom: 50px;
}

.steps-title {
    font-family: 'Neue Einstellung', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #333;
}

.steps-line {
    width: 40%;
    height: 3px;
    background-color: #333;
    opacity: 34%;
    margin: 20px auto;
}

/* Contenedor de los pasos y la imagen */
.steps-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
    width: 100%; /* Asegúrate de que ocupe todo el ancho */
}

/* Estilo de cada paso */
.steps-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
    width: 50%;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
}

.step-image {
    width: 10%; /* Tamaño de la imagen del paso */
    height: auto;
}

.steps-text, .steps-image {
    width: 50%; /* Ajusta el ancho al 50% por defecto */
}

.step-info {
    text-align: left;
    width: 70%;
}

.step-info h3 {
    font-size: 1.9rem;
    font-weight: 400;
    margin-top: 2rem;
    color: #333;
}

.step-info p {
    font-size: 1.5rem;
    color: #555;
}

/* Estilos para la imagen principal a la derecha */
.steps-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-main-image {
    width: 100%; /* Se ajusta al 100% del contenedor */
    height: auto; /* Mantiene la proporción */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Estilos para la sección de nuestros clientes */
.clientes-section {
    padding: 60px 20px;
    margin-bottom: 5rem;
    text-align: center;
    background-color: #f4f4f4;
}

.clientes-titulo {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

/* Línea decorativa como elemento separado */
.clientes-linea {
    width: 250px; /* Controla el tamaño de la línea */
    height: 4px; /* Grosor de la línea */
    background-color: #0066cc; /* Color de la línea */
    margin: 10px auto; /* Centra la línea debajo del título */
}

.clientes-section {
    padding: 60px 20px;
    text-align: center;
    background-color: rgb(255, 255, 255);
}

.clientes-titulo {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.clientes-linea {
    width: 250px;
    height: 4px;
    background-color: #333;
    opacity: 34%;
    margin: 10px auto;
}

/* Carrusel */
.clientes-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 4rem;
}

.carousel-items {
    display: flex;
    gap: 20px;
    animation: scrollCarousel 60s linear infinite;
}

.carousel-item img {
    height: 100px; /* Ajusta el tamaño de los logos */
    object-fit: contain;
}

/* Animación del carrusel */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.oficinas-section {
    padding: 60px 20px;
    text-align: center;
    background-color: rgb(227, 221, 215);
}

.oficinas-titulo {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.oficinas-contenido {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.oficina-mapa, .oficina-foto {
    width: 48%;
    height: 400px;
    position: relative;
}

/* Asegura que las imágenes y el mapa sean completamente responsivos */
.oficina-mapa iframe, .oficina-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen/mapa cubra todo el espacio */
}

.final-section {
    padding: 40px 20px;
    background-color: rgb(227, 221, 215); /* Color de fondo similar al del body */
    text-align: center;
}

.final-text {
    font-size: 19px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.footer {
    position: relative;
    width: 100%;
    background: #000000;
    min-height: 250px;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px 5px;
    flex-wrap: wrap;
}

.icon-elem {
    list-style: none;
}

.icon {
    color: white;
    font-size: 28px;
    display: inline-block;
    margin: 0 8px;
    transition: 0.5s;
}

.icon:hover {
    transform: translateY(-10px);
}

.menu {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.menu-elem {
    list-style: none;
}

.menu-icon {
    color: white;
    font-size: 20px;
    display: inline-block;
    text-decoration: none;
    margin: 5px 10px;
    opacity: 0.5;
    transition: 0.3s;
}

.menu-icon:hover {
    opacity: 1;
}

.text {
    color: white;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 16px;
}

/* Estilo del ícono flotante de WhatsApp */
.whatsapp-icon {
    position: fixed;
    bottom: 20px; /* Distancia desde la parte inferior */
    right: 20px; /* Distancia desde la parte derecha */
    background-color: #25D366; /* Color verde de WhatsApp */
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-icon ion-icon {
    font-size: 40px;
    color: white;
}

.whatsapp-icon:hover {
    transform: scale(1.1); /* Efecto de hover para aumentar ligeramente el tamaño */
}


@media (max-width: 768px) {
    .oficinas-contenido {
        flex-direction: column;
        align-items: center;
    }

    .oficina-mapa, .oficina-foto {
        width: 100%;
        height: 300px;
    }
}

/* Para detener el scroll en pantallas más pequeñas */
@media (max-width: 768px) {
    .carousel-items {
        animation: scrollCarousel 25s linear infinite; /* Un poco más lento en pantallas pequeñas */
    }
}



@media (max-width: 800px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: transparent;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .steps-content {
        flex-direction: column;
        align-items: center;
    }

    .steps-text {
        width: 100%;
    }

    .steps-image {
        width: 100%;
        margin-top: 20px;
    }

    .step {
        flex-direction: column;
        align-items: center;
    }

    .step-image {
        margin-bottom: 10px;
    }

    .step p {
        text-align: center;
    }

    .logo {
      display: block;           /* Mostrar logo */         /* Reducir tamaño */
      height: auto;
      margin-top: 19px;
      margin-left: 1px;        /* Pegado a la izquierda */
    }

    .logo img {
    height: 40px; /* Ajusta según sea necesario */
    }
    .menu-toggle {
        z-index: 1001;
        display: block;
        font-size: 50px;
        color: white;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
        position: absolute;
        right: 20px;
        top: 10px;
    }

    /* Rotación del icono al abrir/cerrar */
    .menu-toggle.active {
        transform: rotate(90deg);
    }

    .logo-texto {
        width: 320px;  /* Ajusta el tamaño según sea necesario */
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 30px;
        padding: 90px 0;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 0;
        left: 100%; /* Inicialmente fuera de la pantalla */
        height: 80vh;
        transition: left 0.4s ease-in-out; /* Agrega la animación */
    }

    .nav-links.show {
        left: 0; /* Muestra el menú deslizándolo */
    }

    .nav-links a {
        font-size: 25px;
        color: white;
        transition: color 0.3s ease-in-out;
    }
    .banquete-section.kalayo {
        height: auto; /* Ajuste dinámico */
        padding: 50px 20px;
    }

    .evento-texto {
        font-size: 28px;
        margin-bottom: 50px;
        text-align: center;
    }

    .banquete-button {
        padding: 12px 24px;
        font-size: 18px;
    }

    .banquete-titulo {
        font-size: 32px;
        margin-top: 40px;
    }

    .banquete-linea {
        width: 50%;
    }
    /* Sección de Banquetes */
    .banquete-section {
        background-image: url('imgs/banquetes-exclusivos.png'); /* Asegúrate de que sea la imagen correcta */
        background-repeat: no-repeat;
        background-position: 70% center; /* Mueve la imagen un poco a la derecha */
        height: 400px; /* Reducido para móviles */
    }
    .steps-content {
        flex-direction: column;
        align-items: center;
    }

    .steps-text {
        width: 80%;
        gap: 30px;
    }

    .steps-image {
        width: 100%;
        margin-top: 30px;
    }

    .step-image {
        width: 50px;
        height: 50px;
    }

    .step-info h3 {
        font-size: 18px;
    }

    .step-info p {
        font-size: 16px;
    }
    .steps-text {
        width: 100%;
        text-align: center; /* Centrado de los textos */
    }

    .step {
        flex-direction: column;
        align-items: center;
    }

    .step-image {
        width: 100px; /* Aumentado tamaño de las imágenes */
        height: 100px;
    }

    .step-info h3 {
        text-align: center;
        font-size: 30px; /* Aumentado tamaño de los títulos */
    }

    .step-info p {
        font-size: 24px; /* Aumentado tamaño del texto */
    }

    .steps-image {
        width: 80%;
        margin-top: 30px;
    }

    .steps-main-image {
        width: 135%; /* Mantiene la imagen en un tamaño adecuado */
        height: auto; /* Mantiene la proporción */
    }

}

@media (max-width: 768px) {
    .event-section {
        padding: 80px 15px;
    }
    .event-content {
        max-width: 90%;
        padding: 20px;
    }
    .event-title {
        font-size: 1.8rem;
    }
    .event-content {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .event-section {
        padding: 60px 10px;
    }
    .event-content {
        max-width: 95%;
        padding: 15px;
    }
}

.clientes-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  margin-bottom: 5rem;
}

.clientes-titulo {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.clientes-linea {
  width: 250px;
  height: 4px;
  background-color: #333;
  opacity: 34%;
  margin: 10px auto;
}

.clientes-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 4rem;
}

.carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollInfinite 30s linear infinite;
}

.carousel-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100px;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
