/* ===== TESTIMONIALS SECTION STYLES ===== */

/* Couleurs */
.bg-sand {
    background-color: var(--sand);
}

.text-grey-medium {
    color: var(--grey-medium);
}

.hover\:text-charcoal:hover {
    color: var(--charcoal);
}

.text-sage {
    color: #769984;
}

/* Animations initiales - éléments cachés */
.testimonials-title,
.testimonials-container {
    opacity: 0;
    transform: translateY(30px);
}

.testimonials-container {
    transform: translateY(50px);
}

/* Classes d'animation */
.animate-title {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-container {
    animation: fadeInUp 1.2s ease-out 0.2s forwards;
}

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility classes */
.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-light {
    font-weight: 300;
}

.text-center {
    text-align: center;
}

.mb-24 {
    margin-bottom: 6rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.grid {
    display: grid;
}

.gap-16 {
    gap: 4rem;
}

.transform {
    transform: translateZ(0);
}

.transition-all {
    transition-property: all;
}

.duration-500 {
    transition-duration: 500ms;
}

.rounded-full {
    border-radius: 9999px;
}

.object-cover {
    object-fit: cover;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.leading-relaxed {
    line-height: 1.625;
}

.italic {
    font-style: italic;
}

.overflow-hidden {
    overflow: hidden;
}

/* Hover effects */
.testimonial-item:hover {
    transform: scale(1.05) translateY(-0.5rem);
}

.testimonial-item:hover p {
    color: var(--charcoal);
}

/* Responsive */
@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Image styling */
.testimonial-item img {
    width: 80px;
    height: 80px;
}
