/* =============================================
   LE COIFFEUR DU PASSAGE - PAGE À PROPOS CSS
   ============================================= */

/* =============================================
   HERO À PROPOS
   ============================================= */
.apropos-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('images/apropos-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.apropos-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.apropos-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    padding-top: 140px;
    max-width: 900px;
    margin-bottom: 2rem;
}

/* =============================================
   BANDEAU DE PHOTOS DÉFILANT
   ============================================= */
.hero-gallery-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
}

.hero-gallery-wrapper::before,
.hero-gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-gallery-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero-gallery-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero-gallery-track {
    display: flex;
    gap: 1rem;
    animation: scrollGallery 20s linear infinite;
    width: max-content;
}

.hero-gallery-track:hover {
    animation-play-state: paused;
}

.hero-gallery-slide {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-gallery-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.hero-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-gallery-slide:hover img {
    transform: scale(1.1);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-scroll-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    margin-top: 1rem;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
}

.apropos-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.apropos-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-scroll-indicator svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Header pour page à propos */
.header-apropos {
    background-color: transparent;
}

.header-apropos.scrolled {
    background-color: var(--color-white);
}

/* =============================================
   SECTION INTRODUCTION
   ============================================= */
.intro-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-white);
    overflow: hidden;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.intro-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background-color: var(--color-primary);
    opacity: 0.2;
    border-radius: 20px;
    z-index: -1;
}

.intro-content {
    padding-left: 2rem;
}

.intro-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.2;
    margin: 0.75rem 0 1.5rem;
}

.intro-title em {
    color: var(--color-primary);
    font-style: italic;
}

.intro-text {
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.intro-text strong {
    color: var(--color-secondary);
}

.intro-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.signature-line {
    width: 60px;
    height: 2px;
    background-color: var(--color-primary);
}

.intro-signature span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-secondary);
}

/* =============================================
   SECTION LE LIEU
   ============================================= */
.lieu-section {
    position: relative;
    padding: var(--spacing-xl) 2rem;
    min-height: 700px;
}

.lieu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/passage-jouffroy.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.lieu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

.lieu-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.lieu-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label.light {
    color: var(--color-primary);
}

.section-title.light {
    color: var(--color-white);
}

.lieu-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.lieu-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.lieu-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lieu-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 3px solid var(--color-primary);
    transition: var(--transition-normal);
}

.lieu-feature:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.lieu-feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.lieu-feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.lieu-feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.lieu-quote {
    display: flex;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 20px;
    height: 100%;
}

.lieu-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.6;
    text-align: center;
}

/* =============================================
   SECTION VALEURS
   ============================================= */
.valeurs-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-cream);
}

.valeurs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.valeurs-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.valeurs-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.valeur-card {
    position: relative;
    background-color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
}

.valeur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.valeur-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.valeur-card:hover::before {
    transform: scaleX(1);
}

.valeur-card.featured {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2d2d2d 100%);
}

.valeur-card.featured::before {
    transform: scaleX(1);
}

.valeur-card.featured .valeur-number,
.valeur-card.featured .valeur-title,
.valeur-card.featured .valeur-text {
    color: var(--color-white);
}

.valeur-card.featured .valeur-icon {
    color: var(--color-primary);
}

.valeur-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-cream);
    opacity: 0.5;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.valeur-icon {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.valeur-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.valeur-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-accent);
}

/* =============================================
   SECTION EXPÉRIENCE
   ============================================= */
.experience-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-white);
    overflow: hidden;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.2;
    margin: 0.75rem 0 1.5rem;
}

.experience-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    font-size: 1rem;
    color: var(--color-secondary);
    border-bottom: 1px solid var(--color-cream);
}

.experience-list li:last-child {
    border-bottom: none;
}

.experience-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.experience-images {
    position: relative;
    height: 550px;
}

.experience-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.experience-image:hover {
    transform: scale(1.03);
    z-index: 10;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-image-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 3;
}

.experience-image-2 {
    width: 240px;
    height: 300px;
    top: 50px;
    right: 20px;
    z-index: 2;
}

.experience-image-3 {
    width: 220px;
    height: 250px;
    bottom: 0;
    left: 100px;
    z-index: 1;
}

/* =============================================
   SECTION CHIFFRES
   ============================================= */
.chiffres-section {
    padding: var(--spacing-lg) 2rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #2d2d2d 100%);
}

.chiffres-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.chiffre-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.chiffre-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    display: inline;
}

.chiffre-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-primary);
}

.chiffre-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.chiffre-separator {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* =============================================
   SECTION TÉMOIGNAGES
   ============================================= */
.temoignages-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-cream);
}

.temoignages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.temoignages-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.temoignages-subtitle {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 1rem;
}

/* Widget Elfsight */
.elfsight-reviews-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Personnalisation du widget Elfsight si nécessaire */
.elfsight-reviews-wrapper [class*="elfsight"] {
    font-family: var(--font-body) !important;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.temoignage-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.temoignage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.temoignage-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.temoignage-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-accent);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-cream);
}

.temoignage-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

.temoignage-name {
    display: block;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.temoignage-date {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* =============================================
   GOOGLE REVIEWS STYLES
   ============================================= */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-white);
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.temoignage-avatar.has-photo {
    padding: 0;
    overflow: hidden;
}

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

.google-review {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.temoignage-date svg {
    vertical-align: middle;
}

/* =============================================
   RESPONSIVE - TABLETTE
   ============================================= */
@media (max-width: 1024px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .intro-content {
        padding-left: 0;
    }
    
    .intro-image img {
        height: 450px;
    }
    
    .intro-image-accent {
        display: none;
    }
    
    .lieu-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .lieu-quote {
        padding: 2rem;
    }
    
    .lieu-quote blockquote {
        font-size: 1.25rem;
    }
    
    .valeurs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .experience-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .experience-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .experience-image-1 {
        width: 220px;
        height: 280px;
    }
    
    .experience-image-2 {
        width: 180px;
        height: 230px;
        right: 0;
    }
    
    .experience-image-3 {
        width: 160px;
        height: 200px;
        left: 60px;
    }
    
    .temoignages-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    .apropos-hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 2rem;
        background-attachment: scroll;
    }
    
    .apropos-hero-content {
        margin-bottom: 1.5rem;
    }
    
    .apropos-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    /* Bandeau photos responsive */
    .hero-gallery-wrapper {
        padding: 1rem 0;
    }
    
    .hero-gallery-wrapper::before,
    .hero-gallery-wrapper::after {
        width: 50px;
    }
    
    .hero-gallery-slide {
        width: 200px;
        height: 150px;
        border-radius: 10px;
    }
    
    .hero-gallery-track {
        animation-duration: 15s;
    }
    
    .intro-section {
        padding: var(--spacing-lg) 1rem;
    }
    
    .intro-image img {
        height: 350px;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .lieu-section {
        padding: var(--spacing-lg) 1rem;
        min-height: auto;
    }
    
    .lieu-background {
        background-attachment: scroll;
    }
    
    .lieu-feature {
        padding: 1.25rem;
    }
    
    .lieu-quote {
        padding: 1.5rem;
    }
    
    .lieu-quote blockquote {
        font-size: 1.1rem;
    }
    
    .valeurs-section {
        padding: var(--spacing-lg) 1rem;
    }
    
    .valeur-card {
        padding: 2.5rem 1.5rem;
    }
    
    .experience-section {
        padding: var(--spacing-lg) 1rem;
    }
    
    .experience-images {
        height: 350px;
    }
    
    .experience-image-1 {
        width: 180px;
        height: 230px;
    }
    
    .experience-image-2 {
        width: 150px;
        height: 190px;
    }
    
    .experience-image-3 {
        width: 140px;
        height: 170px;
        left: 40px;
    }
    
    .chiffres-section {
        padding: var(--spacing-md) 1rem;
    }
    
    .chiffres-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .chiffre-separator {
        width: 60px;
        height: 1px;
    }
    
    .temoignages-section {
        padding: var(--spacing-lg) 1rem;
    }
    
    .elfsight-reviews-wrapper {
        padding: 0.5rem 0;
    }
    
    .temoignage-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .apropos-hero {
        padding-top: 100px;
    }
    
    .apropos-hero-title {
        font-size: 2rem;
    }
    
    /* Bandeau photos très petit écran */
    .hero-gallery-slide {
        width: 160px;
        height: 120px;
    }
    
    .hero-gallery-track {
        gap: 0.75rem;
        animation-duration: 12s;
    }
    
    .hero-gallery-wrapper::before,
    .hero-gallery-wrapper::after {
        width: 30px;
    }
    
    .intro-image img {
        height: 280px;
    }
    
    .lieu-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .lieu-feature-icon {
        margin: 0 auto;
    }
    
    .experience-images {
        height: 300px;
    }
    
    .experience-image-1 {
        width: 150px;
        height: 200px;
    }
    
    .experience-image-2 {
        width: 130px;
        height: 170px;
        top: 30px;
    }
    
    .experience-image-3 {
        width: 120px;
        height: 150px;
        left: 30px;
    }
}
