        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #FFF5E6;
            --bg-secondary: #FFE4CC;
            --text-primary: #5D4037;
            --text-secondary: #8D6E63;
            --accent-primary: #FF8A65;
            --accent-secondary: #FFAB91;
            --accent-warm: #FFA726;
            --card-bg: #FFFFFF;
            --shadow: rgba(255, 138, 101, 0.15);
        }

        [data-theme="dark"] {
            --bg-primary: #2C1810;
            --bg-secondary: #3E2723;
            --text-primary: #FFCCBC;
            --text-secondary: #BCAAA4;
            --accent-primary: #FF8A65;
            --accent-secondary: #FFAB91;
            --accent-warm: #FFB74D;
            --card-bg: #4E342E;
            --shadow: rgba(0, 0, 0, 0.3);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            transition: all 0.3s ease;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 20px var(--shadow);
            transition: all 0.3s ease;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .nav-brand:hover {
            transform: scale(1.03);
        }

        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 4px 15px var(--shadow);
            border: 3px solid var(--accent-primary); /* contour dans la DA du site */
        }

        .brand-text h1 {
            font-size: 1.3rem;
            color: var(--accent-primary);
            font-weight: 700;
        }

        .brand-text p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-primary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-menu a:hover {
            color: var(--accent-primary);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .theme-btn {
            background: var(--accent-primary);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--shadow);
        }

        .theme-btn:hover {
            transform: scale(1.1);
            background: var(--accent-warm);
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background: var(--accent-primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .burger.active div:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger.active div:nth-child(2) {
            opacity: 0;
        }

        .burger.active div:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-primary);
            padding: 140px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
            opacity: 0.15;
            top: -100px;
            right: -100px;
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent-warm) 0%, transparent 70%);
            opacity: 0.1;
            bottom: -50px;
            left: -50px;
            border-radius: 50%;
        }

        .hero-content {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-text .highlight {
            color: var(--accent-primary);
            position: relative;
        }

        .hero-text p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-warm));
            color: white;
            box-shadow: 0 8px 25px var(--shadow);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px var(--shadow);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--accent-primary);
        }

        .btn-secondary:hover {
            background: var(--accent-primary);
            color: white;
        }

        .hero-image {
            position: relative;
        }

        .hero-visual {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-warm) 100%);
            border-radius: 30px;
            box-shadow: 0 20px 60px var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 20px,
                    rgba(255, 255, 255, 0.05) 20px,
                    rgba(255, 255, 255, 0.05) 40px
            );
        }

        .visual-text {
            font-size: 2.5rem;
            font-weight: 600;
            color: white;
            text-align: center;
            z-index: 1;
            padding: 2rem;
        }

        /* Stats Section */
        .stats {
            background: var(--bg-secondary);
            padding: 4rem 5%;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stat-card {
            text-align: center;
        }

        .stat-card h3 {
            font-size: 3rem;
            color: var(--accent-primary);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-card p {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
        }

        /* Services Section */
        .services {
            padding: 6rem 5%;
            background: var(--bg-primary);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .services-grid-full {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.4s ease;
            border-left: 4px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px var(--shadow);
            border-left-color: var(--accent-primary);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent-warm));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px var(--shadow);
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .service-card h4 {
            font-size: 0.9rem;
            color: var(--accent-primary);
            margin-bottom: 0.4rem;
            font-weight: 500;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 5%;
            background: var(--bg-secondary);
        }

        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .price-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .price-card.featured {
            border-color: var(--accent-primary);
            transform: scale(1.05);
        }

        .price-card.featured::before {
            content: 'Populaire';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-primary);
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px var(--shadow);
        }

        .price-card.featured:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .price-card h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-primary);
            margin: 1rem 0;
        }

        .price-card > p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .price-card ul {
            list-style: none;
            margin: 1.5rem 0;
        }

        .price-card ul li {
            padding: 0.6rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.95rem;
        }

        .price-card ul li::before {
            content: '✓';
            color: var(--accent-primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* About Section */
        .about {
            padding: 6rem 5%;
            background: var(--bg-primary);
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--card-bg);
            padding: 3.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px var(--shadow);
        }

        .about-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .about-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent-warm));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 25px var(--shadow);
        }

        .about-content h3 {
            text-align: center;
            font-size: 2rem;
            color: var(--accent-primary);
            margin-bottom: 2.5rem;
            font-weight: 600;
        }

        .about-content p {
            color: var(--text-secondary);
            line-height: 1.9;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        .commitments {
            background: var(--bg-secondary);
            padding: 2.5rem;
            border-radius: 20px;
            margin-top: 2.5rem;
        }

        .commitments h4 {
            color: var(--accent-primary);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .commitments ul {
            list-style: none;
        }

        .commitments ul li {
            padding: 0.8rem 0;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1rem;
        }

        .commitments ul li::before {
            content: '✓';
            color: var(--accent-primary);
            font-weight: bold;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Gallery Section */
        .gallery {
            padding: 6rem 5%;
            background: var(--bg-secondary);
        }

        .gallery-intro {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .gallery-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            aspect-ratio: 1;
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px var(--shadow);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(93, 64, 55, 0.9), transparent);
            color: white;
            padding: 1.5rem 1rem 1rem;
            font-weight: 500;
            font-size: 1rem;
            text-align: center;
        }

        .gallery-note {
            text-align: center;
            margin-top: 3rem;
            color: var(--text-secondary);
            font-size: 1rem;
            font-style: italic;
        }

        /* Contact Section */
        .contact {
            padding: 4rem 0;
            background: var(--bg-secondary);
        }

        .contact-content {
            max-width: 100%;
            margin: 0;
            background: var(--bg-secondary);
            padding: 2.5rem 5%;
            border-radius: 0;
            box-shadow: none;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .contact-header p {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--shadow);
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px var(--shadow);
        }

        .contact-item h4 {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--accent-primary);
        }

        .contact-item p {
            font-size: 0.95rem;
            color: var(--text-primary);
            font-weight: 500;
        }

        /* Footer */
        footer {
            background: var(--card-bg);
            color: var(--text-secondary);
            padding: 2.5rem 5%;
            text-align: center;
            box-shadow: 0 -4px 20px var(--shadow);
        }

        footer p {
            font-size: 0.95rem;
        }

        footer a {
            color: var(--accent-primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--accent-warm);
        }

        /* Page System */
        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid-full {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .burger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                right: -100%;
                top: 85px;
                flex-direction: column;
                background: var(--card-bg);
                width: 70%;
                max-width: 300px;
                height: calc(100vh - 85px);
                padding: 2rem;
                box-shadow: -5px 0 20px var(--shadow);
                transition: right 0.4s ease;
                align-items: flex-start;
                overflow-y: auto;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu a {
                font-size: 1.1rem;
                width: 100%;
                display: block;
                padding: 0.8rem 0;
            }

            .theme-btn {
                width: 180%;
                border-radius: 25px;
            }

            .hero {
                padding: 120px 5% 60px;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .hero-visual {
                height: 350px;
            }

            .visual-text {
                font-size: 1.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .services, .pricing, .about, .gallery, .contact {
                padding: 4rem 5%;
            }

            .services-grid, .pricing-grid, .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .services-grid-full {
                grid-template-columns: 1fr;
            }

            .brand-text p {
                display: none;
            }

            .contact {
                padding: 3rem 0;
            }

            .contact-content {
                padding: 2rem 5%;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem 4%;
            }

            .brand-text h1 {
                font-size: 1.1rem;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .price {
                font-size: 2.5rem;
            }

            .service-icon, .gallery-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Selection */
        ::selection {
            background: var(--accent-primary);
            color: white;
        }

        /* Logos Labels */
.label-logo {
    position: absolute;
    width: 140px;
    height: auto;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.label-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.label-left {
    bottom: 10px;
    left: 10px;
}

.label-right {
    bottom: 10px;
    right: 10px;
}

/* Responsive ajustement */
@media (max-width: 768px) {
    .label-logo {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .label-logo {
        width: 55px;
        opacity: 0.8;
    }
}

/* Lightbox plein écran */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

/* --- Galerie d'avis --- */
.avis-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.avis-image {
  width: 280px;           /* 🔹 largeur uniforme */
  height: auto;           /* 🔹 garde la hauteur d’origine */
  border-radius: 20px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  object-fit: contain;    /* 🔹 pas de recadrage, garde le ratio naturel */
  background-color: white; /* 🔹 pour les captures avec fond transparent éventuel */
}

.avis-image:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px var(--shadow);
}

/* --- Responsive (mobile/tablette) --- */
@media (max-width: 768px) {
  .avis-image {
    width: 90%;
  }
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-lightbox:hover {
  transform: scale(1.2);
}

/* Animation d’apparition */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Photo "À propos" --- */
.about-photo-container {
  margin-top: 2rem;
  text-align: center;
}

.about-photo {
  width: 180px; /* taille de la photo */
  height: 180px;
  border-radius: 50%; /* cercle parfait */
  object-fit: cover; /* garde les proportions naturelles */
  border: 5px solid var(--accent-primary); /* contour dans la DA du site */
  box-shadow: 0 5px 15px var(--shadow); /* légère ombre douce */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px var(--shadow);
}

/* --- FOOTER --- */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 2px solid var(--accent-primary);
}

/* --- Zone gauche --- */
.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* Colonne de liens */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-left a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-left a:hover {
  color: var(--accent-secondary);
}

/* --- Zone centrale --- */
.footer-center {
  flex: 1;
  text-align: center;
}

/* --- Zone droite (réseaux sociaux) --- */
.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-center {
    order: 3;
  }

}
