/* Parallax Header Styles */
.parallax-header {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.parallax-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle,rgba(0, 108, 250, 0.65) 15%, rgba(161, 206, 206, 0.31) 58%);
    z-index: 1;
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.background-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-layer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2;
}

.front-layer img {
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

/* Banner Full Width Styles */
.banner-full-width {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 50px;
    background-image: url('../images/hotel/f-hotel-reserva-caldera.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(161, 206, 206, 0.55) 0%, rgba(0, 108, 250, 0.55) 100%);
    z-index: 1;
}

/* Background pattern with palm leaf shadows - removed duplicate */

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1b3d50;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.banner-button {
    background-color: #1b3d50;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.banner-button:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
    color: white;
    text-decoration: none;
}

.banner-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(21, 101, 192, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-full-width {
        height: auto;
        padding: 60px 15px;
    }
    
    .banner-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .banner-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-full-width {
        height: auto;
        padding: 40px 10px;
    }
    
    .banner-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .banner-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Animation for banner elements */
.banner-content {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Hover effects for interactive elements */
.banner-title:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
} 

/* Room Grid Section Styles */
.room-grid-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(156, 204, 101, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(156, 204, 101, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(156, 204, 101, 0.06) 0%, transparent 50%);
    padding: 60px 0;
    position: relative;
}

.room-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Room Module Styles */
.room-module {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.room-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.room-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1b3d50;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.room-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #1b3d50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #1b3d50;
    margin-bottom: 15px;
}

.btn-details {
    background-color: #a1cece;
    border-color: #a1cece;
    color: #1b3d50;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(161, 206, 206, 0.3);
    margin-top: auto;
}

.btn-details:hover {
    background-color: #8eb8b8;
    border-color: rgba(0, 149, 232, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(161, 206, 206, 0.4);
    color: #1b3d50;
}

/* Call to Action Module Styles */
.cta-module {
    background: #a1cece;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(6, 143, 143, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #8e3482;
    z-index: 1;
}

.cta-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(183, 16, 225, 0.4);
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #bbdefb;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    text-shadow: 
        2px 2px 0 #1b3d50,
        4px 4px 0 rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background: #25d366;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 2;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* Responsive Design for Room Grid */
@media (max-width: 768px) {
    .room-grid-section {
        padding: 40px 0;
    }
    
    .room-title {
        font-size: 1rem;
    }
    
    .room-subtitle {
        font-size: 0.8rem;
    }
    
    .room-price {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .btn-whatsapp {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .room-grid-section {
        padding: 30px 0;
    }
    
    .room-image {
        height: 180px;
    }
    
    .room-info {
        padding: 15px;
    }
    
    .cta-module {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
} 

/* Amenities Section Styles */
.amenities-section {
    background-color: #213747;
    padding: 80px 0;
    position: relative;
}

.amenity-item {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.amenity-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.amenity-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 1;
    position: relative;
}

.amenity-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.3;
}

/* Responsive adjustments for amenities */
@media (max-width: 768px) {
    .amenities-section {
        padding: 60px 0;
    }
    
    .amenity-icon {
        width: 100px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .amenity-icon img {
        width: 90px;
        height: 90px;
    }
    
    .amenity-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .amenities-section {
        padding: 40px 0;
    }
    
    .amenity-icon {
        width: 100px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .amenity-icon img {
        width: 90px;
        height: 90px;
    }
    
    .amenity-label {
        font-size: 0.7rem;
    }
} 

/* Ubicación Section Styles */
.ubicacion-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #213747;
}

.ubicacion-background {
    background-image: url('../images/hotel/f-ubicacion-lacaldera.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ubicacion-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    color: white;
    text-align: center;
}

.ubicacion-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.title-accent {
    color: #ffeb3b;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.btn-ubicacion {
    background: linear-gradient(135deg, #1b3d50 0%, #0d47a1 100%);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 61, 80, 0.3);
}

.btn-ubicacion:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 61, 80, 0.4);
    color: white;
    text-decoration: none;
}

.btn-ubicacion:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(27, 61, 80, 0.3);
}

/* Responsive Design para la sección de ubicación */
@media (max-width: 768px) {
    .ubicacion-background {
        min-height: 300px;
    }
    
    .ubicacion-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .btn-ubicacion {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ubicacion-background {
        min-height: 250px;
    }
    
    .ubicacion-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .btn-ubicacion {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
} 

/* Nueva Sección Parque Acuático */
.parque-acuatico-section {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parque-acuatico-section .parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.parque-acuatico-section .background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parque-acuatico-section .background-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parque-acuatico-section .front-layer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parque-acuatico-section .section-content {
    text-align: center;
    padding: 40px 20px;
}

.parque-acuatico-section .title-container {
    margin-bottom: 40px;
}

.parque-acuatico-section .section-title-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.parque-acuatico-section .button-container {
    margin-top: 30px;
}

.parque-acuatico-section .btn-attractions {
    background: linear-gradient(135deg, #1b3d50 0%, #0d47a1 100%);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffeb3b;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 61, 80, 0.3);
}

.parque-acuatico-section .btn-attractions:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 61, 80, 0.4);
    color: #ffeb3b;
    text-decoration: none;
}

.parque-acuatico-section .btn-attractions:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(27, 61, 80, 0.3);
}

/* Responsive Design para la nueva sección */
@media (max-width: 768px) {
    .parque-acuatico-section {
        min-height: 400px;
    }
    
    .parque-acuatico-section .parallax-container {
        min-height: 400px;
    }
    
    .parque-acuatico-section .section-content {
        padding: 30px 15px;
    }
    
    .parque-acuatico-section .title-container {
        margin-bottom: 30px;
    }
    
    .parque-acuatico-section .btn-attractions {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .parque-acuatico-section {
        min-height: 350px;
    }
    
    .parque-acuatico-section .parallax-container {
        min-height: 350px;
    }
    
    .parque-acuatico-section .section-content {
        padding: 25px 15px;
    }
    
    .parque-acuatico-section .title-container {
        margin-bottom: 25px;
    }
    
    .parque-acuatico-section .btn-attractions {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
} 

/* Relaxation Text Styles */
.relaxation-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.1;
}

.relaxation-text b {
    color: #c7fdfd;
    font-size: 4rem;
}

/* Responsive Design for Relaxation Text */
@media (max-width: 768px) {
    .relaxation-text {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .relaxation-text b {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .relaxation-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .relaxation-text b {
        font-size: 2.8rem;
    }
}

/* Mobile margin for pricing cards */
@media screen and (max-width: 768px) {
    .pricing-info .pricing-card {
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 576px) {
    .pricing-info .pricing-card {
        margin-bottom: 20px !important;
    }
}