/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.17.1765422645
Updated: 2025-12-11 04:10:45

*/
@import url('../astra/style.css');

@media (max-width: 767px) {
    .elementor-element-5df5328 {
        background-image: none !important;
    }
}

/* Couleurs de la marque (Variables CSS) */
:root {
  --ds-bg: #578C96;        /* Beige clair */
  --ds-text: #F6E5D3;      /* Bleu foncé */
  --ds-accent: #E98074;    /* Terre cuite */
  --ds-blue-canard: #36666E; /* Bleu Canard */
  --ds-white: #FFFFFF;
}

/* --- Section Générale --- */
.testimonial-section {
  background-color: var(--ds-bg);
  padding: 20px 20px;
  text-align: center;
  font-family: sans-serif; /* Utilisez votre police choisie (ex: 'Montserrat') */
}

.section-title {
  color: var(--ds-text);
  font-size: 2rem;
  margin-bottom: 40px;
}

/* --- Carrousel Structure --- */
.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden; /* CLÉ: Cache les autres slides */
  position: relative; 
}

.carousel-track {
  display: flex; /* CLÉ: Alignement horizontal */
  transition: transform 0.5s ease-in-out;
}

/* --- Carte Témoignage --- */
.testimonial-card {
  width: 100%; /* Utiliser width au lieu de min-width */
  flex-shrink: 0; /* Empêche la carte de rétrécir quand elle est dans le flex container */
  box-sizing: border-box; 
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars {
  color: var(--ds-accent);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ds-text);
  font-style: italic;
  margin-bottom: 25px;
  max-width: 600px;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.info {
  text-align: left;
}

.info strong {
  display: block;
  color: var(--ds-text);
  font-weight: 700;
}

.info span {
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Flèches de Navigation (Nav-Arrow) --- */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ds-white); 
  color: var(--ds-blue-canard);
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  font-size: 1.5rem; /* Taille pour les caractères < et > */
  line-height: 1;
}

.nav-arrow:hover {
  background-color: var(--ds-accent); 
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Responsive pour les petits écrans */
@media (max-width: 600px) {
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
}