/* ==================================
   FOOTER – RESPONSIVE
   ================================== */

.footer-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;

  margin-top: 5px;
  padding: 20px;

  background-color: rgb(46, 165, 250);
  color: white;

  box-sizing: border-box;
}

/* Blocs internes */
.contact-item,
.access-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 15px;
  border-radius: 10px;

  box-shadow: 0 4px 8px rgba(11, 11, 11, 0.7);

  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Titres */
.f-label {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

/* Contact */
.contact-item h4 {
  margin: 4px 0;
  font-weight: normal;
  text-align: left;
}

/* Quick access */
.access-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.access-item li {
  margin-bottom: 8px;
}

.access-item a {
  color: white;
  text-decoration: none;
}

.access-item a:hover {
  text-decoration: underline;
  color: #dcdcdc;
}

/* Google map responsive */
.contact-item iframe {
  width: 100%;
  max-width: 100%;
  height: 200px;
  border: 0;
  border-radius: 6px;
}

/* Facebook row */
.contact-item img.logo-facebook {
  width: 32px;
  height: 32px;
}

/* ==================================
   TABLETTE
   ================================== */
@media (max-width: 992px) {
  .footer-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==================================
   MOBILE
   ================================== */
@media (max-width: 576px) {
  .footer-bar {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .f-label {
    font-size: 22px;
  }

  .contact-item iframe {
    height: 180px;
  }
}

/* ==================================
   FOOTER COPYRIGHT
   ================================== */
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px;
  background-color: rgb(6, 130, 192);
  color: white;
  text-align: center;
  font-size: 14px;
}
