
/* === HERO SECTION === */
.hero-section {
    background-color: var(--color-white);
    text-align: center;
    padding: 80px 20px;
    background-image: url('images/acceuil.jpg'); /* remplace avec le vrai chemin */
    background-size: cover;
    background-position: center; /* décalage vers le haut de l’image */
    background-repeat: no-repeat;
    padding: 280px 20px;
    color: var(--color-white); /* on change ça juste après */
    position: relative;
    z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Opacité du filtre noir */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-section h2 {
    font-size: 2.5em;
    color: var(--color-background);
    margin-bottom: 0.5em;
}

.hero-section p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 1.5em auto;
    color: var(--color-primary);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* === PHOTO RECOVERY CTA === */
.photo-recovery-cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 60px 20px;
}

.photo-recovery-cta p {
    font-size: 1.1em;
    margin-bottom: 1em;
    text-align: center;
}

/* === ABOUT PREVIEW === */
.about-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.about-text {
    flex: 1 1 300px;
}

.about-text h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.about-image {
    flex: 1 1 300px;
    text-align: center;
}

.pepe-image {
    max-width: 70%;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pepe-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* === GALLERY PREVIEW === */
.gallery-preview h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 1em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 2em;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

/* === TESTIMONIALS === */
.testimonials-section {
    background-color: var(--color-background);
    padding: 60px 20px;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 2em;
}

.testimonial-card {
    background-color: var(--color-white);
    border-left: 4px solid var(--color-primary);
    padding: 20px;
    margin-bottom: 20px;
    font-style: italic;
}

.cta-final-section {
    background-color: var(--color-primary); /* fond clair identique aux autres sections */
    color: var(--color-white); /* texte foncé */
    text-align: center;
    padding: 80px 20px;
}

/* Titre et paragraphe */
.cta-final-section h2 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    color: var(--color-background);
}

.cta-final-section p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    color: var(--color-white);
}
/* === BOUTONS GÉNÉRIQUES === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 500;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* === VARIANTE PRINCIPALE === */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-heading);
    color: var(--color-white);
}

/* Bouton primaire */
.cta-final-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-text);
    border: none;
}

.cta-final-section .btn-primary:hover {
    background-color: var(--color-heading);
    color: var(--color-white);
    box-shadow: 0 4px 8px rgba(56, 54, 51, 0.3); /* petit relief au survol */
}
/* === VARIANTE SECONDAIRE === */
.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* === VARIANTE TERTIAIRE (CTA récup photos) === */
.btn-tertiary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
}

.btn-tertiary:hover {
    background-color: var(--color-heading);
    color: var(--color-white);
    border-color: var(--color-heading);
}

/* === TAILLE PLUS GRANDE (CTA final) === */
.btn-large {
    font-size: 1.2em;
    padding: 16px 32px;
}

.cta-final-section p {
    text-align: center;
}
