:root {
  --beige: #F5F0EB;
  --noir-profond: #1A1A1A;
  --ocre-clair: #E8C47A;
  --vert-sauge: #A6C4A0;
  --rouge-terre-cuite: #C2675C;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

.bg-noir-profond {
  background-color: var(--noir-profond);
}

.banner-section {
  background: url("/img/content/02.png") center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.5);
  z-index: 1;
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .banner-section h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .banner-section h1 {
    font-size: 2rem;
  }
}
.banner-section .lead {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .banner-section .lead {
    font-size: 1.1rem;
  }
}

.heading-section {
  background-color: var(--beige);
  padding: 100px 0;
}
.heading-section h2 {
  color: var(--ocre-clair);
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}
.heading-section h2 i {
  color: var(--ocre-clair);
}
.heading-section p {
  color: var(--noir-profond);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.heading-section p:last-child {
  margin-bottom: 0;
}

.services-section {
  padding: 100px 0;
  background-color: white;
}
.services-section h2 {
  color: var(--ocre-clair);
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}
.services-section h2 i {
  color: var(--ocre-clair);
}
.services-section .row.g-4 {
  margin-top: 20px;
}

.service-card {
  background-color: var(--beige);
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-card img {
  border-radius: 15px 15px 0 0;
  height: 200px;
  object-fit: contain;
  background-color: white;
  padding: 20px;
}
.service-card .card-title {
  color: var(--noir-profond);
  font-weight: bold;
  font-size: 1.3rem;
}
.service-card .card-text {
  color: var(--noir-profond);
  font-size: 1rem;
}

.values-section {
  background-color: var(--ocre-clair);
  padding: 100px 0;
}
.values-section h2 {
  color: var(--noir-profond);
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}
.values-section h2 i {
  color: var(--noir-profond);
}
.values-section p {
  color: var(--noir-profond);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.values-section p:last-child {
  margin-bottom: 0;
}
.values-section img {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .values-section img {
    margin-bottom: 0;
  }
}

.team-section {
  background-color: var(--beige);
  padding: 100px 0;
}
.team-section h2 {
  color: var(--ocre-clair);
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}
.team-section h2 i {
  color: var(--ocre-clair);
}
.team-section p {
  color: var(--noir-profond);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.team-section p:last-child {
  margin-bottom: 0;
}
.team-section img {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}
@media (min-width: 992px) {
  .team-section img {
    margin-top: 0;
  }
}

.navbar {
  background-color: var(--noir-profond) !important;
}

.navbar-brand {
  color: var(--ocre-clair) !important;
  font-weight: bold;
  font-size: 1.5rem;
}

.footer {
  background-color: var(--ocre-clair);
  color: var(--noir-profond);
  padding: 40px 0;
  text-align: center;
}
.footer .footer-actions .btn-footer {
  background-color: var(--noir-profond);
  color: var(--beige);
  border: 2px solid var(--noir-profond);
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer .footer-actions .btn-footer:hover {
  background-color: var(--beige);
  color: var(--noir-profond);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}
.footer .footer-actions .btn-footer i {
  font-size: 1rem;
}
.footer .social-links a {
  color: var(--noir-profond);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer .social-links a:hover {
  color: var(--beige);
  transform: scale(1.2);
}

/*# sourceMappingURL=app.output.css.map */
