/* Review Section Styling */
.review-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 6rem;
}

.review-content {
    position: relative;
}

.review-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.review-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
}

.review-text {
    color: white;
    text-align: center;
    font-family: "Cormorant Garamond" !important;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2rem;
    width: 100%;
}

.review-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto 2rem auto;
}

.review-rating {
    margin-bottom: 0.5rem;
    text-align: center;
}

.star {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 0 0.2rem;
}

.review-author {
    text-align: center;
}

.author-name {
    font-family: 'Afacud Flare', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.author-title {
    font-family: 'Afacud Flare', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 2px solid white;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 10;
}

.review-nav:hover {
    background-color: white;
    color: #2a2a2a !important;
}

.review-nav:hover svg {
    fill: none;
}

.review-nav:hover svg path {
    stroke: #2a2a2a !important;
    stroke-width: 2 !important;
}

.review-prev {
    left: 0;
}

.review-next {
    right: 0;
}

#wrapper .post-content blockquote, .comment-text blockquote, .fusion-body blockquote, .fusion-pagination .current, .fusion-pagination .page-numbers.current, .pagination .current, .progress-bar-content {
    border:none;
    background: none;
    color: white;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    font-style: italic;
    text-align: justify;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .review-container {
        padding: 0 5rem;
    }
    
    .review-text {
        font-size: 26px;
    }
    
    .review-nav {
        width: 60px;
        height: 60px;
    }
}

/* Desktop - Navigatie buiten review-content */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: flex !important;
    }
    
    .review-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: auto;
    }
    
    .review-prev {
        left: 0;
    }
    
    .review-next {
        right: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .review-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .review-text {
        font-size: 18px !important;
        line-height: 1.3;
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .review-nav {
        width: 45px;
        height: 45px;
        position: static;
        transform: none;
        margin: 0;
        display: inline-flex;
    }
    
    .review-prev {
        left: auto;
        margin-right: 1rem;
    }
    
    .review-next {
        right: auto;
        margin-left: 0;
    }
    
    /* Container voor navigatie-icoontjes */
    .review-nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .star {
        font-size: 1.5rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .review-container {
        padding: 0 0.5rem;
    }
    
    .review-text {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .review-nav {
        width: 40px;
        height: 40px;
        position: static;
        transform: none;
        margin: 0;
        display: inline-flex;
    }
    
    .review-prev {
        left: auto;
        margin-right: 0.75rem;
    }
    
    .review-next {
        right: auto;
        margin-left: 0;
    }
    
    /* Container voor navigatie-icoontjes */
    .review-nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
    
    .star {
        font-size: 1.3rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
} 