/* ============================================
   GUIDE DE MAINTENANCE - ESKAKI Photo de l'Espoir
   ============================================
   
   COMMENT MODIFIER LE SITE :
   
   1. CHANGER LES COULEURS :
      → Modifiez les variables dans :root (lignes ci-dessous)
      → Toutes les couleurs utilisent ces variables
   
   2. CHANGER LES TAILLES :
      → .section-title : Titres de section
      → .hero-title : Titre principal accueil
      → body : Police de base
   
   3. CHANGER LA LARGEUR :
      → .container max-width: 1200px
      → .nav-container max-width: 1200px
   
   4. AJUSTER LE RESPONSIVE :
      → Media queries commencent vers la ligne 1104
      → Modifiez max-width pour changer les breakpoints
      → 1024px = tablettes, 768px = mobiles, 480px = petits mobiles
   
   5. MODIFIER LES BOUTONS :
      → .btn-primary : Boutons principaux
      → padding pour la taille, border-radius pour les coins
   
   ============================================
   VARIABLES CSS - MODIFIER ICI POUR CHANGER LES COULEURS
   ============================================
   Pour changer les couleurs du site, modifiez les valeurs ci-dessous.
   Toutes les couleurs utilisent ces variables, donc un changement ici
   se répercutera sur tout le site.
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* COULEURS PRINCIPALES - Modifiez ces valeurs pour changer le thème */
    --primary-color: #2c3e50;
    /* Couleur principale (bleu foncé) - Utilisée pour les titres, navbar */
    --secondary-color: #e74c3c;
    /* Couleur secondaire (rouge) - Utilisée pour les boutons, liens actifs */
    --accent-color: #f39c12;
    /* Couleur d'accent (orange) - Utilisée pour les éléments spéciaux */

    /* COULEURS DE TEXTE */
    --text-dark: #2c3e50;
    /* Texte principal foncé */
    --text-light: #7f8c8d;
    /* Texte secondaire/clair */

    /* COULEURS DE FOND */
    --bg-light: #f8f9fa;
    /* Fond clair pour les sections */
    --bg-white: #ffffff;
    /* Fond blanc */

    /* OMBRES - Modifiez pour changer l'intensité des ombres */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Ombre standard */
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
    /* Ombre au survol */

    /* TRANSITIONS - Modifiez pour changer la vitesse des animations */
    --transition: all 0.3s ease;
    /* Durée des transitions (0.3s = rapide, 0.5s = moyen, 1s = lent) */
}

/* ============================================
   STYLES GLOBAUX
   ============================================ */

/* Styles de base pour tout le site */
body {
    font-family: 'Poppins', sans-serif;
    /* Police principale - Changez dans index.html si besoin */
    color: var(--text-dark);
    line-height: 1.6;
    /* Espacement entre les lignes (1.6 = confortable) */
    overflow-x: hidden;
    /* Empêche le défilement horizontal */
    width: 100%;
    max-width: 100vw;
}

/* Images responsives - S'adaptent automatiquement */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Titres - Utilisent une police différente pour un style élégant */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    /* Police pour les titres - Changez dans index.html si besoin */
}

/* ============================================
   NAVIGATION
   ============================================
   Barre de navigation fixe en haut de la page
   MAINTENANCE :
   - Pour changer la hauteur : modifiez padding dans .nav-container
   - Pour changer l'opacité : modifiez rgba(255, 255, 255, 0.95) -> 1.0 = opaque, 0.5 = transparent
   - Pour changer la largeur max : modifiez max-width: 1200px
*/

.navbar {
    position: fixed;
    /* Reste en haut lors du scroll */
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    /* Fond blanc semi-transparent (0.95 = 95% opaque) */
    backdrop-filter: blur(10px);
    /* Effet de flou en arrière-plan */
    box-shadow: var(--shadow);
    z-index: 1000;
    /* Au-dessus de tout le contenu */
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    /* Largeur maximale du contenu (ajustez selon vos besoins) */
    margin: 0 auto;
    /* Centre le contenu */
    padding: 1rem 2rem;
    /* Espacement interne (haut/bas gauche/droite) */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Modifiez font-size pour changer la taille */
.logo h1 {
    font-size: 1.8rem;
    /* Taille du logo (1.8rem = ~29px) */
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Slogan sous le logo */
.tagline {
    font-size: 0.85rem;
    /* Taille du slogan */
    color: var(--text-light);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Liens de navigation */
.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    /* Épaisseur du texte (400=normal, 500=medium, 600=bold) */
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    /* Espacement vertical des liens */
}

/* Ligne animée sous les liens au survol */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    /* Commence à 0, s'étend au survol */
    height: 2px;
    /* Épaisseur de la ligne (modifiez pour plus/moins épais) */
    background: var(--secondary-color);
    /* Couleur de la ligne */
    transition: var(--transition);
}

/* Animation : la ligne s'étend au survol ou quand le lien est actif */
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Changement de couleur au survol */
.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

/* Menu hamburger pour mobile - Visible uniquement sur petits écrans */
.hamburger {
    display: none;
    /* Caché sur desktop, visible sur mobile (voir @media) */
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    /* Espace entre les lignes */
    z-index: 1001;
    /* Au-dessus de la navbar */
    padding: 0.5rem;
}

/* Les 3 lignes du menu hamburger */
.hamburger span {
    width: 25px;
    /* Largeur des lignes */
    height: 3px;
    /* Épaisseur des lignes */
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Animation : transformation en X quand le menu est ouvert */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    /* Première ligne tourne */
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    /* Deuxième ligne disparaît */
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    /* Troisième ligne tourne */
}

/* ============================================
   SECTIONS
   ============================================
   Gestion de l'affichage des différentes sections
   MAINTENANCE :
   - padding-top: 80px correspond à la hauteur de la navbar
   - Si vous changez la hauteur de la navbar, ajustez ce padding
   - min-height: 100vh = hauteur minimale = hauteur de l'écran
*/

.section {
    display: none;
    /* Par défaut, toutes les sections sont cachées */
    min-height: 100vh;
    /* Hauteur minimale = 100% de la hauteur de l'écran */
    padding-top: 80px;
    /* Espace pour la navbar fixe (ajustez si navbar change) */
    animation: fadeIn 0.5s ease;
    /* Animation d'apparition (0.5s = durée) */
}

/* Seule la section avec la classe "active" est visible */
.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Conteneur principal - Centre le contenu et limite la largeur */
.container {
    max-width: 1200px;
    /* Largeur maximale (ajustez selon vos besoins) */
    margin: 0 auto;
    /* Centre horizontalement */
    padding: 4rem 2rem;
    /* Espacement interne (4rem haut/bas, 2rem gauche/droite) */
}

/* Titres de section - Modifiez font-size pour changer la taille */
.section-title {
    font-size: 3rem;
    /* Taille du titre (3rem = ~48px) - Ajustez selon vos besoins */
    text-align: center;
    margin-bottom: 1rem;
    /* Espacement sous le titre */
    color: var(--primary-color);
}

/* Sous-titres de section */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    /* Espacement avant le contenu */
    font-size: 1.1rem;
    /* Taille du sous-titre */
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   BOUTONS PRIMAIRES
   ============================================
   Boutons principaux utilisés pour les redirections
   MAINTENANCE :
   - padding: 1rem 2.5rem = taille du bouton (1rem haut/bas, 2.5rem gauche/droite)
   - border-radius: 50px = coins arrondis (50px = très arrondi, 5px = peu arrondi)
   - Modifiez background pour changer la couleur
*/
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    /* Taille du bouton (ajustez pour plus grand/petit) */
    background: var(--secondary-color);
    /* Couleur de fond (rouge par défaut) */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    /* Coins arrondis (50px = très arrondi) */
    font-weight: 600;
    /* Épaisseur du texte */
    transition: var(--transition);
    box-shadow: var(--shadow);
}

/* Effet au survol du bouton */
.btn-primary:hover {
    background: #c0392b;
    /* Couleur plus foncée au survol */
    transform: translateY(-2px);
    /* Légère élévation (-2px = monte, 2px = descend) */
    box-shadow: var(--shadow-hover);
}

.hero-image {
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.placeholder-image p {
    text-align: center;
    padding: 1rem;
    word-wrap: break-word;
}

/* À propos */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.social-icon i {
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Galerie */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item .placeholder-image {
    height: 300px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.gallery-like-btn,
.gallery-dislike-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.gallery-like-btn:hover,
.gallery-dislike-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-like-btn.active {
    background: #3498db;
    border-color: #3498db;
}

.gallery-dislike-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
}

.gallery-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.gallery-modal-content {
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: white;
    border-radius: 10px;
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-bottom: 1px solid #e0e0e0;
}

.close-modal-btn {
    padding: 0.5rem 1.5rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.close-modal-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.gallery-modal-header .close-modal {
    position: static;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.gallery-modal-header .close-modal:hover {
    color: var(--secondary-color);
}

.gallery-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex: 1;
    overflow: hidden;
}

.gallery-modal-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.gallery-modal-image .placeholder-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 0;
    margin: 0;
}

.gallery-modal-info {
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.gallery-modal-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-modal-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.gallery-modal-actions {
    display: flex;
    gap: 1rem;
}

.gallery-modal-like-btn,
.gallery-modal-dislike-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.gallery-modal-like-btn:hover,
.gallery-modal-dislike-btn:hover {
    background: var(--secondary-color);
}

.gallery-modal-like-btn.active {
    background: #3498db;
}

.gallery-modal-dislike-btn.active {
    background: #e74c3c;
}

.about-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Magasin */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image .placeholder-image {
    height: 250px;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-buy,
.btn-order {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-buy:hover {
    background: #34495e;
    transform: translateY(-2px);
}

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

.btn-order:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary-color);
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.social-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 600;
}

.social-option i {
    font-size: 1.5rem;
}

.social-option:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Section Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
}

.contact-social-link i {
    font-size: 1.2rem;
}

.contact-social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover:not(:disabled) {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    display: block;
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.footer-social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-social-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Améliorations pour la responsivité globale */
* {
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Amélioration des interactions tactiles */
button,
a,
input,
textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

/* Amélioration de la lisibilité sur mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .hero {
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .gallery-modal-content {
        max-width: 90%;
    }

    .modal-content {
        max-width: 90%;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image .placeholder-image {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .gallery-grid,
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .gallery-like-btn,
    .gallery-dislike-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-buy,
    .btn-order {
        width: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-social {
        gap: 0.5rem;
    }

    .contact-social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .gallery-modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .gallery-modal-header {
        padding: 0.75rem 1rem;
    }

    .close-modal-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }

    .gallery-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .gallery-modal-image {
        order: 1;
    }

    .gallery-modal-image .placeholder-image {
        min-height: 250px;
        height: 250px;
    }

    .gallery-modal-info {
        order: 2;
        padding: 1.5rem;
        max-height: 50vh;
    }

    .gallery-modal-info h2 {
        font-size: 1.5rem;
    }

    .gallery-modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .gallery-modal-like-btn,
    .gallery-modal-dislike-btn {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .social-options {
        gap: 0.75rem;
    }

    .social-option {
        padding: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        align-items: center;
    }

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

    .gallery-footer {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .hero {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .gallery-filters {
        gap: 0.4rem;
    }

    .filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }

    .gallery-item .placeholder-image {
        height: 250px;
    }

    .gallery-overlay h3 {
        font-size: 1rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-info h3 {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .gallery-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        width: 100%;
    }

    .gallery-modal-header {
        padding: 0.625rem 0.875rem;
    }

    .close-modal-btn {
        padding: 0.375rem 1rem;
        font-size: 0.85rem;
    }

    .gallery-modal-header .close-modal {
        font-size: 1.25rem;
    }

    .gallery-modal-image .placeholder-image {
        min-height: 200px;
        height: 200px;
    }

    .gallery-modal-info {
        padding: 1.25rem;
        max-height: calc(100vh - 250px);
    }

    .gallery-modal-info h2 {
        font-size: 1.3rem;
    }

    .gallery-modal-info p {
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 1.5rem 1rem;
        width: 100%;
        border-radius: 0;
    }

    .close-modal {
        top: 0.75rem;
        right: 1rem;
        font-size: 1.5rem;
    }

    .social-icons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-icon {
        width: 100%;
        justify-content: center;
    }

    .about-actions .btn-primary {
        width: 100%;
    }

    .gallery-footer .btn-primary {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .gallery-item .placeholder-image,
    .gallery-modal-image .placeholder-image {
        height: 200px;
    }

    .product-price {
        font-size: 1.3rem;
    }
}