/**
 * Biblical Quote Carousel Styles
 */

.biblical-quotes {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.quote-carousel {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.quote-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.quote-slide blockquote {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 4px solid rgba(255, 215, 0, 0.8);
    padding: 2rem 2.5rem;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.quote-slide blockquote p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #fff;
    font-style: italic;
    margin: 0 0 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.quote-slide blockquote cite {
    display: block;
    font-size: 1rem;
    color: rgba(255, 215, 0, 0.9);
    font-style: normal;
    font-weight: 600;
    text-align: right;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: rgba(255, 215, 0, 0.9);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .biblical-quotes {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .quote-slide blockquote {
        padding: 1.5rem;
    }

    .quote-slide blockquote p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .quote-slide blockquote cite {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quote-slide blockquote {
        padding: 1.25rem;
    }

    .quote-slide blockquote p {
        font-size: 1.1rem;
    }

    .quote-slide blockquote cite {
        font-size: 0.85rem;
    }
}
