:root {
  --mp-green: #5c6e51;
  --mp-green-dark: #4c5c43;
  --mp-white: #ffffff;
}

html,
body {
  height: 100%;
  margin: 0;
  background-color: var(--mp-green);
  overflow: hidden;
  color: var(--mp-white);
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto !important;
}

/* Conteneur plein écran */
.mp-page {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 5rem;
}

/* Cadre blanc fin autour de toute la page */
.mp-background {
  position: absolute;
  inset: clamp(1rem, 2vw, 2rem);
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
  overflow: hidden;

}

.mp-boulanger {
  aspect-ratio: 557 / 1080;
}

.mp-boulanger img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mp-overlay {
  width: min(1200px, 72vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(2rem, 5vh, 5rem);
  align-items: center;
  gap: clamp(2rem, 4vh, 5rem);
  position: relative;
}

.mp-overlay img {
  width: min(1200px, 70vw);
  height: auto;
}

.mp-addresses {
  width: min(992px, 100%);
  text-align: center;
}

.mp-address h2 {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.mp-address p {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 300;
  margin: 0;
}

.mp-construction {
  position: relative;
  width: calc(100% - 8rem);
  margin: 2rem auto 0;
  text-transform: uppercase;
  display: flex;
  align-items: end;
  flex-direction: column;

}


.mp-construction img {
  opacity: 0.9;
  transition: all 300ms;

}

.mp-construction img:hover {
  opacity: 1;
  transition: all 300ms;

}

/* ===================== MOBILE ===================== */
@media (min-width: 1400px) {}


/* ===================== MOBILE ===================== */
@media (max-width: 767.98px) {

  .mp-construction {
    align-items: center;
  }





  .mp-addresses {
    flex-direction: column;
    gap: 1.5rem;
  }

  .mp-construction {
    text-align: center;
  }

}