:root {
    --dark: #343434;
    --light: #f9f6f0;
    --accent: #625a58;
    --sand-dark: #ece1cd;
    --sand-light: #eae5d8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
    font-family: 'Josefin Sans', sans-serif; /* Añadido */
    text-transform: uppercase; /* Añadido */
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

p {
font-size: 1.15rem; /* Aumenta el tamaño base para mejor legibilidad */
    line-height: 1.7;  /* Aumenta ligeramente el interlineado para mayor comodidad de lectura */
    margin-bottom: 1.25rem; /* Un poco más de espacio debajo de cada párrafo */
    text-align: justify;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
}

a {
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

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

/* Container */
.container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-description {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

.header-scrolled {
    background-color: rgba(249, 246, 240, 0.9);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 5px;
    color: var(--dark);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    color: var(--light); /* Cambiado a var(--light) */
}

.header-scrolled .nav-links a {
    color: var(--dark); /* Mantiene el color oscuro al hacer scroll */
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.btn-nav-book {
    background-color: var(--accent);
    color: #eae5d8 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-nav-book:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
}

.btn-nav-book:after {
    display: none !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 2px;
    background-color: var(--sand-dark); /* Cambiado a color hueso por defecto */
    margin: 5px;
    transition: all 0.3s ease;
}
.header-scrolled .hamburger div {
    background-color: var(--dark); /* Vuelve a ser oscuro al hacer scroll */
}
/* Hero Section */

.hero {
    width: 100%;
    height: 100vh;
    position: relative; /* Contexto de apilamiento */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #eae5d8;
    overflow: hidden;
}

/* 2. El fondo de video (Capa más baja) */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* ¡CORREGIDO! La capa base. */
    pointer-events: none;
}

/* El iframe dentro del contenedor de video */
.hero-video-background iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hero background image and video styles */
.hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 1s ease;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transition: opacity 2s ease;
}

.hero-video-background.loaded {
    opacity: 1 !important;
}

/* Image lazy loading styles */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: #f0f0f0;
}

.lazy-loaded {
    opacity: 1;
}

/* Loading placeholder for images */
.lazy-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ccc;
    border-top-color: #666;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 3. La capa oscura (Capa intermedia) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2; /* ¡CORREGIDO! Justo encima del video. */
}

/* 4. El contenido de texto y botones (Capa superior) */
.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative; /* Necesario para que z-index funcione */
    z-index: 3; /* ¡CORREGIDO! Encima de todo lo demás. */
}

.scroll-indicator {
    position: absolute;
    /* Ajustamos el valor 'bottom' para que esté más abajo
       y tenga un espacio visual definido. */
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    /* Eliminamos la animación 'fadeInUp' que puede ser redundante aquí */
    z-index: 1;
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 200;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid #eae5d8;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem 1rem 0.5rem;
}

.btn:hover {
    background: white;
    color: var(--dark);
}

.btn-filled {
    background: white;
    color: var(--dark);
}

.btn-filled:hover {
    background: transparent;
    color: white;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: fadeInUp 1.5s ease infinite;
    z-index: 1;
}

.mouse {
    border: 2px solid white;
    border-radius: 20px;
    height: 40px;
    width: 24px;
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: center;
}

.wheel {
    background-color: white;
    border-radius: 50%;
    width: 4px;
    height: 8px;
    margin-top: 10px;
    animation: scroll 1.5s ease infinite;
}

.scroll-text {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0.5;
        transform: translate(-50%, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section & Image Carousels */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 0 0 48%;
}

.about-image {
    flex: 0 0 48%;
    position: relative;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.about-image .carousel-item.active {
    opacity: 1;
}

/* Restaurant-specific styles */
.restaurant-image {
    flex: 0 0 58%;
}

.restaurant-text {
    flex: 0 0 38%;
}

.restaurant-image img {
    height: 400px;
    object-fit: cover;
}

/* Tab-specific styles */
.tab-about-content {
    margin-bottom: 3rem;
}

.full-width-image .about-image {
    flex: 0 0 100%;
    margin-top: 3rem;
}

.full-width-image img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Feature Section */
.features {
    background-color: var(--sand-dark);
    padding: 6rem 0;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Cambiado para centrar las filas */
    gap: 2rem;
}

.feature-box {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Añadido */
    flex-direction: column; /* Añadido */
    justify-content: space-between; /* Añadido para distribuir el contenido */
}
.feature-box .btn-dark {
    margin-top: auto; /* Empuja el botón al final del flex-container */
    align-self: flex-start; /* Alinea el botón a la izquierda si no es de ancho completo */
}
@media (max-width: 992px) {
    .feature-box {
        flex: 0 0 calc(50% - 1rem); /* Mantener 2 columnas en tablets */
    }
}
@media (max-width: 768px) {
    .feature-box {
        flex: 0 0 100%; /* Una columna en móviles */
    }
.room-card .image-carousel {
    margin-bottom: 3.5rem; /* Añadimos un margen inferior para empujar el texto hacia abajo */
}
    .room-details .room-title {
    font-size: 1.4rem;
    letter-spacing: 1.2px;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 0.25rem; /* Reducimos el margen para que la segunda línea quede cerca */
}

/* 2. NUEVA REGLA: Estilo para el tamaño (la segunda línea) */
.room-title .room-size {
    display: block;          /* ¡La clave! Fuerza a que se ponga en una nueva línea */
    font-size: 1rem;         /* Un tamaño de fuente más pequeño, como un subtítulo */
    font-weight: 300;
    letter-spacing: 0.5px;   /* Un espaciado de letra más normal */
    color: var(--accent);    /* Le damos un color de acento para diferenciarlo */
    text-transform: none;    /* Opcional: le quitamos las mayúsculas para un look más suave */
    margin-top: 0.25rem;
}
.room-card {
    /* Añade separación entre las tarjetas cuando están en una sola columna */
    margin-bottom: 2.5rem;
}

.room-details {
    /* Aumentamos el padding para dar más aire general al contenido */
    padding: 2rem 1.5rem;
}

.room-details .room-subtitle {
    margin-bottom: 2rem;    /* Más espacio debajo del subtítulo */
    font-size: 1rem;        /* Ajustamos su tamaño para que no compita con el título */
    text-align: left;
    line-height: 1.6;
}

.room-details .room-amenities {
    margin-bottom: 2rem;
}

.room-details .room-amenities li {
    margin-bottom: 0.8rem;
    margin-right: 0.6rem; /* Un poco de espacio entre los 'tags' */
}

.room-details p {
    font-size: 1rem;         /* Reducimos el párrafo solo dentro de esta tarjeta móvil para no abrumar */
    line-height: 1.8;
    margin-bottom: 2rem;     /* Espacio generoso antes del botón */
    text-align: left;
}
}
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.feature-list i {
    color: var(--accent);
    margin-right: 10px;
}

.cta-btn {
    margin-top: 1rem;
}

/* Accommodations Section */
.accommodations {
    padding: 6rem 0;
}

.room-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.room-card {
    flex: 0 0 calc(33.333% - 2rem);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: white; /* Asegura que la tarjeta tenga un fondo blanco */
    display: flex; /* Añadido para controlar el layout interno si es necesario */
    flex-direction: column; /* Apila los elementos verticalmente */
}
.room-card .image-carousel {
    flex: 0 0 auto; /* Permite que el carrusel tenga su tamaño natural */
    width: 100%; /* Asegura que el carrusel ocupe todo el ancho de la tarjeta */
    height: 300px; /* Altura fija para las imágenes del carrusel en las tarjetas */
    border-radius: 0; /* Elimina el border-radius del carrusel si el padre ya lo tiene */
    box-shadow: none; /* Elimina la sombra del carrusel, la tarjeta ya tiene una */
}

.room-card .carousel-track {
    height: 100%; /* El track debe llenar el carrusel */
}

.room-card .carousel-slide img {
    height: 100%; /* Asegura que la imagen dentro del slide llene el slide */
    object-fit: cover;
}

.room-details {
    padding: 1.5rem;
    background-color: white; /* Asegura un fondo blanco para los detalles */
    flex-grow: 1; /* Permite que los detalles ocupen el espacio restante */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye el contenido verticalmente */
}

.room-details .btn-dark {
    margin-top: auto; /* Empuja el botón hacia abajo si el contenido es variable */
}

/* Ajustes para el carrusel dentro de las tarjetas si el padding lo afecta */
.room-card .carousel-wrapper {
    border-radius: 0; /* Elimina cualquier radio de borde redundante */
    box-shadow: none; /* Elimina la sombra si el padre ya la aplica */
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-details {
    padding: 1.5rem;
    background-color: white;
}

.room-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.room-subtitle {
    margin-bottom: 1rem;
    color: var(--accent);
}

.room-amenities {
    list-style: none;
    margin-bottom: 1.5rem;
}

.room-amenities li {
    display: inline-block;
    font-size: 0.95rem;
    background-color: var(--light);
    padding: 0.3rem 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 30px;
}

.room-amenities li i {
    margin-right: 0.3rem;
    color: var(--accent);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: white;
}

.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    margin: 0 0.5rem 1rem 0.5rem;
    background-color: var(--light);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.tab-button.active, .tab-button:hover {
    background-color: var(--accent);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    flex: 0 0 calc(50% - 2rem);
    display: flex;
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-right: 1.5rem;
    flex: 0 0 auto;
}

.service-details {
    flex: 1;
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    /*-- background-color: var(--sand-light); */
    text-align: center;
}

/* --- 2. Corrección del Slider de Testimonios --- */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 280px; /* Altura mínima para evitar colapso de layout */
}

.testimonial-slide {
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text:before, .testimonial-text:after {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text:before {
    top: -20px;
    left: -20px;
}

.testimonial-text:after {
    bottom: -40px;
    right: -20px;
}

.testimonial-author {
    font-weight: 500;
    font-size: 1rem;
}

.testimonial-author span {
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--accent);
}

.slider-nav {
    margin-top: 2rem;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--sand-dark);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1600/900');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 calc(40% - 3rem);
}

.contact-form {
    flex: 0 0 60%;
}

.contact-item {
    margin-bottom: 2.5rem; /* Más espacio entre items */
    display: flex;
    align-items: flex-start;
    padding: 1rem 0; /* Padding adicional para más respiro */
}

.contact-icon {
    width: 55px;
    height: 55px;
    background-color: var(--dark); /* Usar color oscuro original para contraste */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background-color: var(--accent); /* Hover con color accent original */
    transform: translateY(-2px);
}

.contact-details h4 {
    margin-bottom: 0.8rem;
    color: var(--dark); /* Color dark original */
    font-weight: 600;
    font-size: 1.2rem; /* Tipografía más grande */
}

.contact-details p {
    color: var(--dark); /* Usar dark en lugar de accent para mejor contraste */
    line-height: 1.6;
    font-size: 1.05rem; /* Tipografía más grande */
}

.contact-social {
    margin-top: 0.5rem;
}

.contact-social a {
    color: var(--dark) !important; /* Color dark original para contraste */
    background-color: var(--light);
    border: 2px solid var(--accent);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.2rem; /* Tipografía más grande */
}

.contact-social a:hover {
    background-color: var(--accent);
    color: white !important;
    border-color: var(--dark);
    transform: translateY(-2px);
}

/* Mejorar contraste de enlaces en contacto con paleta original */
.contact-details a {
    color: var(--dark) !important;
    text-decoration: none;
    border-bottom: 1px dotted var(--accent);
    transition: all 0.3s ease;
    font-size: 1.05rem; /* Tipografía más grande */
}

.contact-details a:hover {
    color: var(--accent) !important;
    border-bottom: 1px solid var(--accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-dark {
    background-color: var(--accent);
    color: white;
    border: 1px solid var(--accent);
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-block {
    width: 100%;
}

.map-container {
    margin-top: 4rem;
}

/* Form Row */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-row .form-group {
    flex: 0 0 50%;
    padding: 0 10px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 280px;
    max-width: 33.333%;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent);
}

.contact-info {
    margin-top: 1rem;
}

/* Footer contact items (different styling) */
.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.footer .contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-item a:hover {
    color: white;
    text-decoration: underline;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.social-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links a i {
    width: 20px;
    font-size: 1.2rem;
}

.footer-social {
    list-style: none;
    display: flex;
    margin-top: 1.5rem;
}

.footer-social li {
    margin-right: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: --dark;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 1rem;
    color: #ccc;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-links-bottom {
    margin-top: 1rem;
}

.footer-links-bottom a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow: auto;
    animation: fadeIn 0.4s ease;
}


@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin-bottom: 0;
}

.modal-body {
    padding: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.booking-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23343434' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

/* Animation */
.fade-in {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* SOLO si JavaScript está activo, ocultamos los elementos para animarlos */
.js-animations-active .fade-in {
    opacity: 0;
    transform: translateY(30px);
}

/* La clase 'visible' que añade el JS los hace aparecer */
.js-animations-active .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        width: 90%;
    }
    
    .about-text, .about-image {
        flex: 0 0 100%;
    }
    
    .about-text {
        margin-bottom: 2rem;
    }
    
    .about-content {
        flex-direction: column-reverse; /* Puts image first */
    }

    .about-content:nth-child(odd) { /* Re-orders alternating sections */
        flex-direction: column;
    }
    
    .feature-box {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .room-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .service-item {
        flex: 0 0 100%;
    }
    
    .contact-info, .contact-form {
        flex: 0 0 100%;
    }
    
    .restaurant-image, .restaurant-text {
        flex: 0 0 100%;
    }
    
    .restaurant-text {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background-color: var(--light);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.5s ease;
        z-index: 10;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .hamburger {
        display: block;
        z-index: 11;
    }
    
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-box, .room-card {
        flex: 0 0 100%;
    }
    
    .footer-section {
        flex: 0 0 100%;
    }
    
    .form-row .form-group {
        flex: 0 0 100%;
    }

    .about-content, .about-content:nth-child(odd) {
        flex-direction: column;
    }
    .about-text {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-text:before, .testimonial-text:after {
        font-size: 2rem;
    }
    .hero h1 {
    font-size: 2.2rem;  /* Un poco más grande para mayor impacto */
    line-height: 1.3;   /* LA CLAVE: Añade espacio vertical entre las líneas */
    margin-bottom: 2rem; /* Aumenta el espacio debajo del título */
}

/* NUEVA REGLA: Estilos específicos para el subtítulo (H2) en móvil */
.hero h2 {
    font-size: 1.2rem;   /* Un tamaño de fuente más legible para el subtítulo */
    line-height: 1.6;    /* Un interlineado cómodo para la lectura */
    letter-spacing: 0.5px; /* Reducimos el espaciado entre letras en móvil */
    font-weight: 300;
    margin-bottom: 2.5rem; /* Más espacio sobre los botones */
    /* Opcional: Quitar las mayúsculas en móvil puede mejorar mucho la legibilidad */
    text-transform: none; 
}
}
.logo-svg path, .logo-svg polygon {
    fill: var(--light); /* Color hueso */
    transition: fill 0.4s ease;
}

/* Estado con scroll (header con fondo) */
.header-scrolled .logo-svg path, 
.header-scrolled .logo-svg polygon {
    fill: var(--dark); /* Color plomo */
}

/* Ajustes generales del contenedor SVG */
.logo-svg {
    height: 50px;
    width: auto;
    vertical-align: middle;
}


/* Aasegurarnos que los links del nav también tengan el color correcto al inicio */
.nav-links a {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    color: var(--light); /* Aseguramos color hueso para los links al inicio */
}

/* About Section & Image Carousels */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 0 0 48%;
}

.image-carousel {
    flex: 0 0 48%;
    position: relative;
}

/* El contenedor principal que oculta lo que no se ve */
.carousel-wrapper {
    position: relative;
    overflow: hidden; /* ¡Crucial! Oculta los slides que están fuera del área visible. */
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* El "track" que se mueve horizontalmente y contiene todos los slides */
.carousel-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* ¡La clave! Pone los slides uno al lado del otro en una fila. */
    height: 400px; /* O la altura que necesites para tus imágenes */
    transition: transform 0.5s ease-in-out; /* La animación suave al moverse */
}

/* Cada slide individual dentro del track */
.carousel-slide {
    flex: 0 0 100%; /* Cada slide ocupa el 100% del ancho del wrapper. */
    width: 100%;
    position: relative; /* Importante: NO debe ser 'absolute'. */
    /* Eliminamos cualquier regla de 'opacity' que pudiera existir. */
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen llene el slide sin deformarse. */
}

/* Initial slide visibility */
.carousel-slide.current-slide {
    /* This class is added by template to initial slide */
}

/* Estilos de los botones (estos probablemente ya los tienes bien, pero los incluimos por seguridad) */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-wrapper:hover .carousel-button {
    opacity: 1;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.6);
}
.restaurant-video-container {
    /* --- Estilos de Layout --- */
    width: 100%;
    max-width: 1250px; /* Mantenemos el ancho máximo para que se vea bien */
    margin: 2rem auto; /* Centra el contenedor */
    
    /* --- La Magia (Nueva Propiedad) --- */
    aspect-ratio: 16 / 9; /* ¡LA CLAVE! Fuerza al contenedor a tener esta proporción */

    /* --- Estilos Visuales --- */
    position: relative; /* Necesario para el iframe */
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.restaurant-video-container iframe {
    /* Hacemos que el iframe llene completamente su contenedor padre */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Buena práctica para quitar bordes de iframes */
}

.video-overlay { /* Mantenemos el overlay por si quieres oscurecer el video */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none; /* Asegura que no bloquee nada */
}

.restaurant-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra todo el contenedor */
}

.video-overlay { /* Opcional: capa oscura para mejorar la legibilidad del texto sobre el video */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Oscurece ligeramente el video */
}

/* Para dar más padding hacia abajo a la sección "UNAI Restaurant" */
#restaurant {
    padding-bottom: 0rem; /* Aumenta el padding inferior de la sección */
}
.restaurant-video-container {

    margin:0 auto;}
/* Media query para pantallas grandes - ajuste de espaciado */
@media (max-width: 1400px) {
  /* Reducimos gradualmente el espacio entre elementos del menú */
  .nav-links li {
    margin: 0 1rem; /* Reducido de 1.5rem */
  }

  /* Aseguramos que el botón reservar no se parta en líneas */
  .nav-links .btn-dark {
    white-space: nowrap;
    padding: 0.6rem 1rem; /* Reducimos el padding horizontal */
    font-size: 0.9rem; /* Tamaño de texto mejorado */
  }
}

@media (max-width: 1300px) {
  /* Ajuste más agresivo antes del breakpoint */
  .nav-links li {
    margin: 0 0.8rem;
  }

  .nav-links .btn-dark {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* NUEVO BREAKPOINT: 1250px en lugar de 1700px */
@media (max-width: 1250px) {
    /* Ocultamos la navegación de escritorio y mostramos el icono */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 11;
    }
    
    header .nav-links a, 
    .header-scrolled .nav-links a {
        color: var(--dark);
    }
        
    /* Estilos para el panel del menú desplegable */
    .nav-links {
        /* Posicionamiento y Tamaño Full-Screen */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        /* Fondo Semi-transparente y Efecto "Frosted Glass" */
        background-color: rgba(249, 246, 240, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);

        /* Centrado Perfecto de Elementos */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        /* Animación de Aparición */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;

        /* Capa de Apilamiento */
        z-index: 10;
    }

    /* Cuando el menú está activo */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    /* Ajustes para los links y el botón dentro del menú full-screen */
    .nav-links li {
        margin: 1.5rem 0;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    /* Aseguramos que los links dentro del menú siempre sean oscuros */
    .nav-links a,
    .header-scrolled .nav-links a {
        color: var(--dark);
    }

    .nav-links .btn-dark {
        padding: 0.8rem 2.5rem;
    }

    /* Animación del icono de hamburguesa a 'X' */
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 992px) {
    .restaurant-video-container {
        flex: 0 0 100%; /* En pantallas más pequeñas, ocupa todo el ancho */
        margin-top: 2rem; /* Espacio superior si el texto va antes */
    }
}

.service-list {
    margin-top: 50px;
}

/* v2/css/styles.css */
/* 1. El nuevo contenedor para el iframe de Vimeo */
.mid-hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Capa base */
    pointer-events: none;
}

/* 2. El iframe dentro del contenedor para que cubra todo el espacio */
.mid-hero-video-background iframe {
    width: 100vw;
    height: 56.25vw; /* Proporción 16:9 del ancho */
    min-height: 100vh;
    min-width: 177.77vh; /* Proporción 16:9 del alto */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 3. Ajustamos el z-index del overlay y del contenido para que se vean por encima */
.mid-hero-overlay {
    z-index: 2; /* Capa intermedia */
}

.mid-hero-content {
    z-index: 3; /* Capa superior, siempre visible */
}

.mid-hero-video-section {
    position: relative;
    height: 60vh; /* Altura más pequeña que el hero principal */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.mid-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.mid-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Capa oscura sobre el video */
    z-index: 0;
}


.mid-hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 200;
    letter-spacing: 4px;
}

.mid-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Ajustes para el botón si es necesario, ya se usan los estilos .btn */

@media (max-width: 768px) {
    .mid-hero-video-section {
        height: 40vh; /* Altura ajustada para móviles */
    }

    .mid-hero-content h2 {
        font-size: 2rem;
    }

    .mid-hero-content p {
        font-size: 1rem;
    }
}
.cta {
    padding: 6rem 0;
    /* Eliminar o comentar: background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1600/900'); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/unai-be-you-be-wild-bg.jpg'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: eae5d8;
}
#boton-reservar {color:#eae5d8;}
#boton-reservar:hover {color:#353535;}

/* Estilos para el selector de idioma en el menú */
.lang-switcher a {
    padding: 0 0.5rem;
    opacity: 0.6;
}

.lang-switcher a.lang-active {
    opacity: 1;
    font-weight: 500;
}

.lang-switcher span {
    opacity: 0.4;
}

.btn-dark:disabled {
    cursor: not-allowed;
}
.hueso {background-color: var(--sand-light);}


/* Estilos base para el botón reservar */
.nav-links .btn-dark,
#boton-reservar {
    background-color: var(--accent) !important; /* Fondo sólido color acento */
    color: var(--light) !important; /* Texto color hueso */
    border: 2px solid var(--accent) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    display: inline-block !important;
}

/* Estado hover del botón */
.nav-links .btn-dark:hover,
#boton-reservar:hover {
    background-color: transparent !important;
    color: var(--light) !important;
    border-color: var(--light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Cuando el header tiene scroll (fondo claro) */
.header-scrolled .nav-links .btn-dark,
.header-scrolled #boton-reservar {
    background-color: var(--accent) !important;
    color: white !important;
    border-color: var(--accent) !important;
}

.header-scrolled .nav-links .btn-dark:hover,
.header-scrolled #boton-reservar:hover {
    background-color: var(--dark) !important;
    color: white !important;
    border-color: var(--dark) !important;
}

/* Ajustes para diferentes tamaños de pantalla */
@media (max-width: 1400px) {
    .nav-links .btn-dark,
    #boton-reservar {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 1300px) {
    .nav-links .btn-dark,
    #boton-reservar {
        padding: 0.5rem 0.9rem !important;
        font-size: 0.8rem !important;
    }
}

/* En el menú móvil burger */
@media (max-width: 1250px) {
    .nav-links .btn-dark,
    #boton-reservar {
        background-color: var(--accent) !important;
        color: white !important;
        border-color: var(--accent) !important;
        padding: 0.8rem 2rem !important;
        font-size: 0.9rem !important;
        margin-top: 1rem !important;
    }
    
    .nav-links .btn-dark:hover,
    #boton-reservar:hover {
        background-color: var(--dark) !important;
        border-color: var(--dark) !important;
    }
}

/* Asegurar que no herede estilos problemáticos */
.nav-links a.btn-dark:after,
#boton-reservar:after {
    display: none !important;
}

/* Posicionamiento específico en el nav */
.nav-links li:last-child {
    margin-left: 0.5rem; /* Separación extra del último elemento regular */
}

/* ================================
   ESTILOS FALTANTES PARA TEMPLATES JSON
   ================================ */

/* Tents Grid */
.tents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tent-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tent-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tent-content {
    padding: 1.5rem;
}

.tent-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.tent-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1rem;
    color: var(--accent);
}

.tent-features {
    margin-top: 1rem;
}

.tent-features ul {
    list-style: none;
    padding: 0;
}

.tent-features li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tent-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Rooms Showcase */
.rooms-showcase {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.room-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.room-showcase-item:nth-child(even) {
    direction: rtl;
}

.room-showcase-item:nth-child(even) > * {
    direction: ltr;
}

.room-images {
    position: relative;
}

.room-image-main {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.room-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.room-meta {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--accent);
}

.room-features {
    margin-top: 1.5rem;
}

.room-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.room-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.room-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tents-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-showcase-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .room-showcase-item:nth-child(even) {
        direction: ltr;
    }
    
    .room-meta {
        justify-content: center;
        gap: 1rem;
    }
    
    .room-features ul {
        grid-template-columns: 1fr;
    }
}

/* Luxury Features Section */
.luxury-features {
    background-color: var(--sand-light);
    padding: 6rem 0;
}

.luxury-features .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-block {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-block .feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-block .feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-block .feature-description {
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--accent);
    font-size: 1rem;
}

.feature-block .btn-dark {
    margin-top: auto;
    align-self: center;
}

@media (max-width: 992px) {
    .feature-block {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .feature-block {
        flex: 0 0 100%;
    }
    
    .luxury-features {
        padding: 4rem 0;
    }
}

