:root {
    --red-color: #dc0000;
    --yellow-color: #ffcc00;
    --font-1: 'Julee', cursive;
    --font-2: 'Roboto';
    --font-3: 'Bellefair', serif;
    --secondary-text: #6c6c6c;
    --text-white: white;
    --text-black: black;
    --bg-secondary: #54595f;
    --bg-black: black;
    --text-1: #D1B575;
    --color-dark: #131313;
    --divider-pattern-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpath d='M0,6c6,0,6,13,12,13S18,6,24,6'/%3E%3C/svg%3E");
}

body {
    background: url('../image/menu-bg-one.jpg'); /* Cambia este código de color por el que prefieras */
    background-size: 100% auto;
    
}

h1 {
    font-size: 100px;
}

h3 {
    font-size: 50px
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

ul {
    list-style: none;
}

button,
a[type="button"] {
    background-color: var(--red-color);
    padding-inline: 2rem;
    padding-block: 1rem;
    border: none;
    color: white;
    text-decoration: none;
}

.bg-red {
    background-color: var(--red-color);
}

.font-roboto {
    font-family: var(--font-2);
}

.bg-yellow {
    background-color: var(--yellow-color);
}

.color-white {
    color: var(--text-white) !important;
}

.color-red {
    color: var(--red-color);
}

.bg-black {
    background-color: #000000 !important;
}

.color-black {
    color: var(--text-black) !important;
}

.new-label {
    color: white;
    font-size: 16px;
    width: 100%;
    padding: 5px 5px;
    font-family: var(--font-3);
}

.r-section {
    padding: 1em 1em 1em 1em;
}

.r-section .r-container {
    max-width: 1140px;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    gap: 20px;
    padding: 1rem;
}

.header {
    display: flex;
    flex-direction: row;
}

.element {
    width: 100%;
    padding-block: 0.5rem;
}

.r-section .element .icons {
    color: var(--red-color);
    font-size: 28px;
    margin-right: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.element.header-info {
    display: flex;
    flex-direction: row;
}

.element.header-info .description span {
    color: var(--secondary-text);
}


.element.header-info .description h3 {
    font-size: 18px;
    font-family: var(--font-1);
    color: var(--text-white);
    margin-bottom: 0;
}

.social {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 1.5rem;
}

.social .social-item i {
    font-size: 25px;
    transition: transform 0.5s;
}

.hover-translate {
    transition: transform 0.5s;
    cursor: pointer;
}

.hover-translate:hover {
    transform: translateY(-7px);
}

.social .social-item:hover i {
    color: var(--red-color);
    transform: translateY(-7px);
}

.img-site-logo {
    max-width: 70%;
}

.navbar-nav {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-2);
    
}

.navbar-nav .nav-link {
    color: var(--text-white);
}

.navbar .dropdown-menu {
    border-radius: 0px;
    background-color: #ececec;
    font-size: 18px;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--bg-black);
    color: var(--text-white);
}

.navbar .nav-btn {
    background-color: var(--bg-black);
    color: var(--text-white);
}

.nav-btn .icons-close {
    display: block;
}

.nav-btn .icons-open {
    display: none;
}

.nav-btn.open .icons-close {
    display: none;
}

.nav-btn.open .icons-open {
    display: block;
}

.image-infinite-bg {
    width: 100%;
    transition: background 0.3s ease;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #000000;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #333333;
    opacity: 0.7;
    mix-blend-mode: multiply;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* Hero específico de Bebestibles: imagen como background del section (igual al patrón del menú) */
#bebestibles-hero {
    background: url('../image/cocteles-hero.jpg') center/cover no-repeat;
}

.image-infinite-bg .image_slideshow_heading {
    font-size: 28px;
    font-family: var(--font-3);
    color: var(--text-1);
}

.image-infinite-bg .image_slideshow_description {
    color: var(--text-white);
}

.discover-section-container {
    display: flex;
    flex-direction: row;
}

.text-1 {
    font-family: var(--font-3);
    color: rgb(255, 255, 255);

}


.text-2 {
    font-family: var(--font-3);
    color: rgb(0, 0, 0);

}
.color-1 {
    color: var(--text-1);
}

.text-title {
    font-family: var(--font-1)
}

.color-secondary {
    color: var(--secondary-text);
}

.union-bg {
    position: absolute;
    bottom: 20px;
    opacity: 0.1;

}

.union-bg img {
    width: 324px;
}

.img-margin-layout-1 {
    margin-top: -120px;
    margin-left: 80px;
    margin-right: -80px;
}

.img-border {
    border: 5px solid white;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
}

.section-3 {
    background: url('../image/dummy-img-1920x900.jpg');
    background-position: center;
    background-size: cover;
}

.section-5 {
    background: url('../image/dummy-img-1920x900.jpg');
    background-position: center;
    background-size: cover;
}

.menu_section {
    flex-direction: row;
}

.img-hover {
    transition: transform 0.3s ease;
}

.img-hover:hover {
    transform: scale(1.1);
}

.menu-image {
    display: flex;
    flex-direction: row;
}

.menu-layout {
    margin-top: -80px;
    margin-bottom: 80px;
}

/* Estilo específico para centrar títulos de secciones de menú */
.menu-section-centered {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    min-height: 150px; /* Altura mínima para mejor presentación */
}

.menu-section-centered .r-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.menu-section-centered .section-header {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

/* Estilo específico para el divisor en secciones centradas */
.menu-section-centered .r-divider {
    justify-content: center;
    margin: 15px auto;
}

.r-divider {
    color: var(--red-color);
    display: flex;
    direction: ltr;
    width: 115px;
    align-items: center;
}

.r-divider .divider-icon {
    margin-inline: 10px;
}

.r-divider::before,
.r-divider::after {
    content: "";
    width: 100%;
    mask-image: var(--divider-pattern-url);
    -webkit-mask-image: var(--divider-pattern-url);
    mask-repeat: repeat-x;
    mask-size: 20px 100%;
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-size: 20px 100%;
    background-color: var(--red-color);
    min-height: 20px;
    display: block;
}

.menu {
    border-top: dashed black 1px;
    padding-block: 0.5em;
}

.rating {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    color: rgb(252 185 0);
}

.testimonial-review {
    font-size: 24px;
}

.testimonials-container {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.testimonials-section {
    padding-top: 10em 0em 2em 0em;
}

.floating-date {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--red-color);
    color: var(--text-white);
    bottom: 0;
    right: 0;
    margin: 0px 10px -10px 0px;
    line-height: 1;
}

.floating-date strong {
    font-size: large;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    transition: transform 0.5s;
}

.blog-container:hover .blog-image img {
    transform: scale(1.1);
}

.footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('../image/frente1-1920x900.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}


.r-section.footer {
    padding: 5em 1em 5em 1em;
}

.icon-box-container {
    display: flex;
    flex-direction: row;
}

.icon-box {
    background-color: var(--red-color);
    font-size: 36px;
    border-radius: 50px 75px 50px 75px;
    color: white;
    width: 2em;
    height: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon-box-bg-light {
    background-color: #f4f4f4;
}

.icon-box-bg-secondary {
    background-color: #d3d3d3;
}

.button-translate-hover {
    transition: all 0.5s;
}

.button-translate-hover:hover {
    transform: translateY(-10px);
    background-color: #131313;
}

.counter-number {
    color: var(--red-color);
    font-size: 50px;
    font-family: var(--font-1);
    font-weight: 600;
}

h3.quote {
    font-size: 36px;
}

.ratio-1-1 {
    aspect-ratio: 1/1;
    width: 100%;
}

.ratio-3-2 {
    aspect-ratio: 3/2;
    width: 100%;
}

.fit-cover {
    object-fit: cover;
}

.icon-food {
    position: absolute;
    top: 5%;
    right: 15%;
    color: white;
    transition: all 0.5s;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: larger;
}

.icon-food:hover {
    transform: scale(1.1);
    color: gray;
}

.text-justify {
    text-align: justify;
}

.img-margin-layout-2 {
    top: 60%;
    margin: 0% 20% 0% -20%;
}

.img-margin-layout-3 {
    top: 317px;
    left: -130px;
    width: 726px;
    object-fit: cover;
    height: 487px;
}

.img-margin-layout-4 {
    margin: -35px -127px -100px 120px;
}

.contact-map-ifr {
    width: 100%;
    height: 1000px;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.form-input{
    padding: 15px 5px 15px 15px;
    background-color: #F6F6F6;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E9E9E9;
}

.form-input:focus{
    box-shadow: none !important;
    border: solid 2px #131313;
}

.submit-btn{
    padding: 15px 30px 15px 30px;
    color: #FBFBFB;
    background-color: var(--red-color);
    transition: all 0.5s;
}

.submit-btn:hover {
    background-color: #131313;
    color: #FBFBFB;
}


.link-social {
    color: var(--red-color);
}

.link-black {
    color: #54595f;
    text-decoration: none;
    font-weight: 700;
}

.link-black:hover {
    color: #131313;
}

@media only screen and (max-width:768px) {

    h1 {
        font-size: 42px;
    }

    h3 {
        font-size: 26px;
    }

    h5 {
        font-size: 18px;
    }

    .discover-section-container {
        flex-direction: column;
    }

    .menu_section {
        flex-direction: column;
    }

    .r-section {
        padding: 3em 1em 3em 2em;
    }

    .r-section .r-container {
        padding: 0;
    }

    .menu-image {
        flex-direction: column;
    }

    .img-margin-layout-1 {
        margin-left: 20px;
        margin-right: -20px;
    }

    .header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .element.header-info {
        flex: 0 1 45%;
        align-items: center;
        flex-direction: row;
        text-align: left;
    }

    .element.header-info .description h3,
    .element.header-info .description span {
        font-size: 0.85rem;
    }

    .r-section .element .icons {
        font-size: 20px;
        margin-right: 0.5rem;
    }

    .social {
        justify-content: center;
    }

    .menu-layout {
        margin: 0;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .icon-box-container {
        flex-direction: column;
        padding-inline: 1rem;
    }

    h3.quote {
        font-size: 24px;
    }

    .img-site-logo {
        max-width: 110px;
    }

    .img-margin-layout-2 {
        top: 75%;
    }

    .img-margin-layout-3 {
        top: 295px;
        left: 30px;
        width: 278px;
        object-fit: cover;
        height: 170px;
    }

    .img-margin-layout-4 {
        margin: 0;
        margin-inline: auto;
    }
}

.r-container-reverse {
    display: flex;
    flex-direction: row-reverse; /* Asegura que la imagen esté a la derecha y el texto a la izquierda */
}

.menu-navigation {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos del menú se ajusten en varias filas si es necesario */
    justify-content: center; /* Centra el menú en la página */
    gap: 1px; /* Espacio entre los elementos del menú */
    padding: 1rem;
}

.menu-navigation .menu-link {
    color: #fbfbfb;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 14px; /* Tamaño de fuente reducido */
    text-align: center; /* Centra el texto en cada enlace */
    display: inline-block; /* Asegura que el texto esté centrado en cada enlace */
    width: auto;
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
}

.menu-navigation .menu-link.active,
.menu-navigation .menu-link:hover {
    color: #dab450;
}

.menu-navigation .menu-link::before {
    content: '•';
    color: var(--red-color);
    margin-right: 5px;
}

.menu-container {
    display: flex;
    align-items: center; /* Centra el precio verticalmente con la descripción */
}

@media only screen and (max-width: 768px) {
    .r-container-reverse {
        flex-direction: column !important; /* Alinea la imagen y el texto en columna */
    }
    .menu-image {
        width: 100%; /* Asegura que el contenedor de la imagen ocupe el ancho completo */
        padding: 0;
    }
    .menu-image img {
        width: 100%; /* La imagen ocupa el ancho completo del contenedor */
        height: auto; /* Mantiene la proporción de la imagen */
        margin-top: 0; /* Elimina el margen superior para centrar la imagen */
    }
}

.section-header {
    text-align: left; /* Alinea el contenido a la izquierda */
    margin-bottom: 0px;
    padding-left: 0px; /* Añade un espacio para ajustar la posición */
}

.header-controls {
    margin-bottom: 15px;
}



.back-menu-btn {
    text-decoration: none;
    color: var(--red-color);
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    cursor: pointer;
    margin-left: 350px;
}

.back-menu-btn:hover {
    text-decoration: underline;
    color: #910404;
}

/* Ajustes responsivos para pantallas pequeñas */
@media (max-width: 768px) {
    .r-divider {
        font-size: 14px;
        gap: 6px;
    }

    .divider-icon {
        font-size: 16px;
    }

    .back-menu-btn {
        margin-left: 190px; /* Elimina el margen fijo */
        font-size: 12px; /* Ajusta el tamaño del texto */
        text-align: left; /* Asegura que se alinee a la izquierda */
        padding-left: 0px; /* Espaciado desde el borde para mejor estética */
    }
}


@media (min-width: 992px) { /* Ajuste solo en escritorio */
    .mt-desktop {
        margin-top: 40px; /* Ajusta según sea necesario */
    }
    .col.d-flex.flex-column.mt-desktop {
        padding-left: 26px; /* Asegura que empiece desde el mismo punto */
        margin-left: 0; /* Evita desplazamiento */
    }
}


@media (max-width: 768px) { /* Para pantallas pequeñas */
    .mt-desktop {
        margin-top: 0 !important;
    }
}

@media (min-width: 769px) { /* Para escritorio */
    .mt-desktop {
        margin-top: 190px !important;
    }
}

@media (min-width: 992px) { /* Solo aplica en escritorio */
    .move-right {
        margin-left: 10px; /* Ajusta el valor según sea necesario */
    }
}

.video-responsive {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;

  }
  
  /* Solo en pantallas mayores a 768px (escritorio y tablets grandes) */
  @media (min-width: 768px) {
    .video-responsive {
      margin-left: 80px;
    }
  }
  