


















/* --- ESTILOS DE PRECIO PERSONALIZADOS --- */

/* 1. Estilo para "+ IVA" (price-suffix) */
.price-suffix {
    /* Ajusta el tamaño de la fuente (puedes probar con 1rem o 0.9rem para que sea más chiquito) */
    font-size: 1rem; 
    
    /* 🚨 CLAVE: ELIMINAMOS 'vertical-align: top;' 
       (El valor por defecto 'baseline' o 'bottom' alineará el texto abajo) */
    /* vertical-align: bottom; o simplemente lo quitamos */
    
    /* Color un poco más suave que el precio principal */
    color: #212529; /* Color de texto oscuro estándar */
    margin-left: 5px; /* Pequeño espacio a la derecha del precio */
    
    /* Opcional: Ajuste fino para la posición vertical si fuera necesario */
    position: relative;
    top: -1px; /* Esto bajará un poco el texto si el valor por defecto sigue pareciendo elevado */
}

/* El resto de tu código CSS para .price-period debe quedar igual */
/* 2. Estilo para "/ Por Noche" (price-period) */
.price-period {
    /* Reduce el tamaño para que sea discreto */
    font-size: 0.8rem; 
    /* El color primario es muy fuerte, lo ponemos más suave o gris */
    color: #6c757d; 
    /* Aseguramos que se muestre debajo (aunque <br> ya ayuda) */
    display: block; 
    /* Le quitamos el padding superior que deja el <br> para que esté más cerca del precio */
    line-height: 1.2; 
    margin-top: 5px; /* Espacio mínimo debajo del precio */
}

/* Ajuste general para la etiqueta del precio principal, si fuera necesario */
.site-block-half .text .display-4 {
    line-height: 1; 
    display: inline-block; 
}
























/* --- DISEÑO PERSONALIZADO: TARJETA BLANCA FLOTANTE CON DIFUMINADO NEGRO --- */

.booking-custom-style {
    /* 1. Contenedor: Fondo Blanco Grisáceo (Elegante) */
    background: #fdfdfd !important; /* Mantenemos el blanco sutil */
    
    /* 🚨 CLAVE: NUEVA SOMBRA DIFUMINADA EN NEGRO 🚨 */
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1) !important, /* Sombra principal (efecto flotante) */
        0 0 100px rgba(0, 0, 0, 0.35) !important; /* Sombra grande y difuminada para el "aura" negra */
        
    border-radius: 15px; 
    padding: 40px 30px; 
    border: 1px solid #eeeeee; 
}

/* 2. Etiquetas: Color oscuro para máxima legibilidad */
.booking-custom-style label {
    color: #212529 !important; /* Texto negro/gris oscuro */
    font-weight: 600 !important;
    margin-bottom: 8px;
    display: block;
}

/* 3. Campos de entrada y selección: Fondo BLANCO PURO con Borde Sutil */
.booking-custom-style .form-control {
    background: #ffffff !important; /* Fondo blanco puro */
    color: #212529 !important; /* El texto que se escribe es negro */
    border: 1px solid #ced4da !important; /* Borde gris estándar */
    border-radius: 8px;
    height: 52px; 
    transition: all 0.3s ease;
}

/* Efecto Focus: Borde y brillo dorado */
.booking-custom-style .form-control:focus {
    background: #ffffff !important;
    border-color: #f7b733 !important; /* Borde dorado para el foco */
    box-shadow: 0 0 0 0.2rem rgba(247, 183, 51, 0.25) !important; 
}

/* 4. Estilo de los iconos (Ajustados a color oscuro) */
.booking-custom-style .field-icon-wrap .icon {
    color: #495057 !important; /* Iconos gris oscuro */
    opacity: 1;
}

/* 5. Botón: Mantenemos el dorado de acento y la alineación */
.booking-custom-style .btn-primary {
    background-color: #f7b733 !important; 
    border-color: #f7b733 !important;
    color: #ffffff !important; 
    font-weight: 700;
    
    /* Mantenemos las correcciones de alineación y minúsculas */
    text-transform: none !important; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    height: 52px; 
    border-radius: 8px;
    padding: 0 1rem; 
}




/* --- SOLUCIÓN DEFINITIVA: PUNTOS DE SCROLL EN EL HERO --- */

/* 1. Posicionamiento forzado del contenedor de los puntos */
.scroll-dots {
    /* Usamos !important para anular cualquier otra regla que esté causando el problema */
    position: absolute !important; 
    
    bottom: 50px !important;    /* Distancia desde el borde inferior del hero */
    left: 50% !important;       /* Inicia al 50% */
    transform: translateX(-50%) !important; /* Mueve el centro del elemento al 50% */
    
    z-index: 100;
    text-align: center;
    display: block;
}

/* 2. Estilo y Animación de los Puntos Individuales */
.scroll-dots span {
    display: block;
    width: 6px;
    height: 6px;
    margin: 5px auto;
    background: #fff; 
    border-radius: 50%;
    opacity: 0.8;
    
    /* Esta línea es necesaria para que la animación 'bounce' funcione */
    animation: bounce 1.2s infinite ease-in-out;
}

/* 3. Retrasos para el efecto de cascada */
/* Estas reglas ya están en tu CSS, pero las incluimos por si acaso */
.scroll-dots span:nth-child(2) {
    animation-delay: -0.4s;
}
.scroll-dots span:nth-child(3) {
    animation-delay: -0.8s;
}

/* 4. Verificación del contenedor principal (está en tu CSS, solo lo mencionamos) */
.site-hero {
    position: relative; 
}



/* --- ESTILO PARA LA BANDERA ARGENTINA CON CÍRCULO AMARILLO EN EL HERO --- */

/* Colores de referencia: Celeste: #74ACDE, Blanco: #FFFFFF, Amarillo: #f7b233 */

/* 1. Contenedor de la banderita (el rectángulo blanco central) */
.site-hero .flag-icon-arg-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Dimensiones de la bandera (3:2 proporción) */
    width: 30px; 
    height: 20px; 
    
    position: relative;
    margin-left: 10px;
    
    background-color: #ffffff; /* Fondo blanco (franja central) */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Borde sutil blanco */
    
    overflow: hidden;
    border-radius: 2px;
    vertical-align: middle;
}

/* 2. Franja superior celeste */
.site-hero .flag-icon-arg-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 33.333%; 
    background-color: #74ACDE; /* Celeste Argentino */
}

/* 3. Franja inferior celeste */
.site-hero .flag-icon-arg-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33.333%; 
    background-color: #74ACDE; /* Celeste Argentino */
}

/* 4. Estilo del Círculo Amarillo (lo colocamos en el centro y aseguramos que esté visible) */
.site-hero .yellow-dot.flag-center-dot {
    /* Mantenemos el estilo de círculo que te gustó: */
    width: 10px; 
    height: 10px;
    background-color: #f7b233; /* Color amarillo de tu tema */
    border-radius: 50%; 
    
    /* Posicionamiento en el centro de la bandera: */
    position: relative;
    z-index: 1; /* Asegura que el círculo esté sobre las franjas */
    margin: 0; /* Removemos el margin-left que tenía por defecto */
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5); /* Sombra para que destaque en el blanco */
}




/* --- ESTILO PARA EL LOGO IMAGEN EN EL HEADER (AJUSTE DE TAMAÑO) --- */
.site-header .hotel-logo-img {
    max-height: 75px; /* Altura visible fijada */
    width: auto;
    transition: opacity 0.3s, transform 0.3s; /* Para un efecto más suave */
    position: absolute; /* Superpone ambos logos en el mismo lugar */
    top: 50%;
    transform: translateY(-50%);
    left: 15px; /* Ajuste para la izquierda de la cabecera */
}

/* ---------------------------------------------------- */
/* --- MECANISMO DE CAMBIO DE LOGO: Transparente vs. Blanco --- */
/* ---------------------------------------------------- */

/* --- LÓGICA DE VISIBILIDAD DE LOGOS --- */

/* Por defecto (al inicio de la página):
   La cabecera NO tiene la clase .scrolled */
.site-header .logo-dark {
    display: none; /* Oculta el logo oscuro */
}

.site-header .logo-light {
    display: block; /* Muestra el logo claro */
}


/* Cuando la cabecera TIENE la clase .scrolled (al deslizar hacia abajo): */
.site-header.scrolled .logo-dark {
    display: block; /* Muestra el logo oscuro */
}

.site-header.scrolled .logo-light {
    display: none; /* Oculta el logo claro */
}

/* Opcional: Estilo de la cabecera con scroll */
.site-header.scrolled {
    background: #ffffff !important; /* Fondo blanco para que el logo oscuro resalte */
    box-shadow: 0 0 10px rgba(0,0,0,.1); /* Sombra suave para que "flote" */
}



/* --- ESTILO PARA LA SECCIÓN DE RESEÑAS (ESTRELLAS) --- */

/* Asegura que las estrellas tomen el color principal del tema */
.testimonial-entry .star-rating .fa-star,
.testimonial-entry .star-rating .fa-star-half-o {
    color: #f7b233; /* Color de tu tema */
    font-size: 1.2rem;
}

/* Da un pequeño sombreado y transición a las tarjetas de reseña */
.testimonial-card {
    transition: box-shadow 0.3s ease-in-out;
}

.testimonial-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}









/* --- ESTILO DE BORDE Y SOMBRA PARA EL LOGO (SUTIL Y CUADRADO) --- */

.img-absolute img {
    /* 1. Borde: 2px sólido, color de tu tema (f7b233) */
    border: 2px solid #f7b233; 
    
    /* 2. Sombra sutil para "levantar" el logo */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    
    /* 3. Aseguramos que sea cuadrado (elimina cualquier redondeo residual) */
    border-radius: 0 !important; 
    
    /* 4. Mantenemos el logo al frente */
    position: relative; 
    z-index: 2;
}




/* --- REDUCCIÓN DEL TEXTO DESCRIPTIVO EN EL WELCOME --- */
.p-small {
    font-size: 14px !important; /* Hacemos la fuente notablemente más pequeña */
    line-height: 1.7; /* Mantenemos una buena separación para la legibilidad */
}










/* --- AJUSTE MINIMALISTA PARA ETIQUETA 'Bienvenido a' --- */
.text-muted.mb-1 {
    font-size: 14px; /* Un tamaño de texto pequeño */
    font-weight: 500; /* Ligeramente más grueso que el texto normal */
    /* El color ya lo da text-muted, pero si quieres usar el color del tema:
    color: #f7b233 !important; 
    */
}










/* --- WWWWHHHHAAAATTTTSSSAAAAPPP --- */

/* Contenedor fijo en la esquina inferior derecha */
.float-action-button {
    position: fixed;
    bottom: 25px; 
    right: 25px; 
    z-index: 1000; /* Asegura que esté por encima de todo */
}

/* Estilo del botón tipo "píldora" */
.floating-btn {
    display: flex;
    align-items: center; /* Centra verticalmente el ícono y el texto */
    padding: 12px 20px;
    border-radius: 50px; /* Borde muy redondeado (píldora) */
    background-color: #f7b233; /* ⬅️ Color principal de tu tema */
    color: #ffffff; /* Texto blanco */
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra suave */
    transition: all 0.3s ease;
}

/* Estilo del ícono de WhatsApp */
.floating-btn i {
    font-size: 22px;
    margin-right: 10px;
}

/* Animación: Hover (elegancia al pasar el ratón) */
.floating-btn:hover {
    background-color: #e6a22f; /* Un tono ligeramente más oscuro en hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    /* Levanta el botón sutilmente para darle sensación 3D */
    transform: translateY(-2px); 
}
















/* --- BOTÓN FLOTANTE: MÁXIMA ELEGANCIA Y PROFESIONALIDAD --- */

/* 1. Contenedor principal (fijo) */
.float-multi-action {
    position: fixed;
    bottom: 30px; 
    right: 30px; 
    z-index: 1000;
}

/* --- BOTÓN FLOTANTE: MÁXIMA ELEGANCIA Y PROFESIONALIDAD --- */

/* 2. Botón TOGGLE (Círculo principal) */
.float-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e6a22f; 
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    cursor: pointer;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
    
    /* ⬅️ CORRECCIÓN: ELIMINA EL MARCO NEGRO POR DEFECTO */
    outline: none; 
    
    /* Esto es opcional, pero ayuda a eliminar cualquier otro "focus ring" */
    -webkit-tap-highlight-color: transparent; 
}

/* ⬅️ CORRECCIÓN: EVITA QUE EL MARCO APAREZCA EN EL ESTADO ACTIVO/FOCUS */
.float-toggle-btn:focus,
.float-toggle-btn:active {
    outline: none !important;
    /* Aseguramos que el color y la sombra no cambien inesperadamente */
    background-color: #e6a22f;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* El resto del código CSS se mantiene igual... */

/* Efecto de activación: Brillo y Rotación */
.float-multi-action.expanded .float-toggle-btn {
    background-color: #f7b233; /* El color claro del tema al activarse */
    transform: rotate(45deg); 
    /* Efecto de 'resplandor' moderno */
    box-shadow: 0 0 0 10px rgba(247, 178, 51, 0.2), 0 5px 15px rgba(0, 0, 0, 0.3); 
}

/* 3. Contenedor de las opciones (inicialmente oculto) */
.float-options-wrap {
    position: absolute;
    bottom: 75px; 
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0; 
    visibility: hidden;
    /* Transición de deslizamiento */
    transition: opacity 0.3s ease-out, visibility 0.3s, transform 0.3s ease-out;
    transform: translateY(10px); /* Comienza 10px abajo */
}

/* 4. Mostrar opciones al expandirse con deslizamiento */
.float-multi-action.expanded .float-options-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Se desliza hasta su posición */
}

/* 5. Estilo base de los botones individuales (Moderno, sin fondo) */
.floating-option {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 15px; /* Más espacio entre opciones */
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    
    /* Ocultar inicialmente para el efecto de cascada */
    opacity: 0;
    transform: translateX(10px);
}

/* Animación de entrada de las opciones (Efecto "cascada" al deslizar) */
.float-multi-action.expanded .floating-option {
    opacity: 1;
    transform: translateX(0);
}
.float-multi-action.expanded .floating-option:nth-child(1) {
    transition-delay: 0.1s; 
}
.float-multi-action.expanded .floating-option:nth-child(2) {
    transition-delay: 0.15s; 
}

/* 6. Iconos: Estilo Limpio (Círculos sin colores de plataforma) */
.floating-option i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Ícono Blanco sobre un fondo Gris Suave o Blanco Limpio */
    background-color: #ffffff; 
    color: #495057; /* Icono gris oscuro para contraste elegante */
    border: 1px solid #dee2e6; /* Borde muy sutil */
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Sombra mínima */
    margin-left: 15px; 
    transition: all 0.3s ease;
}

/* 7. Texto lateral: La Etiqueta Principal */
.floating-option .option-text {
    background-color: #343a40; /* Fondo oscuro (Negro/Gris) para que resalte sobre cualquier imagen */
    color: #ffffff; /* Texto blanco */
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* 8. Efecto HOVER: EL TOQUE PROFESIONAL */
.floating-option:hover .option-text {
    /* Al hacer hover, el texto se desliza sutilmente a la izquierda y el color del fondo cambia */
    background-color: #f7b233; /* El color principal de tu tema, destacando la opción */
    transform: translateX(-5px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.floating-option:hover i {
    /* El ícono se mantiene en blanco/gris, pero gana una sombra más prominente */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}




/* --- ANIMACIÓN DE TRES PUNTOS REBOTANDO (AJUSTADA) --- */

/* 1. Posicionamiento del contenedor de los puntos */
.scroll-dots {
    /* CLAVE: Fija la posición relativa al elemento padre (.site-hero) */
    position: absolute; 
    
    bottom: 50px;       /* Coloca los puntos a 50px del borde inferior */
    left: 50%;          /* Mueve el inicio al centro horizontal */
    transform: translateX(-50%); /* Centra el elemento exactamente */
    
    z-index: 100;       /* Asegura que estén visibles sobre la imagen */
    text-align: center;
    display: block;
}

/* 2. Estilo de los puntos individuales (se asume que deben ser blancos) */
.scroll-dots span {
    display: block;
    width: 6px;
    height: 6px;
    margin: 5px auto;
    background: #fff; /* Puntos blancos para el fondo oscuro del hero */
    border-radius: 50%;
    opacity: 0.8;
}

/* 3. Retrasos y Animación (sin cambios) */
.scroll-dots span:nth-child(2) {
    animation-delay: -0.4s;
}
.scroll-dots span:nth-child(3) {
    animation-delay: -0.8s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0); 
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}














/* --- ANIMACIÓN DE FLECHA FLOTANTE Y DESTELLANTE --- */

/* 1. Contenedor de la animación (posicionamiento) */
.scroll-arrow-float {
    position: absolute;
    bottom: 110px; /* Mantén este valor o ajústalo a la altura deseada */
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 30px;
    height: 30px;
    z-index: 999;
}

/* 2. Estilo de la flecha (el elemento <span>) */
.scroll-arrow-float span {
    position: absolute;
    display: block;
    width: 15px; /* Ancho de la flecha */
    height: 15px; /* Alto de la flecha */
    border: solid #ffffff; /* ⬅️ Color blanco */
    border-width: 0 3px 3px 0; /* Solo bordes inferior y derecho */
    transform: rotate(45deg); /* Gira para formar la flecha */
    left: 50%;
    top: 50%;
    margin: -10px 0 0 -8px;
    
    animation: bounce-float 2s infinite ease-in-out; /* Aplica la animación */
}

/* 3. La Animación (keyframes) */
@keyframes bounce-float {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg); /* Posición más alta (inicio/fin) */
        opacity: 0.7;
    }
    40% {
        transform: translateY(-5px) rotate(45deg); /* Rebote hacia arriba (más sutil) */
        opacity: 1;
    }
    60% {
        transform: translateY(5px) rotate(45deg); /* Desplazamiento hacia abajo */
        opacity: 1;
    }
}
















/* --- ANIMACIÓN ORIGINAL: ONDA DESCENDENTE EN CASCADA --- */

/* 1. Contenedor de la animación (posicionamiento) */
.scroll-wave {
    position: absolute;
    bottom: 110px; /* Ajusta este valor si necesitas subir o bajar */
    left: 50%;
    transform: translateX(-50%);
    width: 30px; 
    height: 40px; /* Suficiente espacio para que se vea la onda completa */
    display: block;
    z-index: 999;
    overflow: hidden; /* Oculta los elementos que están fuera de este contenedor */
}

/* 2. Estilo de cada segmento de la onda (<span>) */
.scroll-wave span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    display: block;
    width: 20px;
    height: 20px;
    
    /* El borde crea la forma de V (la onda) */
    border: 2px solid #ffffff; /* ⬅️ Color Blanco */
    border-width: 0 0 2px 2px; /* Solo bordes izquierdo e inferior */
    
    opacity: 0;
    animation: wave-flow 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Curva de animación suave */
}

/* 3. Retrasos para el efecto de cascada */
/* Esto hace que cada onda aparezca con un retraso, creando el efecto "fluido" */
.scroll-wave span:nth-child(2) {
    animation-delay: -1.7s; 
}
.scroll-wave span:nth-child(3) {
    animation-delay: -1.4s;
}

/* 4. La Animación (keyframes) */
@keyframes wave-flow {
    0% {
        opacity: 0;
        top: -15px; /* Comienza fuera de la vista, arriba */
    }
    30% {
        opacity: 1; /* Máxima visibilidad */
    }
    100% {
        opacity: 0;
        top: 30px; /* Termina fuera de la vista, abajo */
    }
}










/* --- ANIMACIÓN ORIGINAL: GOTA FLOTANTE Y DESTELLANTE --- */

/* 1. Contenedor de la animación (posicionamiento) */
.scroll-droplet {
    position: absolute;
    bottom: 110px; /* Ajusta este valor si necesitas subir o bajar */
    left: 50%;
    transform: translateX(-50%);
    width: 20px; 
    height: 40px; 
    display: block;
    z-index: 999;
    overflow: hidden;
}

/* 2. Estilo de la gota (<span>) - Usaremos box-shadow para crear el efecto de gota */
.scroll-droplet span {
    position: absolute;
    display: block;
    width: 8px; 
    height: 8px; 
    background-color: #ffffff; /* ⬅️ Color Blanco */
    border-radius: 50%; /* Lo hacemos un círculo inicialmente */
    
    /* Efecto de destello o sombra suave */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
    
    top: -10px; /* Comienza fuera del área visible (arriba) */
    left: 50%;
    transform: translateX(-50%);

    animation: drop-flow 3s infinite ease-in-out; /* Animación lenta y fluida */
}

/* 3. La Animación (keyframes) */
@keyframes drop-flow {
    0% {
        opacity: 0;
        top: -10px; /* Comienza arriba, invisible */
    }
    10% {
        opacity: 1;
        top: 0;
    }
    80% {
        opacity: 1;
        top: 30px; /* Desciende lentamente */
    }
    100% {
        opacity: 0;
        top: 40px; /* Termina abajo, invisible, y vuelve a empezar */
    }
}


























body {
  background: #fff;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
  position: relative; }

::-moz-selection {
  color: #fff;
  background: #ffba5a; }

::selection {
  color: #fff;
  background: #ffba5a; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

h1, h2, h3, h4, h5 {
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.font-family-serif {
  font-family: "Playfair Display", times, serif; }

.font-family-sans-serif {
  font-family: "Roboto", arial, sans-serif; }

.bg-light {
  background: #f2f4fb !important; }

.container-fluid {
  max-width: 1600px; }

.btn {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px; }
  .btn.btn-outline-white {
    border: 2px solid #fff; }
    .btn.btn-outline-white:hover {
      border: 2px solid transparent;
      background: #000;
      color: #fff; }
  .btn.btn-outline-white-primary {
    border: 2px solid #fff; }
    .btn.btn-outline-white-primary:hover {
      border: 2px solid transparent;
      background: #ffba5a;
      color: #fff; }
  .btn.uppercase {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .2em; }

.btn, .form-control {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }
  .btn:focus, .btn:active, .form-control:focus, .form-control:active {
    outline: none; }

.form-control {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: 50px;
  border-width: 2px; }
  .form-control:active, .form-control:focus {
    border-color: #ffba5a; }

textarea.form-control {
  height: inherit; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 60px 0;
  z-index: 2;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; }
  .site-header.scrolled {
    padding: 20px 0;
    background: #fff;
    -webkit-box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1); }
    .site-header.scrolled .site-menu-toggle {
      top: 10px;
      position: relative; }
      .site-header.scrolled .site-menu-toggle span {
        background: #000; }
    .site-header.scrolled .site-logo {
      position: relative;
      z-index: 100; }
      .site-header.scrolled .site-logo a {
        color: #000; }

.menu-open {
  position: relative; }
  .menu-open .site-header {
    position: fixed; }
  .menu-open .site-logo {
    position: relative;
    z-index: 100; }
    .menu-open .site-logo a {
      color: #000; }
  .menu-open .site-navbar {
    border: 10px solid #f8f9fa; }

.site-logo {
  padding-left: 40px; }
  .site-logo a {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    font-family: "Playfair Display", times, serif; }
    @media (max-width: 991.98px) {
      .site-logo a {
        font-size: 27px; } }

.site-navbar {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  border: 20px solid transparent;
  background: #fff;
  min-height: 300px;
  overflow-y: scroll; }
  .site-navbar nav {
    text-align: left; }
    .site-navbar nav .menu {
      font-family: "Playfair Display", times, serif; }
      .site-navbar nav .menu li a {
        color: #000;
        font-size: 40px;
        padding: 5px 10px;
        position: relative; }
        .site-navbar nav .menu li a:hover:before {
          width: 100%; }
      .site-navbar nav .menu li.active a {
        color: #ffba5a; }
        .site-navbar nav .menu li.active a:before {
          width: 100%; }
  .site-navbar .extra-info a {
    color: #000; }
  .site-navbar .extra-info ul li a {
    color: #000; }
  .site-navbar .extra-info h3 {
    font-family: "Roboto", arial, sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .2em;
    color: #adb5bd;
    margin-bottom: 30px; }
  .site-navbar .extra-info p {
    color: #212529; }

.full-height {
  height: 100vh;
  min-height: 700px; }

.site-hero {
  background-size: cover;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  position: relative; }
  .site-hero .heading {
    font-family: "Playfair Display", times, serif;
    font-weight: bold; }
  .site-hero .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff; }
  .site-hero.overlay:before {
    background: rgba(0, 0, 0, 0.45);
    content: "";
    position: absolute;
    height: 100vh;
    min-height: 700px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
  .site-hero.inner-page {
    height: 50vh;
    min-height: 700px; }
    .site-hero.inner-page.overlay:before {
      height: 50vh;
      min-height: 700px; }

.site-hero-inner {
  height: 100vh;
  min-height: 700px; }
  .site-hero-inner .heading {
    font-size: 75px;
    font-family: "Playfair Display", times, serif;
    color: #fff;
    line-height: 1;
    font-weight: bold; }
    @media (max-width: 991.98px) {
      .site-hero-inner .heading {
        font-size: 40px; } }
  .site-hero-inner .sub-heading {
    font-size: 30px;
    font-weight: 200;
    color: #fff;
    line-height: 1.5; }
    @media (max-width: 991.98px) {
      .site-hero-inner .sub-heading {
        font-size: 18px; } }

.inner-page .site-hero-inner {
  height: 50vh;
  min-height: 700px; }

.page-inside .site-hero-inner, .page-inside {
  height: 70vh;
  min-height: 500px; }

.page-inside.overlay:before {
  height: 70vh;
  min-height: 500px; }

.menu-open .site-menu-toggle span {
  background: #000; }

.site-menu-toggle {
  top: 0;
  float: right;
  width: 40px;
  height: 45px;
  position: relative;
  margin: 0px auto;
  z-index: 200;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  margin-right: 40px; }
  .site-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }
  .site-menu-toggle span:nth-child(1) {
    top: 0px; }
  .site-menu-toggle span:nth-child(2) {
    top: 10px; }
  .site-menu-toggle span:nth-child(3) {
    top: 20px; }
  .site-menu-toggle.open span:nth-child(1) {
    top: 13px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg); }
  .site-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px; }
  .site-menu-toggle.open span:nth-child(3) {
    top: 13px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg); }

.section {
  padding: 7em 0; }
  @media (max-width: 991.98px) {
    .section {
      padding: 3em 0; } }

@media (max-width: 991.98px) {
  .lead {
    font-size: 16px; } }

.visit-section .heading {
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Roboto", arial, sans-serif;
  color: #b3b3b3;
  letter-spacing: .2em;
  margin-bottom: 30px; }

.visit-section .visit a {
  color: #000; }
  .visit-section .visit a:hover {
    color: #ffba5a; }

.visit-section .visit img {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 15px; }

.visit-section .visit h3 {
  font-size: 20px;
  margin-bottom: 0; }

.visit-section .reviews-star span {
  font-size: 18px;
  color: #ffba5a; }

.visit-section .reviews-count {
  color: #adb5bd;
  font-style: italic; }

.heading-serif, .heading, .testimonial-section .heading, .slider-section .heading, .blog-post-entry .heading {
  font-size: 60px;
  font-family: "Playfair Display", times, serif;
  font-weight: 700; }
  @media (max-width: 991.98px) {
    .heading-serif, .heading, .testimonial-section .heading, .slider-section .heading, .blog-post-entry .heading {
      font-size: 40px; } }

.bg-pattern {
  background: #e9ecef url("../img/round.png"); }

.slider-section {
  position: relative; }

.blog-post-entry {
  position: relative; }

.half .image, .half .text {
  width: 50%; }
  @media (max-width: 991.98px) {
    .half .image, .half .text {
      width: 100%; } }

.half .image {
  background-size: cover;
  background-position: center center; }
  @media (max-width: 991.98px) {
    .half .image {
      height: 300px; } }

.half .text {
  padding: 100px 7%; }
  @media (max-width: 991.98px) {
    .half .text {
      padding-top: 50px;
      padding-bottom: 50px; } }
  .half .text h2 {
    font-size: 70px; }
    @media (max-width: 991.98px) {
      .half .text h2 {
        font-size: 40px; } }

.testimonial blockquote {
  padding: 0; }

.testimonial .author-image img {
  width: 70px; }

.post .media-custom {
  background: #fff;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1); }
  .post .media-custom:hover, .post .media-custom:focus {
    -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1); }
  .post .media-custom a {
    color: #000; }
    .post .media-custom a:hover {
      color: #ffba5a; }
  .post .media-custom .media-body {
    padding: 10px 30px; }
  .post .media-custom h2 {
    font-size: 26px; }

.media-custom .meta-post {
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 14px; }

.owl-carousel .owl-item {
  opacity: .4; }
  .owl-carousel .owl-item.active {
    opacity: 1; }

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px; }
    .owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-prev:focus, .owl-carousel .owl-nav .owl-prev:active,
    .owl-carousel .owl-nav .owl-next:hover,
    .owl-carousel .owl-nav .owl-next:focus,
    .owl-carousel .owl-nav .owl-next:active {
      outline: none; }
    .owl-carousel .owl-nav .owl-prev span:before,
    .owl-carousel .owl-nav .owl-next span:before {
      font-size: 40px; }
  .owl-carousel .owl-nav .owl-prev {
    left: 30px !important; }
  .owl-carousel .owl-nav .owl-next {
    right: 30px !important; }

.owl-carousel .owl-dots {
  text-align: center; }
  .owl-carousel .owl-dots .owl-dot {
    border-width: 2px !important;
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%; }

.owl-carousel.home-slider {
  z-index: 1;
  position: relative; }
  .owl-carousel.home-slider .owl-nav {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .owl-carousel.home-slider .owl-nav button {
      color: #fff; }
  .owl-carousel.home-slider:focus .owl-nav, .owl-carousel.home-slider:hover .owl-nav {
    opacity: 1;
    visibility: visible; }
  .owl-carousel.home-slider .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(100vh - 117px);
    min-height: 700px;
    position: relative; }
    .owl-carousel.home-slider .slider-item .slider-text {
      color: #fff;
      height: calc(100vh - 117px);
      min-height: 700px; }
      .owl-carousel.home-slider .slider-item .slider-text h1 {
        font-size: 40px;
        color: #fff;
        line-height: 1.2;
        font-weight: 800 !important;
        text-transform: uppercase; }
        @media (max-width: 991.98px) {
          .owl-carousel.home-slider .slider-item .slider-text h1 {
            font-size: 40px; } }
      .owl-carousel.home-slider .slider-item .slider-text p {
        font-size: 20px;
        line-height: 1.5;
        font-weight: 300;
        color: white; }
    .owl-carousel.home-slider .slider-item.dark .child-name {
      color: #000; }
    .owl-carousel.home-slider .slider-item.dark h1 {
      color: #000; }
    .owl-carousel.home-slider .slider-item.dark p {
      color: #000; }
  .owl-carousel.home-slider .owl-dots {
    position: absolute;
    bottom: 100px;
    width: 100%; }
    .owl-carousel.home-slider .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px;
      border-radius: 50%;
      border: 2px solid transparent;
      outline: none !important;
      position: relative;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      background: #fff; }
      .owl-carousel.home-slider .owl-dots .owl-dot.active {
        border: 2px solid white;
        background: none; }

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px; }

.owl-carousel.major-caousel .slider-item {
  height: inherit;
  min-height: inherit; }
  .owl-carousel.major-caousel .slider-item img {
    margin-bottom: 0; }

.owl-carousel.major-caousel .owl-nav {
  opacity: 1;
  visibility: visible; }
  .owl-carousel.major-caousel .owl-nav .owl-prev, .owl-carousel.major-caousel .owl-nav .owl-next {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #495057; }
    .owl-carousel.major-caousel .owl-nav .owl-prev:hover, .owl-carousel.major-caousel .owl-nav .owl-prev:focus, .owl-carousel.major-caousel .owl-nav .owl-next:hover, .owl-carousel.major-caousel .owl-nav .owl-next:focus {
      color: #6c757d;
      outline: none; }
    .owl-carousel.major-caousel .owl-nav .owl-prev.disabled, .owl-carousel.major-caousel .owl-nav .owl-next.disabled {
      color: #dee2e6; }
  .owl-carousel.major-caousel .owl-nav .owl-prev {
    left: -60px !important; }
  .owl-carousel.major-caousel .owl-nav .owl-next {
    right: -60px !important; }

.owl-carousel.major-caousel .owl-dots {
  bottom: 50px !important; }
  @media (max-width: 991.98px) {
    .owl-carousel.major-caousel .owl-dots {
      bottom: 10px !important; } }

.owl-carousel.js-carousel-2 .slider-item {
  padding: 0 20px;
  text-align: center; }

.owl-carousel.js-carousel-2 .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 299; }
  .owl-carousel.js-carousel-2 .owl-nav .owl-prev,
  .owl-carousel.js-carousel-2 .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px; }
    .owl-carousel.js-carousel-2 .owl-nav .owl-prev:hover, .owl-carousel.js-carousel-2 .owl-nav .owl-prev:focus, .owl-carousel.js-carousel-2 .owl-nav .owl-prev:active,
    .owl-carousel.js-carousel-2 .owl-nav .owl-next:hover,
    .owl-carousel.js-carousel-2 .owl-nav .owl-next:focus,
    .owl-carousel.js-carousel-2 .owl-nav .owl-next:active {
      outline: none; }
    .owl-carousel.js-carousel-2 .owl-nav .owl-prev span:before,
    .owl-carousel.js-carousel-2 .owl-nav .owl-next span:before {
      font-size: 40px; }
  .owl-carousel.js-carousel-2 .owl-nav .owl-prev {
    left: -30px !important; }
  .owl-carousel.js-carousel-2 .owl-nav .owl-next {
    right: -30px !important; }

.owl-carousel.js-carousel-2 .owl-dots .owl-dot {
  display: inline-block;
  border: none; }
  .owl-carousel.js-carousel-2 .owl-dots .owl-dot > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e9ecef;
    display: inline-block; }
  .owl-carousel.js-carousel-2 .owl-dots .owl-dot.active > span {
    background: #ffba5a; }
  .owl-carousel.js-carousel-2 .owl-dots .owl-dot:active, .owl-carousel.js-carousel-2 .owl-dots .owl-dot:focus, .owl-carousel.js-carousel-2 .owl-dots .owl-dot:hover {
    outline: none; }

.owl-custom-nav {
  float: right;
  position: relative;
  z-index: 10; }
  .owl-custom-nav .owl-custom-prev,
  .owl-custom-nav .owl-custom-next {
    padding: 10px;
    font-size: 30px;
    background: #ccc;
    line-height: 0;
    width: 60px;
    text-align: center;
    display: inline-block; }

.footer-section {
  background: #1a1a1a;
  color: #fff; }
  .footer-section a {
    color: rgba(255, 255, 255, 0.7); }
    .footer-section a:hover {
      color: #fff; }
  .footer-section p {
    color: rgba(255, 255, 255, 0.5); }
  .footer-section .bordertop {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px; }
  .footer-section .contact-info span.d-block {
    font-style: italic;
    color: #fff; }
  .footer-section .social a {
    font-size: 18px;
    padding: 10px; }
  .footer-section .link li {
    margin-bottom: 10px; }

.footer-newsletter .form-group {
  position: relative; }

.footer-newsletter .form-control {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff; }
  .footer-newsletter .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.2);
    font-style: italic; }
  .footer-newsletter .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.2);
    font-style: italic; }
  .footer-newsletter .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.2);
    font-style: italic; }
  .footer-newsletter .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.2);
    font-style: italic; }
  .footer-newsletter .form-control:active, .footer-newsletter .form-control:focus {
    border-bottom: 1px solid white; }

.footer-newsletter button[type="submit"] {
  background: none;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0; }

.side-box, .sidebar-search {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px; }
  .side-box .heading, .sidebar-search .heading {
    font-size: 18px;
    margin-bottom: 30px;
    font-family: "Roboto", arial, sans-serif; }

.post-list li {
  margin-bottom: 20px; }
  .post-list li a > div {
    margin-top: -10px; }
  .post-list li a .meta {
    font-size: 13px;
    color: #adb5bd; }
  .post-list li a .image {
    width: 150px; }
  .post-list li a h3 {
    font-size: 16px; }
  .post-list li:last-child {
    margin-bottom: 0; }

.sidebar-search .form-group {
  position: relative;
  margin-bottom: 0; }

.sidebar-search .icon-search {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.sidebar-search .search-input {
  border-color: #dee2e6;
  padding-left: 40px;
  border-radius: 0px; }
  .sidebar-search .search-input:focus, .sidebar-search .search-input:active {
    border-color: #343a40; }

.contact-section .contact-info p {
  font-family: "Playfair Display", times, serif;
  font-size: 30px;
  margin-bottom: 30px; }
  .contact-section .contact-info p .d-block {
    font-size: 14px;
    letter-spacing: .2em;
    font-weight: bold;
    font-family: "Roboto", arial, sans-serif;
    text-transform: uppercase; }

.post-categories li {
  display: block; }
  .post-categories li a {
    display: block;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e9ecef; }
    .post-categories li a .count {
      position: absolute;
      top: 0;
      right: 0;
      color: #6c757d; }

.custom-pagination .page-item .page-link {
  text-align: center;
  border: none;
  background: none;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  padding: 0;
  line-height: 50px;
  margin-right: 10px;
  margin-bottom: 10px; }

.custom-pagination .page-item.active .page-link {
  background: #ffba5a;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2); }

.line-height-1-2 {
  line-height: 1.2; }

/* Mouse Animation */
.mouse {
  width: 100px;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 140px;
  z-index: 1;
  -webkit-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  transform: translateX(-25%); }

.mouse-icon {
  width: 25px;
  height: 45px;
  border: 2px solid white;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  text-align: center; }

.mouse-wheel {
  height: 6px;
  margin: 2px auto 0;
  display: block;
  width: 3px;
  background-color: white;
  border-radius: 50%;
  -webkit-animation: 1.6s ease infinite wheel-up-down;
  -moz-animation: 1.6s ease infinite wheel-up-down;
  animation: 1.6s ease infinite wheel-up-down; }

@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }

@-moz-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }

@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }

.site-block-half .image, .site-block-half .text {
  width: 100%; }
  @media (min-width: 992px) {
    .site-block-half .image, .site-block-half .text {
      width: 50%; } }

@media (max-width: 991.98px) {
  .site-block-half .image {
    margin-bottom: 50px;
    height: 300px; } }

.site-block-half .text {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px; }
  @media (min-width: 992px) {
    .site-block-half .text {
      padding: 4rem; } }

.site-block-half .bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  @media (max-width: 991.98px) {
    .site-block-half .bg-image {
      height: 400px; } }

.site-block-half.site-block-video .image {
  position: relative; }
  .site-block-half.site-block-video .image .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    width: 70px;
    height: 70px;
    background: #fff;
    display: block;
    border-radius: 50%;
    opacity: 1;
    color: #ffba5a !important; }
    .site-block-half.site-block-video .image .play-button:hover {
      opacity: 1; }
    .site-block-half.site-block-video .image .play-button > span {
      position: absolute;
      left: 55%;
      top: 50%;
      -webkit-transform: translate(-60%, -50%);
      -ms-transform: translate(-60%, -50%);
      transform: translate(-60%, -50%); }

.field-icon-wrap {
  position: relative; }
  .field-icon-wrap .form-control {
    position: relative;
    padding-right: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #a6a6a6; }
  .field-icon-wrap .icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    z-index: 2; }
  .field-icon-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%; }

.block-32 {
  background: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 2px 80px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 80px -10px rgba(0, 0, 0, 0.2);
  width: 100%; }
  .block-32 .field-icon-wrap {
    position: relative; }
    .block-32 .field-icon-wrap .form-control {
      position: relative;
      padding-right: 40px;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      color: #a6a6a6; }
    .block-32 .field-icon-wrap .icon {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 15px;
      z-index: 2; }
    .block-32 .field-icon-wrap select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%; }

.block-2 {
  margin-bottom: 50px;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -ms-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d; }
  .block-2:hover .back, .block-2.hover .back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg); }
  .block-2:hover .front, .block-2.hover .front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .block-2, .block-2 .front, .block-2 .back {
    width: 100%;
    height: 427px; }
  .block-2 .flipper {
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 0.6s;
    -moz-transition: 0.6s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transition: 0.6s;
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative; }
  .block-2 .front, .block-2 .back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 4px;
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateY(0deg);
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -moz-transform: rotateY(0deg);
    -o-transition: 0.6s;
    -o-transform-style: preserve-3d;
    -o-transform: rotateY(0deg);
    -ms-transition: 0.6s;
    -ms-transform-style: preserve-3d;
    -ms-transform: rotateY(0deg);
    transition: 0.6s;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    position: absolute;
    top: 0;
    left: 0; }
  .block-2 .front {
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    background: lightgreen;
    z-index: 2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
    .block-2 .front:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
      background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); }
    .block-2 .front .box {
      position: absolute;
      bottom: 0;
      left: 20px;
      right: 20px;
      bottom: 20px; }
      .block-2 .front .box h2, .block-2 .front .box p {
        color: #fff;
        margin: 0;
        padding: 0;
        line-height: 1.5; }
      .block-2 .front .box h2 {
        font-size: 20px; }
      .block-2 .front .box p {
        font-size: 12px; }
  .block-2 .back {
    background: #fff;
    -webkit-box-shadow: 0 0 70px -10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 70px -10px rgba(0, 0, 0, 0.4);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg); }
  .block-2 .back p {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
    font-size: 18px; }
  .block-2 .author {
    bottom: 0;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px; }
    .block-2 .author .image {
      width: 40px; }
      .block-2 .author .image img {
        border-radius: 50%;
        max-width: 100%; }
    .block-2 .author .position {
      display: block;
      font-size: 12px; }
  @media (max-width: 991.98px) {
    .block-2 .back {
      -webkit-transform: rotateY(0deg);
      -moz-transform: rotateY(0deg);
      -o-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      transform: rotateY(0deg); }
    .block-2 .front {
      -webkit-transform: rotateY(180deg);
      -moz-transform: rotateY(180deg);
      -o-transform: rotateY(180deg);
      transform: rotateY(180deg); } }

.text-black {
  color: #000 !important; }

.check-availabilty {
  margin-top: -170px;
  position: relative; }
  .check-availabilty .block-32 {
    background: #fff;
    border-radius: 10px; }

.room {
  position: relative;
  display: block; }
  .room .img-wrap {
    position: relative;
    overflow: hidden; }
    .room .img-wrap img {
      -webkit-transition: .3s all ease-in-out;
      -o-transition: .3s all ease-in-out;
      transition: .3s all ease-in-out;
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      margin-bottom: 0 !important; }
  .room:hover .img-wrap img, .room:focus .img-wrap img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }

.letter-spacing-1 {
  letter-spacing: .1em; }

.text-opacity-8 {
  opacity: .8; }

.text-opacity-7 {
  opacity: .7; }

.text-opacity-6 {
  opacity: .6; }

.text-opacity-5 {
  opacity: .5; }

.letter-spacing-2 {
  letter-spacing: .2em; }

.bg-image {
  background-size: cover;
  background-attachment: fixed; }

.bg-image-2 {
  background-size: cover;
  background-position: center center; }

.food-menu-tabs {
  text-align: center; }
  .food-menu-tabs .nav-tabs {
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: none; }
    .food-menu-tabs .nav-tabs li {
      display: inline-block; }
      .food-menu-tabs .nav-tabs li a {
        border: none;
        background: none;
        font-size: 1.2rem;
        font-weight: bold;
        position: relative;
        display: block; }
        .food-menu-tabs .nav-tabs li a:before {
          -webkit-transition: .3s all ease;
          -o-transition: .3s all ease;
          transition: .3s all ease;
          content: "";
          position: absolute;
          bottom: 0;
          left: 16px;
          right: 20px;
          height: 2px;
          background: transparent; }
        .food-menu-tabs .nav-tabs li a.active {
          border: none;
          background: none;
          color: #fff; }
          .food-menu-tabs .nav-tabs li a.active:before {
            background: #fff; }

.custom-caption {
  font-size: 14px;
  letter-spacing: .2em; }

.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1; }
  .bg-image.overlay {
    position: relative; }
    .bg-image.overlay > .container {
      position: relative;
      z-index: 3; }
    .bg-image.overlay:before {
      z-index: 2;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: "";
      background: rgba(0, 0, 0, 0.6); }

.img-absolute {
  position: absolute;
  bottom: -100px;
  right: -100px; }
  .img-absolute img {
    max-width: 250px;
    border-radius: 50%;
    border: 10px solid #f2f4fb; }
  @media (max-width: 991.98px) {
    .img-absolute {
      right: 0px; }
      .img-absolute img {
        max-width: 160px; } }

.custom-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0; }
  .custom-breadcrumbs li {
    display: inline-block;
    color: #fff;
    margin: 0 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: bold; }
    .custom-breadcrumbs li a {
      font-weight: normal; }
      .custom-breadcrumbs li a:hover {
        color: #fff; }

.timeline-item {
  padding: 3em 2em 2em;
  position: relative;
  border-left: 2px solid #dee2e6; }
  .timeline-item::before {
    content: attr(date-is);
    position: absolute;
    left: 2em;
    font-weight: bold;
    top: 1em;
    display: block;
    font-weight: 700;
    font-size: .785rem; }
  .timeline-item::after {
    width: 10px;
    height: 10px;
    display: block;
    top: 1em;
    position: absolute;
    left: -6px;
    border-radius: 10px;
    content: '';
    border: 2px solid #dee2e6;
    background: white; }
  .timeline-item:last-child {
    -webkit-border-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #dee2e6), to(rgba(222, 226, 230, 0))) 1 100%;
    -webkit-border-image: -webkit-linear-gradient(top, #dee2e6 60%, rgba(222, 226, 230, 0)) 1 100%;
    -o-border-image: -o-linear-gradient(top, #dee2e6 60%, rgba(222, 226, 230, 0)) 1 100%;
    border-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #dee2e6), to(rgba(222, 226, 230, 0))) 1 100%;
    border-image: linear-gradient(to bottom, #dee2e6 60%, rgba(222, 226, 230, 0)) 1 100%; }

.custom-pagination {
  text-align: center; }
  .custom-pagination ul {
    padding: 0;
    margin: 0; }
    .custom-pagination ul li {
      display: inline-block; }
      .custom-pagination ul li a {
        background: #fff;
        border-radius: 50%;
        border: 1px solid transparent; }
        .custom-pagination ul li a:hover {
          border: 1px solid #d9d9d9;
          -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1); }
      .custom-pagination ul li a, .custom-pagination ul li span {
        display: inline-block;
        width: 47px;
        margin: 2px;
        height: 47px;
        font-size: 1.2rem;
        line-height: 47px; }
      .custom-pagination ul li.active span {
        background: #ffba5a;
        color: #fff;
        border-radius: 50%; }




/* --- SOLUCIÓN DEFINITIVA Y AJUSTADA: PUNTOS DE SCROLL EN EL HERO --- */

/* 1. Posicionamiento del contenedor de los puntos */
.scroll-dots {
    position: absolute !important; 
    
    bottom: 100px !important;    /* AJUSTE: Mover más arriba (antes era 50px) */
    left: 50% !important;       
    transform: translateX(-50%) !important; 
    
    z-index: 100;
    /* CLAVE: Usamos flexbox para asegurar que los puntos se alineen horizontalmente */
    display: flex !important; 
    justify-content: center; /* Centra los puntos */
    align-items: center;
    text-align: center;
}

/* 2. Estilo y Animación de los Puntos Individuales */
.scroll-dots span {
    /* Quitamos 'display: block' para que se pongan lado a lado */
    display: inline-block !important; 
    width: 6px;
    height: 6px;
    /* CLAVE: Cambiamos a margin horizontal */
    margin: 0 4px !important; 
    
    background: #fff; 
    border-radius: 50%;
    opacity: 0.8;
    
    animation: bounce 1.2s infinite ease-in-out;
}

/* 3. Retrasos para el efecto de cascada (si es que tienes la animación 'bounce' definida) */
.scroll-dots span:nth-child(2) {
    animation-delay: -0.4s;
}
.scroll-dots span:nth-child(3) {
    animation-delay: -0.8s;
}

/* 4. Verificación del contenedor principal (Esencial) */
.site-hero {
    position: relative; 
}



/* --- CÓDIGO FINAL PARA MENÚ DE ESCRITORIO CON MÁXIMA SEPARACIÓN --- */

/* 1. Define la estructura de los enlaces y AUMENTA el espacio reservado (padding-right) */
.site-navbar .menu li a {
    position: relative;
    /* ¡CLAVE! Aumentamos el padding y usamos !important para forzar la separación. */
    padding-right: 45px !important; 
    transition: color 0.3s ease; 
    color: #404040; 
}

/* 2. Asegura el color del texto en hover y para el ítem activo */
.site-navbar .menu li a:hover,
.site-navbar .menu li.active a {
    color: #f7b233 !important; 
}

/* 3. Crea el círculo (inicialmente invisible) */
.site-navbar .menu li a::after {
    content: '';
    position: absolute;
    top: 50%;
    
    /* Lo posicionamos bien separado del borde derecho para que "flote" en el espacio creado por el padding. */
    right: 15px; 
    transform: translateY(-50%);
    
    width: 8px; 
    height: 8px;
    background-color: #f7b233;
    border-radius: 50%;
    
    /* Animación: Oculto (aseguramos la misma posición) */
    opacity: 0; 
    transition: all 0.3s ease;
}

/* 4. Muestra y desliza el círculo en hover o en el ítem activo */
.site-navbar .menu li a:hover::after,
.site-navbar .menu li.active a::after {
    opacity: 1; 
    /* Lo movemos ligeramente más a la izquierda para que tenga un pequeño efecto de deslizamiento. */
    right: 20px; 
}



/* --- ELIMINAR BARRA DE SCROLL INTERNA DEL MENÚ ABIERTO --- */

/* 1. Targetea el contenedor principal del menú (site-navbar) */
/* Lo forzamos a ocupar el 100% de la altura y ocultamos cualquier desbordamiento. */
.site-navbar {
    height: 100vh !important; /* Asegura que no se salga de la altura de la ventana */
    overflow-y: hidden !important; /* Oculta la barra de scroll vertical */
}

/* 2. Targetea la navegación interna por si está limitando el tamaño. */
.site-navbar nav {
    height: 100% !important;
    overflow-y: hidden !important;
}

/* 3. Targetea el contenedor más interno (donde están los enlaces). */
/* Si el contenido interno tiene overflow, esta línea lo arregla. */
.site-navbar .menu {
    max-height: 100% !important;
    overflow-y: hidden !important;
}




/* --- ELIMINAR BARRA DE SCROLL AL ABRIR EL MENÚ --- */

/* La regla clave: Si la clase 'offcanvas-menu-open' está en el body, oculta el scroll */
body.offcanvas-menu-open {
    overflow: hidden !important;
    position: fixed; /* Opcional: Esto ayuda a evitar que la página salte al abrir el menú */
    width: 100%;
}

/* Si la regla anterior no funciona, prueba con la clase 'menu-open' */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}






/* --- CAMBIO DE LOGO A OSCURO AL ABRIR EL MENÚ LATERAL --- */

/* 1. Fuerza el logo CLARO (logo-light) a OCULTARSE cuando el menú está abierto */
body.offcanvas-menu-open .hotel-logo-img.logo-light {
    opacity: 0 !important;
}

/* 2. Fuerza el logo OSCURO (logo-dark) a MOSTRARSE cuando el menú está abierto */
body.offcanvas-menu-open .hotel-logo-img.logo-dark {
    opacity: 1 !important;
}

/* (Opcional) Regla para la clase alternativa, por si acaso */
body.menu-open .hotel-logo-img.logo-light {
    opacity: 0 !important;
}

body.menu-open .hotel-logo-img.logo-dark {
    opacity: 1 !important;
}























/* --- ESTILO PARA LA NUEVA SECCIÓN DE SERVICIOS (CON FONDO Y PARALLAX) --- */

/* Contenedor principal de cada tarjeta */
.service-card {
    background: rgba(255, 255, 255, 0.9); /* Fondo blanco semi-transparente */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde más sutil */
    transition: all 0.3s ease;
    height: 100%; 
}

/* Efecto Hover: Brillo blanco y borde visible */
.service-card:hover {
    border-color: #ffffff; /* ¡CLAVE! Borde blanco visible */
    
    /* CAMBIO: Sombra blanca (el brillo) más fuerte y una sombra negra para profundidad */
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.8), /* El brillo blanco más notorio */
        0 10px 30px rgba(0, 0, 0, 0.3); /* Sombra oscura para dar profundidad */
        
    transform: translateY(-5px); 
}

/* Estilo para el Ícono */
.service-icon {
    font-size: 3rem;
    color: #f7b233; /* Ícono en el color principal del tema */
    margin-bottom: 15px;
    line-height: 1; 
    transition: all 0.3s ease;
}

/* El ícono se oscurece un poco en hover */
.service-card:hover .service-icon {
    color: #e5a42a; 
}

/* Estilo para el Título (texto oscuro) */
.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #404040; 
}

/* Estilo para el Texto de Descripción (texto gris más claro) */
.service-text {
    font-size: 0.95rem;
    color: #666; 
}

/* Estilo para los títulos y párrafos de la sección (texto blanco) */
.heading-wrap h2 {
    color: #ffffff !important; 
}
.heading-wrap p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8) !important; 
}






/* --- BOTÓN FLOTANTE SIMPLE DE WHATSAPP (ESTILO PROFESIONAL) --- */

/* Estilo del Contenedor/Enlace */
.float-wa-btn {
    position: fixed;
    width: 60px; /* Tamaño del círculo */
    height: 60px;
    bottom: 25px; /* Separación desde el fondo */
    right: 25px; /* Separación desde la derecha */
    
    /* Color de WhatsApp clásico */
    background-color: #25d366; 
    color: #FFF;
    
    border-radius: 50%; /* Círculo perfecto */
    text-align: center;
    font-size: 30px; /* Tamaño del icono */
    
    /* Centrado del ícono (Flexbox) */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Sombra y animación */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Sombra 3D suave */
    z-index: 9999; /* Asegura que esté por encima de todo */
    transition: all 0.3s ease;
}

/* Efecto Hover */
.float-wa-btn:hover {
    background-color: #25d366; /* Tono de verde más oscuro */
    color: #FFF;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Sombra más fuerte al pasar el mouse */
    transform: scale(1.08); /* Sutil aumento de tamaño */
}

/* Ajuste para dispositivos móviles (más pequeño) */
@media (max-width: 768px) {
    .float-wa-btn {
        width: 55px;
        height: 55px;
        font-size: 27px;
        bottom: 18px;
        right: 18px;
    }
}



/* --- ESTILO DEFINITIVO PARA LA SECCIÓN DE CONTACTO Y MAPA (FONDO NEGRO) --- */

/* Contenedor del Mapa */
.map-wrap {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Contenedor de la información de contacto */
.contact-info-wrap {
    /* CAMBIO: Fondo negro */
    background: #222222; 
    padding: 30px;
    border: 1px solid #333; /* Borde oscuro */
    border-radius: 8px;
}

/* Estilo para el Título Principal de la columna */
.contact-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 35px;
    /* CAMBIO: Texto blanco */
    color: #ffffff; 
}

/* Estilo para cada ítem de contacto */
.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

/* Estilo para el Ícono */
.contact-item i {
    font-size: 1.7rem;
    color: #f7b233; /* Color principal del tema (dorado/amarillo) */
    width: 40px; 
    margin-right: 15px;
    flex-shrink: 0;
    line-height: 1;
}

/* Estilo para el Título del Ítem */
.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    /* CAMBIO: Texto blanco */
    color: #ffffff; 
}

/* Estilo para el Párrafo de Descripción */
.contact-item p {
    font-size: 0.95rem;
    /* CAMBIO: Gris claro para el texto secundario */
    color: #cccccc; 
    margin-top: 3px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Estilo para enlaces dentro del contacto */
.contact-item a {
    /* CAMBIO: Enlaces en blanco */
    color: #ffffff; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f7b233; /* Resaltar al pasar el mouse con el color principal */
}



/* --- AJUSTE DE COLOR DEL TÍTULO PRINCIPAL DE LA SECCIÓN DE CONTACTO --- */

/* Fuerza el título (Contáctanos y Ubicación) a color Negro */
#contacto .heading-wrap .heading {
    color: #000000 !important; 
}

/* Fuerza el párrafo de descripción a color Gris Oscuro */
#contacto .heading-wrap p {
    color: #404040 !important; 
}










/* --- CORRECCIÓN FINAL PARA ESPACIO EXTRA DEBAJO DEL FOOTER --- */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important; /* Deshabilita agresivamente el scroll horizontal */
    width: 100%; 
    min-height: 100vh; 
}


/* --- ESTILO FOOTER REDISEÑADO --- */

/* Contenedor principal para color de fondo */
.site-footer-redesign {
    /* Fondo oscuro moderno */
    background-color: #222222; 
    color: #ffffff;
    padding-top: 5rem; 
    padding-bottom: 2rem; 
}

/* Títulos de columna */
.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #f7b233; /* Color principal del tema (dorado/amarillo) */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo */
.footer-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
}

/* Texto de descripción */
.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Listas de contacto y enlaces */
.footer-contact-list, .footer-link-list {
    padding: 0;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-list i {
    font-size: 1rem;
    margin-right: 10px;
    color: #f7b233; 
    flex-shrink: 0;
    padding-top: 3px;
}

.footer-contact-list a, .footer-contact-list span {
    font-size: 0.9rem;
    color: #cccccc !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link-list a {
    font-size: 0.9rem;
    color: #cccccc !important;
    text-decoration: none;
    line-height: 2.2; 
}

.footer-link-list a:hover, .footer-contact-list a:hover {
    color: #f7b233 !important;
}

/* Enlaces Sociales */
.social-footer-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    /* Fondo semi-transparente */
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-footer-links a:hover {
    /* Color principal al hacer hover */
    background: #f7b233; 
    color: #222222;
}

/* Copyright */
.footer-copyright-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}

.copyright-text {
    font-size: 0.85rem;
    color: #999999;
    text-align: center;
    margin-bottom: 0;
}







/* --- ESTILO PARA CRÉDITO DE DISEÑADOR EN EL FOOTER --- */
.designer-credit-text {
    font-size: 0.8rem;
    color: #999999; /* Mismo gris que el copyright */
    margin-top: 5px; /* Pequeño espacio debajo del copyright */
}

.designer-credit-text .designer-link {
    color: #f7b233; /* Color principal del tema (amarillo/dorado) */
    text-decoration: none;
    font-weight: 600; /* Para que el nombre resalte */
    transition: color 0.3s;
}

.designer-credit-text .designer-link:hover {
    color: #ffffff; /* Blanco al pasar el mouse */
}









/* --- ESTILO PARA LA GALERÍA DE IMÁGENES (REDISEÑO DE CAROUSEL A GRID) --- */

/* Contenedor de cada imagen */
.gallery-item-wrap {
    overflow: hidden; 
    border-radius: 8px; /* Bordes redondeados modernos */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
    position: relative;
    /* Fuerza una altura consistente para que la cuadrícula se vea uniforme */
    height: 300px; 
}

/* La imagen dentro del contenedor */
.gallery-item-wrap .gallery-img {
    width: 100%;
    height: 100%;
    /* CLAVE: Asegura que la imagen cubra todo el espacio sin distorsionarse */
    object-fit: cover; 
    transition: transform 0.4s ease; /* Transición suave para el hover */
}

/* Efecto Hover: Zoom sutil */
.gallery-item-wrap:hover .gallery-img {
    transform: scale(1.08);
}

/* Estilo para el botón Ver Galería Completa */
.gallery-cta-btn {
    background-color: #f7b233; /* Color principal del tema (dorado/amarillo) */
    border-color: #f7b233;
    color: #222222 !important;
    font-weight: 700;
}
.gallery-cta-btn:hover {
    background-color: #e09f2b;
    border-color: #e09f2b;
}

/* Ajuste de altura para móviles */
@media (max-width: 767px) {
    .gallery-item-wrap {
        height: 250px; 
    }
}


/* --- INICIO: SOLUCIÓN DEFINITIVA DE COLOR AMARILLO --- */

/* 1. CAMBIAR EL COLOR DE TEXTO DE PRECIOS */
/* Esto cambia el color de los precios ($74.500, etc.) que usan la clase .text-primary */
.text-primary {
    color: #f7b733 !important;
}

/* 2. CAMBIAR EL COLOR DE LOS BOTONES GLOBALES Y 'VER DETALLES' */
/* Esto asegura que todos los botones primarios (.btn-primary) sean amarillos */
.btn-primary {
    background-color: #f7b733 !important; 
    border-color: #f7b733 !important;
    color: #ffffff !important; 
}

/* 3. CAMBIAR EL COLOR EN HOVER (para que no vuelva al naranja) */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #e6a22f !important; /* Tono ligeramente más oscuro */
    border-color: #e6a22f !important;
    /* Ajusta la sombra de foco */
    box-shadow: 0 0 0 0.2rem rgba(247, 183, 51, 0.5) !important; 
}

/* --- FIN: SOLUCIÓN DEFINITIVA DE COLOR AMARILLO --- */


/* --- INICIO: BOTÓN 'VER DETALLES' (Outline Gris Neutro con Animación Sutil) --- */

/* 1. Estado Normal: Estilo base (Gris y Transición) */
.btn-outline-primary {
    /* Color base: Gris Suave para texto y borde */
    color: #6c757d !important; /* Un gris estándar de Bootstrap (más suave que el negro) */
    border-color: #6c757d !important; 
    background-color: transparent !important;
    
    /* Mantenemos la transición para la suavidad */
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 2. Estado Hover/Active: El efecto SUTIL */
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
    /* El cambio más sutil: Mantenemos el texto y borde, solo añadimos un fondo blanco roto */
    color: #495057 !important; /* Texto: se oscurece un poco para resaltar sobre el fondo claro */
    background-color: #f8f9fa !important; /* Fondo: Blanco muy claro (casi imperceptible) */
    border-color: #495057 !important; /* Borde: se oscurece un poco también */
    
    /* Ajustamos la sombra de foco para que sea gris oscuro */
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.3) !important; 
}

/* --- FIN: BOTÓN 'VER DETALLES' (Outline Gris Neutro con Animación Sutil) --- */