/* Index.php - Testimonials Section Stilleri */

/* Testimonials Section Container */
.testimonials-section {
    max-width: 1200px;
    margin: 3rem auto;
}

/* Testimonials Section Title */
.testimonials-section .section-title {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}



/* No Reviews Message */
.testimonials-section > div:first-of-type {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.testimonials-section > div:first-of-type i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* View All Reviews Button */
.testimonials-section > div:last-of-type {
    text-align: center;
    margin-top: 2rem;
}

.testimonials-section .btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.testimonials-section .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section {
        margin: 2rem auto;
    }
    
    .testimonials-section .section-title {
        font-size: 3rem;
    }
    
    .testimonials-section > div:first-of-type {
        padding: 2rem;
    }
    
    .testimonials-section .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        margin: 1rem auto;
    }
    
    .testimonials-section .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-section > div:first-of-type {
        padding: 1.5rem;
    }
    
    .testimonials-section > div:first-of-type i {
        font-size: 2.5rem;
    }
}
