/* base.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat';
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

h2 {
    font-weight: bold;
}

.navbar-brand img {
    border-radius: 50%;
}

section p {
    font-size: 1.1rem;
    color: #333;
}

.carousel-caption {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.75);
}


#documentsParcelle ul {
  list-style: none;
  padding-left: 0;
  margin-top: 5px;
}

#documentsParcelle li {
  margin-bottom: 6px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  background: #f0f8ff;
  padding: 6px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#documentsParcelle li:hover {
  background: #cce4ff;
}

#documentsParcelle li::before {
  content: "📄";  /* petite icône document */
  margin-right: 8px;
}

#documentsParcelle a {
  color: #007bff;
  text-decoration: none;
  flex-grow: 1;
}

#documentsParcelle a:hover {
  text-decoration: underline;
}
