/*
 * Styling voor de POP360 Quotes Carousel Elementor widget
 * Nu exact zoals de bovenste custom quote-stijl
 */

.pop360-quotes-carousel {
    height: 40vh;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.quote-slide {
    position: absolute;
    height: 40vh;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s;
    display: flex;
    z-index: 1;
    border-radius: 32px;
    width: 100%;
}

.quote-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Donkere overlay zoals bovenste quote */
.quote-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    border-radius: 32px;
}

.quote-content {
    z-index: 3;
    color: #fff;
    padding: 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Rethink Sans', sans-serif;
}

.quote-description {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 400;
}

.quote-meta {
    font-weight: 700;
    font-size: 1.6em;
    color: #fff;
    text-align: right;
    margin-left: auto;
}

/* Carousel knoppen standaard verbergen */
.carousel-prev, .carousel-next {
    display: none;
}

/* Carousel navigatie pijlen - verplaatst van inline CSS */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    z-index: 5;
}

.carousel-arrow span {
    font-size: 2rem;
    line-height: 1;
    color: #333;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel dots navigatie - verplaatst van inline CSS */
.pop360-quotes-carousel-dots {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f04c4cb3;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: #228bf4;
}

@media (max-width: 900px) {
    .pop360-quotes-carousel {
        border-radius: 18px;
        height: 50vh; /* Verhoog minimale hoogte voor mobiel */
    }
    .quote-slide {
        height: 50vh; /* Zorg dat slides ook hoger worden */
    }
    .quote-content {
        padding: 6%;
        font-size: 1.1rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .quote-description {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    .quote-meta {
        font-size: 1.2em;
        text-align: center;
        margin-left: 0;
    }
}

/* Extra kleine schermen */
@media (max-width: 600px) {
    .pop360-quotes-carousel {
        height: 70vh;
    }
    .quote-slide {
        height: 70vh;
    }
    .quote-content {
        padding: 6%;
        font-size: 1.2rem;
    }
    .quote-description {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    .quote-meta {
        font-size: 1.3em;
    }
}

