/* Theme CSS - Ciicu */

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 193, 77, 0.9), rgba(179, 152, 54, 0.9)), 
                url('images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 253, 77, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 182, 77, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(179, 127, 54, 0.2) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Inspiraciones Section */
.inspiraciones-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.inspiraciones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffc14d' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='m0 40l40-40h-40v40zm40 0v-40h-40l40 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.destination-card {
    transition: all 0.3s ease;
    position: relative;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-orange));
    opacity: 0;
    border-radius: 15px;
    transition: all 0.3s ease;
    z-index: -1;
}

.destination-card:hover::before {
    opacity: 0.1;
}

.destination-card .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--contrast-brown), var(--accent-gold));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonial-card {
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

/* Experience Section */
.experience-section {
    background: var(--white);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffc14d' fill-opacity='0.03'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.feature-box {
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 193, 77, 0.1), rgba(255, 182, 77, 0.1));
    border: 1px solid rgba(255, 193, 77, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 77, 0.2);
}

.interactive-box {
    position: relative;
}

.interactive-box img {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.interactive-box:hover img {
    transform: scale(1.02);
}

/* Partnerships Section */
.partnerships-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.partner-logo {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 193, 77, 0.1);
    border: 2px solid rgba(255, 193, 77, 0.2);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 193, 77, 0.2);
    border-color: var(--primary-gold);
}

.logo-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-gold), var(--contrast-brown));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.1'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-2l-8 2-8-2v2l8 2 8-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    position: relative;
}

.gallery-swiper {
    padding: 20px 0;
}

.gallery-swiper .swiper-slide {
    text-align: center;
}

.gallery-swiper .swiper-slide img {
    border-radius: 15px;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-slide img:hover {
    transform: scale(1.02);
}

.gallery-swiper .swiper-pagination-bullet {
    background: var(--primary-gold);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: rgba(255, 193, 77, 0.2);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    color: var(--white);
    position: relative;
}

.footer-section .container{
    z-index: 200;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffc14d' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-section .list-unstyled li {
    margin-bottom: 8px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 193, 77, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .feature-box {
        margin-bottom: 15px;
    }
    
    .partner-logo {
        height: 100px;
        margin-bottom: 15px;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .destination-card {
        margin-bottom: 20px;
    }
}

/* Animaciones adicionales */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.timeline::after{
    z-index: -1!important;
}