/* ──────────────────────────────────────────────────────────────── */
/*       FORMULAIRE DE RECHERCHE                                  */
/* ──────────────────────────────────────────────────────────────── */
.garage-search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.garage-search-form input,
.garage-search-form select,
.garage-search-form button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.3s;
}

.garage-search-form input:focus,
.garage-search-form select:focus {
  border-color: #007bff;
  outline: none;
}

.garage-search-form button {
  background-color: #C44123;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.garage-search-form button:hover {
  background-color: #e31d27;
}

/* ──────────────────────────────────────────────────────────────── */
/*       LISTE DES GARAGES                                        */
/* ──────────────────────────────────────────────────────────────── */
.garage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-bottom: 2rem;
}

/* Colle en 1 colonne sur petits écrans */
@media (max-width: 768px) {
  .garage-list {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────────────── */
/*       CARTE INDIVIDUELLE                                       */
/* ──────────────────────────────────────────────────────────────── */
.garage-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Sur mobile, une seule colonne */
@media (max-width: 600px) {
  .garage-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ──────────────────────────────────────────────────────────────── */
/*       LOGO                                                      */
/* ──────────────────────────────────────────────────────────────── */
.garage-logo img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  border-radius: 6px;
}

/* ──────────────────────────────────────────────────────────────── */
/*       DÉTAILS                                                   */
/* ──────────────────────────────────────────────────────────────── */
.garage-details {
  display: flex;
  flex-direction: column;
}

.garage-details h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #333;
}

.garage-details p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.garage-details i {
  color: #C44123;
  margin-right: 0.5rem;
}

/* Lien Google Maps */
.garage-details a.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.garage-details a.map-link:hover {
  color: #0056b3;
}
