/* =========================================
   1. CONFIGURATION GLOBALE & RESET
   ========================================= */
   :root {
    --primary-color: #e91e63; /* Rose CTA */
    --secondary-color: #2c3e50; /* Bleu Nuit Texte */
    --bg-light: #f9f9f9;
    --text-color: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
}

/* Classe utilitaire pour centrer */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Titres de section globaux */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Header de page interne (Contact, Prestations...) */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* =========================================
   2. NAVBAR (HEADER)
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 0 50px;
    height: 80px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#logo a {
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

#logo a:hover .logo-img {
    opacity: 0.8;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-list a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.menu-list a:hover,
.menu-list a.active {
    color: var(--primary-color);
}

/* Bouton CTA dans le menu */
.menu-list a.btn-cta {
    background-color: var(--primary-color);
    color: white !important; /* Force le blanc même si active */
    padding: 10px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.menu-list a.btn-cta:hover {
    background-color: #c2185b;
    transform: scale(1.05);
}

/* =========================================
   3. PAGE D'ACCUEIL (HOME)
   ========================================= */
.hero {
    height: 80vh;
    /* Assurez-vous que l'image existe ou changez le chemin */
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, background 0.3s;
}

.btn-hero:hover {
    transform: scale(1.05);
    background-color: #c2185b;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    flex-wrap: wrap;
    text-align: center;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.feature-box .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cartes Services Accueil */
.services-preview { padding: 60px 20px; }
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 20px; }
.btn-text {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

/* Shop Teaser Accueil */
.shop-teaser { background-color: #fff0f5; padding: 80px 20px; }
.subtitle { text-align: center; margin-bottom: 40px; margin-top: -30px; color: #777; }
.product-card { background: white; padding: 20px; text-align: center; border-radius: 8px; position: relative; }
.product-card img { max-width: 100%; height: 150px; object-fit: contain; margin-bottom: 15px; }
.product-card .price { color: var(--primary-color); font-size: 1.2rem; font-weight: bold; margin: 10px 0; }
.badge { position: absolute; top: 10px; right: 10px; background: var(--secondary-color); color: white; padding: 5px 10px; font-size: 0.8rem; border-radius: 4px; }
.btn-small { display: inline-block; border: 1px solid var(--primary-color); color: var(--primary-color); padding: 8px 20px; text-decoration: none; border-radius: 20px; transition: all 0.3s; }
.btn-small:hover { background: var(--primary-color); color: white; }
.center-btn { text-align: center; margin-top: 50px; }
.btn-secondary { background: transparent; border: 2px solid var(--secondary-color); color: var(--secondary-color); padding: 12px 30px; text-decoration: none; font-weight: bold; transition: 0.3s; }
.btn-secondary:hover { background: var(--secondary-color); color: white; }

/* Avis Clients */
.reviews { padding: 80px 20px; text-align: center; }
.reviews-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.review-box { background: white; padding: 30px; border-left: 4px solid var(--primary-color); box-shadow: 0 4px 10px rgba(0,0,0,0.05); max-width: 400px; }
.review-box span { display: block; margin-top: 15px; font-weight: bold; color: var(--secondary-color); }

/* =========================================
   4. PAGE CONTACT
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 80px 20px;
}

.info-card { margin-bottom: 30px; }
.info-card h3, .hours-card h3 { color: var(--primary-color); border-bottom: 2px solid #eee; padding-bottom: 10px; margin-bottom: 15px; font-size: 1.3rem; }
.small-text { font-size: 0.9rem; color: #666; margin-top: 5px; }
.btn-outline { display: inline-block; margin-top: 10px; padding: 8px 15px; border: 1px solid var(--secondary-color); color: var(--secondary-color); text-decoration: none; border-radius: 4px; font-size: 0.9rem; transition: 0.3s; }
.btn-outline:hover { background-color: var(--secondary-color); color: white; }
.phone-number a { font-size: 1.4rem; font-weight: bold; color: var(--secondary-color); text-decoration: none; }

.highlight-box { background-color: #fff0f5; padding: 20px; border-radius: 8px; border-left: 4px solid var(--primary-color); }
.check-list { list-style: none; padding: 0; margin-top: 10px; }
.check-list li::before { content: '✔'; color: var(--primary-color); margin-right: 10px; }

.hours-card table { width: 100%; border-collapse: collapse; }
.hours-card td { padding: 8px 0; border-bottom: 1px solid #eee; }
.night-hours { color: var(--secondary-color); font-weight: bold; padding-top: 15px !important; border-bottom: none !important; }
.alert-text { background: #eee; display: inline-block; padding: 5px 10px; border-radius: 4px; font-size: 0.85rem; font-weight: bold; margin-bottom: 15px; }

.social-icons { display: flex; gap: 15px; }
.social-btn { padding: 10px 20px; border-radius: 5px; text-decoration: none; color: white; font-weight: bold; font-size: 0.9rem; }
.facebook { background-color: #3b5998; }
.instagram { background-color: #C13584; }

.contact-form-container { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.radiance-form label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary-color); }
.radiance-form input, .radiance-form select, .radiance-form textarea { width: 100%; padding: 12px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; font-size: 1rem; transition: border 0.3s; }
.radiance-form input:focus, .radiance-form textarea:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1); }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
.btn-submit { background-color: var(--primary-color); color: white; border: none; padding: 15px 30px; font-size: 1.1rem; font-weight: bold; border-radius: 50px; cursor: pointer; width: 100%; transition: background 0.3s; }
.btn-submit:hover { background-color: #c2185b; }

.map-section { line-height: 0; filter: grayscale(100%); transition: filter 0.5s; }
.map-section:hover { filter: grayscale(0%); }

/* =========================================
   5. PAGE PRESTATIONS
   ========================================= */
.info-bar {
    background-color: #fff0f5;
    color: var(--secondary-color);
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    flex-wrap: wrap;
    position: sticky;
    top: 80px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 900;
    border-bottom: 1px solid #eee;
}

.category-nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.category-nav a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prices-wrapper {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.price-category {
    margin-bottom: 80px;
    scroll-margin-top: 150px;
}

.category-header { text-align: center; margin-bottom: 40px; }
.category-icon { font-size: 3rem; display: block; margin-bottom: 10px; }
.category-header h2 { font-size: 2.2rem; color: var(--secondary-color); margin-bottom: 10px; }
.category-header p { color: #777; font-style: italic; }

.sub-category-title {
    color: var(--primary-color);
    margin: 30px 0 15px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.price-list { list-style: none; }
.price-list li { margin-bottom: 15px; }

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.price-row .name {
    font-weight: 600;
    color: #333;
    padding-right: 10px;
    position: relative;
    background: white;
    z-index: 2;
}

.price-row .name small {
    font-weight: normal;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

.price-row .dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 5px;
    position: relative;
    top: -5px;
    opacity: 0.5;
}

.price-row .price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding-left: 10px;
    background: white;
    z-index: 2;
    min-width: 50px;
    text-align: right;
}

.description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 2px solid #eee;
    line-height: 1.4;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cta-section {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
}

.cta-section h2 { color: white; margin-bottom: 10px; }
.cta-section p { margin-bottom: 30px; color: #ddd; }

/* =========================================
   6. FOOTER
   ========================================= */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding-top: 40px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-section p { line-height: 1.6; margin-bottom: 10px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section a { color: #ecf0f1; text-decoration: none; transition: color 0.3s; }
.footer-section a:hover { color: var(--primary-color); padding-left: 5px; }

.footer-bottom {
    background-color: #1a252f;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}
.footer-bottom a { color: #bdc3c7; text-decoration: none; }

/* =========================================
   7. RESPONSIVE (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar { padding: 0 20px; }
    .menu-list { display: none; } /* Pour l'instant on cache le menu sur mobile (ou faire un burger menu plus tard) */
    
    /* Layouts */
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-form-container { padding: 20px; }
    .grid-2-cols { grid-template-columns: 1fr; gap: 0; }
    
    /* Prestations Mobile */
    .price-row .name { max-width: 70%; }
    .category-nav { overflow-x: auto; white-space: nowrap; justify-content: flex-start; }
}

/* --- PAGE GALERIE --- */

.gallery-wrapper {
    padding: 60px 20px;
}

/* 1. Les boutons de filtres */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 2. La Grille */
.gallery-grid {
    display: grid;
    /* Crée autant de colonnes que possible de 300px min */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    /* Animation d'apparition pour les filtres */
    animation: fadeIn 0.5s ease;
}

/* Force toutes les images à être carrées et nettes */
.gallery-item img {
    width: 100%;
    height: 300px; /* Hauteur fixe pour l'alignement */
    object-fit: cover; /* Coupe l'image proprement sans déformer */
    transition: transform 0.5s ease;
    display: block;
}

/* Effet Zoom au survol */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* L'Overlay (Texte qui apparait au survol) */
.overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); /* Dégradé noir */
    color: #f1f1f1;
    width: 100%;
    height: 100%;
    opacity: 0; /* Caché par défaut */
    transition: .5s ease;
    display: flex;
    align-items: flex-end; /* Texte en bas */
    justify-content: center;
    padding-bottom: 20px;
}

.gallery-item:hover .overlay {
    opacity: 1; /* Visible au survol */
}

.text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Classes pour cacher/montrer les éléments (Javascript) */
.gallery-item.hide {
    display: none;
}
.gallery-item.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --- 3. LA LIGHTBOX (MODALE) --- */
.lightbox {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 2000; /* Au dessus de tout, même du menu */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); /* Fond noir presque opaque */
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh; /* Pour ne pas dépasser la hauteur de l'écran */
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px white;
    animation: zoom 0.4s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Adaptation Mobile pour la Lightbox */
@media only screen and (max-width: 700px){
    .lightbox-content {
        width: 100%;
    }
}

/* --- PAGE GALERIE --- */

.gallery-wrapper {
    padding: 60px 20px;
}

/* 1. Les boutons de filtres */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 2. La Grille */
.gallery-grid {
    display: grid;
    /* Crée autant de colonnes que possible de 300px min */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    /* Animation d'apparition pour les filtres */
    animation: fadeIn 0.5s ease;
}

/* Force toutes les images à être carrées et nettes */
.gallery-item img {
    width: 100%;
    height: 300px; /* Hauteur fixe pour l'alignement */
    object-fit: cover; /* Coupe l'image proprement sans déformer */
    transition: transform 0.5s ease;
    display: block;
}

/* Effet Zoom au survol */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* L'Overlay (Texte qui apparait au survol) */
.overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); /* Dégradé noir */
    color: #f1f1f1;
    width: 100%;
    height: 100%;
    opacity: 0; /* Caché par défaut */
    transition: .5s ease;
    display: flex;
    align-items: flex-end; /* Texte en bas */
    justify-content: center;
    padding-bottom: 20px;
}

.gallery-item:hover .overlay {
    opacity: 1; /* Visible au survol */
}

.text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Classes pour cacher/montrer les éléments (Javascript) */
.gallery-item.hide {
    display: none;
}
.gallery-item.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --- 3. LA LIGHTBOX (MODALE) --- */
.lightbox {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 2000; /* Au dessus de tout, même du menu */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); /* Fond noir presque opaque */
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh; /* Pour ne pas dépasser la hauteur de l'écran */
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px white;
    animation: zoom 0.4s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Adaptation Mobile pour la Lightbox */
@media only screen and (max-width: 700px){
    .lightbox-content {
        width: 100%;
    }
}

/* --- PAGE A PROPOS (LE SALON) --- */

/* Section Histoire (Texte + Image) */
.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #666;
    text-align: justify;
}

.section-title-left {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    /* Ligne rose alignée à gauche cette fois */
}

.section-title-left::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
}

/* Grille de stats (10 ans, 1000 clients...) */
.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-item .label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image avec décoration */
.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

/* Le petit cadre décale derrière l'image pour le style */
.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: 1;
}

/* Section Équipe */
.team-section {
    background-color: #fff0f5; /* Rose très pâle */
    padding: 80px 20px;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.team-member {
    max-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-member .role {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-member p {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* Section Valeurs (Engagements) */
.values-section {
    display: flex;
    justify-content: space-between;
    padding: 80px 20px;
    gap: 30px;
    text-align: center;
}

.value-box {
    flex: 1;
    padding: 20px;
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.value-box h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column; /* Empile le texte et l'image */
        gap: 40px;
    }

    .image-decoration {
        display: none; /* On cache la déco sur mobile pour simplifier */
    }

    .values-section {
        flex-direction: column;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-outline-light {
        margin-left: 0 !important; /* Reset de la marge inline */
    }
}