/* Additional CSS for referenties page */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/referenties-header.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.testimonials-content {
    padding: 60px 0;
}

.testimonials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonials-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

.testimonial-meta {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-company,
.testimonial-location {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.testimonial-rating {
    margin-top: 10px;
    color: gold;
}

.add-testimonial-section {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.add-testimonial-container {
    max-width: 600px;
    margin: 0 auto;
}

.add-testimonial-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.add-testimonial-container p {
    margin-bottom: 25px;
    color: var(--gray-color);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .testimonials-intro h2 {
        font-size: 2rem;
    }

    .add-testimonial-section {
        padding: 30px;
    }
}
