/* Estilos personalizados para la página de reservas */

/* Hero Section personalizado */
.hero-area {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/img/gallery/footer_bg.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-caption {
    position: relative;
    z-index: 2;
}

.hero-img img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-img img:hover {
    transform: translateY(-10px);
}

/* Sección de Reservas */
.reservations-section {
    background: #fff;
    position: relative;
}

.reservation-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

/* Estilos para el widget TidyCal */
.tidycal-embed {
    min-height: 600px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Sección de Servicios Preview */
.services-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-preview .services-caption {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.services-preview .services-caption:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.services-preview .services-caption.active {
    border-color: #007bff;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.services-preview .services-caption.active h4 a,
.services-preview .services-caption.active p {
    color: #fff;
}

.services-preview .services-caption.active .service-icon {
    background: rgba(255,255,255,0.2);
}

/* Botón Volver al Inicio */
.hero-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,123,255,0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-area {
        min-height: auto;
        padding: 80px 0;
    }
    
    .reservation-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .tidycal-embed {
        min-height: 500px;
    }
    
    .services-preview .services-caption {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-caption h1 {
        font-size: 2rem;
    }
    
    .hero-caption span {
        font-size: 1rem;
    }
    
    .reservation-container {
        padding: 15px;
    }
    
    .tidycal-embed {
        min-height: 400px;
    }
}

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

.hero-caption span,
.hero-caption h1,
.hero-caption p {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-caption h1 {
    animation-delay: 0.3s;
}

.hero-caption p {
    animation-delay: 0.6s;
}

/* Mejoras para el widget TidyCal */
.tidycal-embed iframe {
    border-radius: 10px !important;
    border: none !important;
}

/* Estilos para la navegación activa */
#navigation li.active a {
    color: #007bff !important;
    font-weight: 600;
}

/* Mejoras para el header en la página de reservas */
.header-area {
    background: rgba(0,0,0,0.9) !important;
}

.header-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    transition: all 0.3s ease;
}

.header-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
}
