/* Michelle Hénault - 2013 - Style artistique et chaleureux */

body.mh-body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #ffe9b3 0%, #ffd59e 60%, #fffbe6 100%);
  color: #181818;
  margin: 0;
  padding: 0;
}

.mh-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fffbe6;
  box-shadow: 0 4px 32px rgba(255, 180, 60, 0.10);
  border-radius: 22px;
  padding: 36px 24px 48px 24px;
  border: 1.5px solid #ffe1a8;
}

/* EN-TÊTE */
.mh-header {
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
  padding: 2.5rem 0 1.2rem 0;
  text-align: left;
}
.mh-header-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2em;
}
.mh-artist-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #e65100;
  letter-spacing: 0.04em;
  margin-bottom: 0.1em;
}
.mh-title {
  font-size: 1.3rem;
  color: #e65100;
  font-weight: 600;
  margin: 0;
}
.mh-title-desc {
  font-size: 1.05rem;
  color: #e65100;
  font-weight: 400;
  margin: 0;
}
.mh-social {
  display: flex;
  gap: 0.7em;
  margin-top: 0.5em;
  justify-content: flex-end;
  align-items: center;
}
.mh-social a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mh-social a img:hover {
  transform: scale(1.13) rotate(-7deg);
  box-shadow: 0 4px 16px rgba(230,81,0,0.18);
}

/* NAVIGATION */
.mh-nav {
  background: linear-gradient(90deg, #ffb347 0%, #ffe066 60%, #ffd59e 100%);
  padding: 0.7rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 0.5rem solid #fff;
  z-index: 10;
  box-shadow: 0 2px 12px 0 rgba(255,180,60,0.10);
}
.mh-nav ul {
  list-style: none;
  display: flex;
  gap: 2.2em;
  margin: 0;
  padding: 0;
}
.mh-nav li {
  display: inline-block;
}
.mh-nav a {
  color: #b85c00;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.2em 0.7em;
  border-radius: 2em;
  transition: background 0.2s, color 0.2s;
}
.mh-nav a:hover {
  background: #e65100;
  color: #fffbe7;
}

/* BANNIÈRE ARTISTIQUE */
.mh-banner-artistique {
  width: 100vw;
  min-height: 90px;
  background: linear-gradient(90deg, #ffe066 0%, #ffb347 20%, #6ec6ff 40%, #81c784 60%, #ff7043 80%, #ffe066 100%);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.mh-banner-artistique::after {
  content: '';
  display: block;
  width: 100vw;
  height: 100%;
  background: url('/michellehenault/about-5/0ee442_c1cdf80d99c34195bf596d1d19b760b8~mv2.jpg') center/cover no-repeat;
  opacity: 0.18;
  position: absolute;
  left: 0; top: 0;
  z-index: 1;
  pointer-events: none;
}

/* CONTENU PRINCIPAL */
.mh-main.bg-apropos {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  min-height: 100vh;
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 32px 0 rgba(0,0,0,0.04);
}
.mh-main-inner {
  display: flex;
  flex-direction: row;
  gap: 3vw;
  padding: 3vw 7vw 2vw 7vw;
  align-items: flex-start;
}
.mh-profil-photo {
  flex: 0 0 220px;
  max-width: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(230,81,0,0.13);
  margin-right: 2vw;
}
.mh-profil-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}
.mh-apropos-texte {
  flex: 1 1 0;
  background: #fff;
  border-radius: 1.5em;
  box-shadow: 0 2px 12px 0 rgba(230,81,0,0.07);
  padding: 2.2em 2.5em 1.5em 2.5em;
  margin-bottom: 1.5em;
}
.mh-apropos-texte h2 {
  color: #e65100;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7em;
}
.mh-apropos-texte p {
  color: #222;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 0.7em;
}
.mh-apropos-texte .mh-social {
  justify-content: flex-end;
  margin-top: 1.2em;
}

/* SECTION BIO */
.mh-section-bio {
  background: #fffbe7;
  border-radius: 1.5em;
  margin: 2vw 7vw 3vw 7vw;
  padding: 2.5em 2.5em 2em 2.5em;
  box-shadow: 0 2px 12px 0 rgba(230,81,0,0.07);
}
.mh-section-bio h1 {
  color: #e65100;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.mh-section-bio h2, .mh-section-bio span {
  color: #222;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.7;
}

.mh-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}
.mh-nav li {
  position: relative;
}
.mh-nav a, .mh-nav span {
  color: #b85c00;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08em;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.mh-nav a:hover, .mh-nav span:hover {
  background: linear-gradient(90deg,#ffe066 60%,#ffb347 100%);
  color: #222;
}
.mh-has-submenu > span:after {
  content: " ▼";
  font-size: 0.8em;
}
.mh-has-submenu > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 2.2em;
  min-width: 180px;
  background: #fffbe6;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 0.7em 0.2em;
  z-index: 100;
  flex-direction: column;
  gap: 0;
  pointer-events: auto;
  transition: opacity 0.18s;
  opacity: 0;
  visibility: hidden;
}
.mh-has-submenu:hover > ul,
.mh-has-submenu:focus-within > ul,
.mh-has-submenu > ul:hover {
  display: block;
  opacity: 1;
  visibility: visible;
}
.mh-has-submenu {
  position: relative;
}
/* Correction : agrandir la zone sensible du parent pour éviter la fermeture trop rapide */
.mh-has-submenu {
  padding-bottom: 1.5em;
}
.mh-has-submenu > span {
  position: relative;
  z-index: 101;
}
.mh-nav ul ul {
  flex-direction: column;
  gap: 0.2em;
}
@media (max-width: 800px) {
  .mh-container {
    padding: 10px 2vw 24px 2vw;
  }
  .mh-oeuvres-block {
    flex-direction: column;
    gap: 18px;
  }
  .mh-section-content {
    padding: 18px 6px;
  }
  .mh-section-cv-content {
    padding: 18px 6px;
  }
  .mh-section-cv-inner {
    gap: 18px;
  }
  .mh-nav ul {
    flex-direction: column;
    gap: 0.5em;
  }
  .mh-nav {
    padding: 0.5em 0.2em;
  }
}
@media (max-width: 500px) {
  .mh-header-section {
    padding: 18px 0 8px 0;
  }
  .mh-title {
    font-size: 1.5rem;
  }
  .mh-section-title {
    font-size: 1.2rem;
  }
  .mh-img {
    max-width: 98vw;
  }
  .mh-section-cv-photo .mh-img {
    max-width: 98vw;
  }
  .mh-cv-photo-logo .mh-img {
    max-width: 60vw;
  }
}

.mh-main.bg-apropos {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  min-height: 100vh;
  background: url('michellehenault/about-5/0ee442_c1cdf80d99c34195bf596d1d19b760b8~mv2.jpg') center/cover no-repeat;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .mh-main.bg-apropos {
    background-position: center top;
  }
}
