/* <uniquifier>: Use a unique and descriptive class name */
/* <weight>: Use a value from 100 to 900 */

body {
  background-color: white;
  color: #333;
  font-family: "Inter", serif;
}

.demir {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2rem;
  font-weight: bold;
  color: navy;
}

.letter {
  position: relative;
  overflow: hidden;
}

.d {
  position: relative;
  overflow: hidden;
}

.d::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: yellow;
  transform: translateY(100%);
  transition: transform 1s ease-in-out;
}

.d.animate::after {
  transform: translateY(-100%);
}

/* Soulignement jaune pour le titre */
h2 {
  display: inline-block;
  border-bottom: 4px solid yellow;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-weight: 800;
}

.lead {
  font-weight: 500;
}

.italic {
  font-style: italic;
  font-size: 25px;
}

.nos-travaux {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
}

.description-section {
  font-style: italic;
  color: navy;
}

#slogan {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  color: navy;
}

/* Style de la card */
.contact-card {
  box-shadow: 0 4px 8px rgba(0, 0, 128, 0.5);
  border-radius: 10px;
  padding: 20px;
}

/* Style du bouton */
.btn-primary {
  background-color: navy;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: darkblue;
  box-shadow: 0 4px 8px rgba(0, 0, 128, 0.7);
}

/* Footer Style */
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: yellow;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
