
/* Spectacular Section */
.spectacular {
    width: 100%;
    background-color: #fff;
    padding: 50px 50px 50px 50px;
}

.spectacular__container {
    display:flex;
     flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    min-height: 600px;
}

/* Left Column - Image */
.spectacular__image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.spectacular__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:  transform 0.6s ease;
}

.spectacular__image-wrapper:hover .spectacular__image {
    transform: scale(1.05);
}

/* Right Column - Content */
.spectacular__content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.spectacular__title {
    font-size: clamp(1.8rem, 3vw, 2. 5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.spectacular__text {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.spectacular__text:last-child {
    margin-bottom: 0;
}

.spectacular__text strong {
    color: #000;
    font-weight: 600;
}

/* Scroll Animation */
.spectacular__image-wrapper,
.spectacular__content {
    opacity: 0;
    transform:  translateY(30px);
    transition: all 0.8s ease;
}

.spectacular__image-wrapper.animate,
.spectacular__content.animate {
    opacity: 1;
    transform: translateY(0);
}

.spectacular__content.animate {
    transition-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .spectacular__content {
        padding: 60px 50px;
    }
}

@media (max-width:  1024px) {
    .spectacular__container {
        grid-template-columns: 1fr;
    }
    
    .spectacular__image-wrapper {
        min-height: 400px;
    }
    
    .spectacular__content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .spectacular__image-wrapper {
        min-height: 350px;
    }
    
    .spectacular__content {
        padding: 50px 30px;
    }
    
    .spectacular__title {
        margin-bottom: 25px;
    }
    
    .spectacular__text {
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .spectacular__image-wrapper {
        min-height: 300px;
    }
    
    .spectacular__content {
        padding: 40px 20px;
    }
    
    .spectacular__title {
        margin-bottom: 20px;
    }
    
    .spectacular__text {
        margin-bottom: 15px;
    }
}

/* Alternative Layout - Image on Right */
.spectacular--reverse .spectacular__container {
    grid-template-columns: 1fr 1fr;
}

.spectacular--reverse .spectacular__image-wrapper {
    order: 2;
}

.spectacular--reverse .spectacular__content {
    order:  1;
}

@media (max-width: 1024px) {
    .spectacular--reverse .spectacular__container {
        grid-template-columns: 1fr;
    }
    
    .spectacular--reverse .spectacular__image-wrapper {
        order:  1;
    }
    
    .spectacular--reverse .spectacular__content {
        order: 2;
    }
}