/* --- Footer Golya (Sobriété et Luxe - OPTIMISÉ EN HAUTEUR) --- */
#golya-footer {
    font-family: 'Poppins', sans-serif;
    background-color: #111111; /* Noir très profond */
    color: #FFFFFF;
    padding: 50px 5% 30px; /* RÉDUCTION DE HAUTEUR */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes claires (A Propos, Service, Légal, Social) */
    gap: 40px; /* Réduction de l'espace entre les colonnes */
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Ajustement des titres de section */
  #golya-footer h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px; /* RÉDUCTION DE MARGE */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4D4D4;
  }
  
  /* Style des listes et des liens */
  #golya-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #golya-footer ul li {
    margin-bottom: 8px; /* RÉDUCTION DE MARGE */
  }
  
  #golya-footer ul li a {
    color: #AAAAAA;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    transition: color 0.3s ease;
  }
  
  #golya-footer ul li a:hover {
    color: #FFFFFF;
  }
  
  /* Effet de luxe discret au survol des liens */
  #golya-footer ul li a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background-color: #FFFFFF;
      transition: width 0.3s ease;
  }
  
  #golya-footer ul li a:hover::after {
      width: 100%;
  }
  
  
  /* Réseaux sociaux - Style des icônes SVG */
  .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .social-icons a {
    text-decoration: none;
    color: #AAAAAA;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #FFFFFF;
  }
  
  .social-icons svg {
    width: 22px;
    height: 22px;
  }
  
  
  /* Section Copyright */
  .footer-copyright {
    grid-column: 1 / -1; /* Prend toute la largeur, peu importe le nombre de colonnes */
    text-align: center;
    padding-top: 25px; /* RÉDUCTION DE HAUTEUR */
    margin-top: 25px;
    border-top: 1px solid #333333;
  }
  
  .footer-copyright p {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    color: #777777;
  }

  .logo-by-redfish {
    width: 100px;
  }
  
  
  /* --- Responsive (Mobile / Tablette) --- */
  @media (max-width: 992px) {
      #golya-footer {
          grid-template-columns: repeat(2, 1fr); /* Deux colonnes sur tablette */
          gap: 30px;
          padding: 40px 5% 20px;
      }
      .footer-copyright {
          grid-column: 1 / -1; 
      }
      /* S'assurer que les liens sociaux et légaux ne sont pas côte à côte sur les petits écrans de tablette */
      .footer-legal, .footer-social-wrapper {
          grid-column: auto;
      }
  }
  
  @media (max-width: 600px) {
    #golya-footer {
      grid-template-columns: 1fr; /* Une seule colonne sur mobile */
      text-align: center;
      padding: 30px 20px 15px;
    }
    
    /* Place les réseaux sociaux en premier pour une meilleure visibilité */
    .footer-social-wrapper {
      order: -1; 
      margin-bottom: 20px;
    }
  
    .social-icons {
      justify-content: center;
      margin-top: -10px; 
    }
    
    .footer-section h4 {
        margin-top: 20px;
    }
  }