/* Our Story Section Styles */
.our-story {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
}

.our-story * {
    color: var(--deep-purple) !important;
}

.our-story .section-title {
    color: var(--deep-purple) !important;
}

.story-text {
    color: var(--deep-purple) !important;
    line-height: 2;
    margin-bottom: 2rem;
}

.story-carousel .lead {
    color: var(--deep-purple) !important;
}

.story-carousel p {
    color: var(--deep-purple) !important;
}

/* Story Carousel */
.story-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    touch-action: pan-y;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    min-height: 250px;
}

.carousel-slide.active {
    display: block;
}

/* Suspense text styling */
.suspense-text {
    font-size: 1.8rem !important;
    font-style: italic;
    padding: 3rem 0;
    text-align: center;
}

/* Initial slide hint animation - text slides smoothly */
@keyframes slideHint {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 1; }
    50% { transform: translate3d(-15px, 0, 0); opacity: 1; }
}

.story-carousel.first-view .carousel-slide.active {
    animation: slideHint 2s ease-in-out 1s;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate3d(0, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Carousel Controls - Flexbox layout */
.carousel-controls {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
}

.carousel-indicators {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.carousel-nav {
    position: relative;
    background: var(--deep-purple);
    border: 2px solid var(--deep-purple);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: #7851A9;
    transform: scale(1.15);
    border-color: #7851A9;
    box-shadow: 0 4px 12px rgba(100, 78, 124, 0.3);
}

.carousel-nav:focus {
    outline: none;
}

.carousel-nav:active {
    transform: scale(1.05);
}

.carousel-dot {
    display: none;
}

/* .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(100, 78, 124, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.carousel-dot.active {
    background: var(--deep-purple);
    width: 12px;
    height: 12px;
    z-index: 5;
} */

.carousel-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--deep-purple);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .story-text {
        font-size: 1rem;
    }
    
    .suspense-text {
        font-size: 1.4rem !important;
        padding: 2rem 0;
    }
    
    .carousel-controls {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
