/* Junior Suite Styles */

/* Hero Carousel Section */
.hero-carousel-section {
    margin-top: 0px;
    position: relative;
    padding: 0;
    height: 60vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-carousel .item {
    position: relative;
    height: 60vh;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    border: none;
}

.hero-carousel .item.center {
    transform: scale(1);
    z-index: 2;
}

.hero-carousel .item:not(.center) {
    transform: scale(1);
    opacity: 1;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* Owl Carousel Navigation */
.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
    display: block !important;
}

.hero-carousel .owl-prev,
.hero-carousel .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: none;
    margin: 0;
    border-radius: 100% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

.hero-carousel .owl-prev {
    left: 20px;
}

.hero-carousel .owl-next {
    right: 20px;
}

.hero-carousel .owl-prev:hover,
.hero-carousel .owl-next:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Asegurar que los iconos de las flechas sean visibles */
.hero-carousel .owl-prev i,
.hero-carousel .owl-next i {
    color: #333 !important;
    font-size: 24px;
}

/* Owl Carousel Dots */
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-carousel .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #a1cece;
    margin: 0 8px;
    transition: all 0.3s ease;
    border: none;
}

.hero-carousel .owl-dot.active {
    background: #1b3d50;
    transform: scale(1.2);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .hero-carousel .item {
        height: 60vh;
        margin: 0;
        padding: 0;
    }
    
    .hero-carousel .owl-prev,
    .hero-carousel .owl-next {
        width: 50px;
        height: 50px;
        margin: 0;
    }
    
    .hero-carousel .owl-prev {
        left: 15px;
    }
    
    .hero-carousel .owl-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-carousel .item {
        height: 60vh;
        margin: 0;
        padding: 0;
    }
    
    .hero-carousel .owl-prev,
    .hero-carousel .owl-next {
        width: 40px;
        height: 40px;
        margin: 0;
    }
    
    .hero-carousel .owl-prev {
        left: 10px;
    }
    
    .hero-carousel .owl-next {
        right: 10px;
    }
}

/* Amenities Section */
.amenities-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.amenities-section h2 {
  font-weight: bolder;
}
.amenity-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #a1cece, #1b3d50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.amenity-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.amenity-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
   /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
   background-color: #a1cece;
}

.pricing-info {
    background:#a1cece;
    padding: 3rem;
}

.pricing-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #1b3d50;
}

.pricing-card h4 {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-highlight {
    font-size: 1.2rem;
    color: #28a745;
}

.terms-info {
    padding: 1.5rem;
    margin-top: 3rem;
}

.terms-info p {
    margin-bottom: 0.5rem;
}

.reserve-button .btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.reserve-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Similar Rooms Section */
.similar-rooms-section {
    background: #f8f9fa;
}

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

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.price-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.room-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.room-info-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-info-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .amenity-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .amenity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-info {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .room-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .amenity-card {
        padding: 1rem;
    }
    
    .pricing-info {
        padding: 1.5rem 1rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .room-image {
        height: 200px;
    }
    
    .room-info-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .room-info-overlay h4 {
        font-size: 1.1rem;
    }
}

/* Estilos para la sección de pricing */
.pricing-section h3,
.pricing-section h4, .pricing-section h5  {
    color: #1b3d50;
    text-transform: uppercase;
    font-weight: bold;
}

.pricing-section p {
    color: #1b3d50;
}

.pricing-section .price-highlight {
    color: #1b3d50;
}

.pricing-section .terms-list p {
    color: #1b3d50;
    font-size:12px;
}

/* Estilos para la sección de reserva */
.reserve-section {
    background-color: #a1cece;
    width: 100%;
}

.reserve-section .btn {
    background-color: #1b3d50;
    border-color: #1b3d50;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rooms Carousel Styles */
.rooms-carousel {
    position: relative;
}

.rooms-carousel .owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
    width: auto;
    pointer-events: none;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.rooms-carousel .owl-prev,
.rooms-carousel .owl-next {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(27, 61, 80, 0.9) !important;
    color: white !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: none;
    margin: 0;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 18px;
}

.rooms-carousel .owl-prev:hover,
.rooms-carousel .owl-next:hover {
    background: rgba(27, 61, 80, 1) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rooms-carousel .owl-prev i,
.rooms-carousel .owl-next i {
    color: white !important;
    font-size: 20px;
}

.rooms-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.rooms-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #a1cece;
    margin: 0 8px;
    transition: all 0.3s ease;
    border: none;
}

.rooms-carousel .owl-dot.active {
    background: #1b3d50;
    transform: scale(1.2);
}

/* Responsive Design for Rooms Carousel */
@media (max-width: 768px) {
    .rooms-carousel .owl-nav {
        top: -70px;
    }
    
    .rooms-carousel .owl-prev,
    .rooms-carousel .owl-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .rooms-carousel .owl-nav {
        top: -65px;
    }
    
    .rooms-carousel .owl-prev,
    .rooms-carousel .owl-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
