.footer-container {
  background: linear-gradient(to right, #000 65%, #4e3939 100%);
  color: gold;
  padding: 40px 20px;
  scroll-behavior: smooth;
}

.footer-columns {
  width: fit-content;        
  margin: 0 auto;         
  display: flex;
  justify-content: center;         
  align-items: flex-start;
  gap: 60px;                        
  flex-wrap: nowrap;
}


.footer-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 180px; 
}

.footer-section.intro {
  min-width: 350px;
  margin-left: 18%;
  margin-top: 0px;
}

.footer-section h1 {
  font-size: 16px;
  margin-bottom: 12px;
  color: gold;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 8px;
  margin-top: 14px;
}

.footer-section a {
  color: gold;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-container > div:last-child {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 0;
}

.footer-links li {
  display: inline;
}

.footer1 {
  color: gold;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer1:hover {
  color: #fff;
}

h1 {
  font-size: 16px;
  margin-top: 0;
  color: gold;
}

p {
  font-size: 14px;
  color: gold;
  margin: 6px 0;
}

#titre {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 2px;
  color: gold;
}

#titre:hover {
  color: white;
}

@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 10px;
  }

  .footer-section {
    min-width: auto;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-section.intro {
    margin-left: 0;
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-container {
    padding: 30px 10px;
  }

  .footer-section h1,
  h1,
  p {
    text-align: center;
  }
}
