/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



 .header {
  background-color: #1f1f1f;
  position: fixed;       /* el header queda siempre arriba del scroll */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;     /* u otro valor según altura deseada */
  display: flex;
  align-items: center;
}

.header {
  background-color: #1f1f1f; /* Gris oscuro sugerido */
  /* otros estilos opcionales */
}








.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;  /* empuja nav y botón al extremo derecho */
  width: 100%;                /* que ocupe todo el ancho posible */
}


.logo {
  position: absolute;
  left: 0;                 /* lo pega al borde izquierdo del header */
  top: 50%;                /* lo centra verticalmente */
  transform: translateY(-50%);
  z-index: 1001;           /* por encima del resto */
}


.logo img {
    height: 90px;
    width: auto;
    
}


.desktop-nav,
.mobile-menu-btn {
  margin: 0 !important;
}


/* Para escritorio: empuja la navegación hacia la derecha */
.desktop-nav {
  margin-left: auto !important;
}

.desktop-nav,
.mobile-menu-btn {
  margin: 0;
}

/* Para móvil: empuja el botón de menú hacia la derecha */
.mobile-menu-btn {
  margin-left: auto;
}








.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.desktop-nav a:hover {
    color: #F4A261;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #4A5D52;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 1rem 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(244, 162, 97, 0.1);
    color: #F4A261;
}
/* Posicionar absoluta al botón de menú */
.header .mobile-menu-btn {
  position: absolute;
  right: 20px;       /* ajusta este valor si quieres más o menos espacio lateral */
  top: 50%;
  transform: translateY(-50%);
  margin: 0;         /* elimina cualquier otro margen */
  z-index: 1002;     /* para que quede por encima del resto */
}


.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #4A5D52;
    z-index: 999;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: #F4A261;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Reserve Button */
.reserve-btn-container {
    position: fixed;
    top: 90px;
    right: 30px;
    z-index: 999;
}

.reserve-btn {
    background: linear-gradient(45deg, #F4A261, #FFB347);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reserve-btn:hover {
    background: linear-gradient(45deg, #E89753, #F4A261);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 600px;
    z-index: 3;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars span {
    color: #FFD700;
    font-size: 1.2rem;
}

.guests {
    display: flex;
    flex-direction: column;
}

.guests-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F4A261;
}

.guests-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #F4A261, #FFB347);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: linear-gradient(45deg, #E89753, #F4A261);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.5);
}

.cta-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}


/* Slider base */
.hero-slider { position: relative; overflow: hidden; }
.slider { position: relative; width: 100%; height: 100vh; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; z-index: 1; }

/* Imágenes */
.slide img { width: 100%; height: 100%; object-fit: cover; }

/* Controles */
.slider-control {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); color: #fff; border: none;
  font-size: 2rem; width: 2.5rem; height: 2.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.prev { left: 1rem; }
.next { right: 1rem; }

/* Sobreposición y contenido */
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center;
}
.hero-content { color: #fff; max-width: 600px; }









/* Hotel Description Section */
.hotel-description {
    padding: 2rem 0;
    background: white;
}

.hotel-description .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hotel-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hotel-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.hotel-image:hover img {
    transform: scale(1.05);
}

.section-subtitle {
    color: #4A5D52;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Nearby Places Section */
.nearby-places {
    padding: 2rem 0;
    background: white;
}

.nearby-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 400;
    color: #F4A261;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
}

.places-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.places-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.place-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.place-item:hover {
    transform: none;
    box-shadow: none;
}

.place-item img {
    width: 24px;
    height: 24px;
    filter: hue-rotate(20deg) saturate(1.2);
}

.place-item span {
    font-weight: 400;
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
}

/* Rooms Section */
.rooms {
    padding: 5rem 0;
    background: white;
}

.rooms .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.room-image {
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.room-content {
    padding: 1.5rem;
}

.room-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.room-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail {
    font-size: 0.9rem;
    color: #666;
}

.room-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F4A261;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
}

.room-btn {
    display: block;
    width: 100%;
    background: #F4A261;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.room-btn:hover {
    background: #E89753;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #4A5D52;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 2rem;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #D4AF37;
}

.service-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: white;
}

.reviews .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: #666;
}

.review-card .stars {
    margin-bottom: 1rem;
}

.review-card .stars span {
    color: #FFD700;
    font-size: 1rem;
}

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

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #4A5D52;
    color: white;
}

.gallery .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #D4AF37;
}

.gallery-carousel {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-image {
    display: none;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image.active {
    display: block;
}

.gallery-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #F4A261;
    transform: scale(1.2);
}

/* Tourist Sites Section */
.tourist-sites {
    padding: 4rem 0;
    background: white;
}

.tourist-sites .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.site-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.site-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.site-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A5D52;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: #f8f9fa;
}

.blog .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #F4A261;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-link:hover {
    color: #E89753;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #F4A261;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #4A5D52;
}

.faq-question img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question img {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: #4A5D52;
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #D4AF37;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #4A5D52;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #F4A261;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #F4A261;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header {
        padding: 0.5rem 0;
        min-height: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hotel-description .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .places-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 400px;
    }

    .places-column {
        gap: 1.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reserve-btn-container {
        position: static;
        text-align: center;
        padding: 1rem 0;
        margin-top: 1rem;
    }

    .hero {
        margin-top: 70px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn a {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        min-width: auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #F4A261;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E89753;
}

/* Selection */
::selection {
    background: #F4A261;
    color: white;
}


@media (min-width: 992px) {
  /* Ajusta la altura del logo; el ancho se escala automáticamente */
  .header .logo img {
    height: 120px;   /* antes era 50px; cámbialo al tamaño que necesites */
    width: auto;
  }
  
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header .logo img {
    height: 90px; /* ajusta este valor a tu preferencia */
    width: auto;
  }
 
}


@media (max-width: 767px) {
  /* Aumenta la altura del logo sólo en móvil */
  .header .logo img {
    height: 90px;   /* aumenta de 50px a 70px, ajústalo a tu gusto */
    width: auto;
  }
   body {
    padding-top: 120px; /* altura del header en móvil */
  }
}


@media (max-width: 768px) {

    .header .logo img {
        height: 90px;   /* aumenta de 50px a 70px, ajústalo a tu gusto */
        width: auto;
  }
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header {
        padding: 2rem 0;     /* antes era 0.5rem */
        min-height: 120px;   /* antes era 60px */
    }

}







.hero-subtitle {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: #fff;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
  margin: 0.5rem 0;
  animation-delay: 0.4s;
}


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


/* Estado inicial: abajo y transparente */
.hero-subtitle,
.hero-title,
.hero-description {
  transform: translateY(30px);
  opacity: 0;
  /* prepara la animación pero no la reproduzcas aún */
  animation-name: slideUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}


/* 1) Fuerza que hero-stats sea un flex container */
.hero-overlay .hero-content .hero-stats {
  display: flex !important;        /* convierte en fila */
  justify-content: center !important;
  align-items: center !important;
  gap: 2rem !important;           /* espacio horizontal entre los dos bloques */
  margin-top: 1.5rem !important;  /* separa del párrafo de descripción */
}

/* 2) Cada bloque (rating y guests) en columna */
.hero-overlay .hero-content .hero-stats .rating,
.hero-overlay .hero-content .hero-stats .guests {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 3) Las estrellas en dorado */
.hero-overlay .hero-content .hero-stats .stars {
  color: #FFD700 !important;
  font-size: 1.8rem;              /* ajústalo a tu gusto */
  margin-top: 0.1rem;             /* separación respecto a “Excelente +” */
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

.places-grid .place-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #151515;
}

.places-grid .place-item img {
  width: 24px;
  height: auto;
}


.nearby-title {
  /* Mismo font-family que usas en tus headings */
  font-family: 'HOlage', sans-serif;    /* o reemplaza por 'Playfair Display', serif si prefieres */
  font-weight: 400;                     /* ajusta a 700 si lo quieres más grueso */
  font-size: 1.5rem;                      /* escala al tamaño deseado */
  color: #F4A261;                       /* naranja igual que en tu diseño */
  text-align: center;                   /* lo centra horizontalmente */
  margin: 2.5rem 0 1.5rem;              /* separaciones arriba y abajo */
  /* opcional: espaciado de letras si lo quieres aireado */
  letter-spacing: 0.02em;
}


.room-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;               /* espacio entre cada foto */
}

.room-image img {
  width: 100%;
  height: 150px;             /* ajusta la altura a tu diseño */
  object-fit: cover;         /* recorta para que llenen todo el cuadro */
  border-radius: 8px;        /* igual que tus tarjetas */
}


.gallery-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  margin-top: 1.5rem;
}

.gallery-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/* Contenedor principal del carrusel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

/* Fila de tarjetas */
.reviews-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

/* Cada tarjeta ocupa el 100% del ancho del carrusel */
.reviews-wrapper .review-card {
  flex: 0 0 100%;
  margin-right: 1rem; /* espacio opcional entre tarjetas */
}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev { left: 0.5rem; }
.carousel-btn.next { right: 0.5rem; }



/* Desktop: muestra 3 reseñas a la vez */
@media (min-width: 769px) {
  .reviews-wrapper .review-card {
    flex: 0 0 33.333%;    /* cada tarjeta 1/3 del ancho */
  }
}

/* Mobile: 1 reseña, sin flechas, y permite swipe si quieres */
@media (max-width: 768px) {
  /* Flex-basis = 100% para que cada slide ocupe todo el ancho */
  .reviews-wrapper .review-card {
    flex: 0 0 100%;
  }

  /* Oculta los botones de navegación */
  .reviews-carousel .carousel-btn {
    display: none !important;
  }

  /* Opcional: activar swipe nativo */
  .reviews-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .reviews-wrapper .review-card {
    scroll-snap-align: start;
    margin-right: 1rem;
  }
}



@media (min-width: 769px) {
  .reviews-carousel .carousel-btn {
    display: none !important;
  }
}





