:root {
  --primary-color: #f79995;
  --secondary-color: #cd5c5c;
  --light-color: #f1caca;
  --dark-color: #802e2e;

  --font-title: 'Inknut Antiqua', serif;
  --font-text: 'Inria Sans', sans-serif;
  --font-link: 'Inria Serif', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  font-family: var(--font-text);
  background: linear-gradient(to bottom, #FFF9F4, #f1caca, #f79995);
  color: var(--dark-color);
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px;
}

.logo h1 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--dark-color);
}

.logo p {
  font-size: 0.8rem;
  color: var(--secondary-color);
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover {
  color: var(--secondary-color);
}

/* Bouton burger */
.burger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- MAIN ---------- */
main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 30px;
  text-align: center;
}

/* Image massage */

.mise-en-avant-shiro {
  margin: 40px auto 0;
  padding: 30px 25px;
  max-width: 950px;
  width: 100%;
  border: 2px solid var(--light-color);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.shiro-texte {
  flex: 1;
  text-align: center;
}

.shiro-texte h2 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.shiro-texte p {
  margin-bottom: 20px;
  text-align: center;
}

.shiro-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.shiro-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-shiro {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--secondary-color);
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-shiro:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* Intro lien */
.intro-lien {
  text-align: center;
  margin: 20px 0;
}

.intro-lien a {
  font-family: var(--font-link);
  color: var(--dark-color);
  font-style: italic;
  text-decoration: underline;
}

/* Avantages */
.avantages {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.portrait img,
.ambiance img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.portrait {
  text-align: center;
}

.portrait p {
  margin-top: 10px;
  text-align: justify;
  padding: 0 10px;
}

.texte h2 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-align: center;
}

.texte p {
  padding: 0 10px;
}

.texte {
  text-align: justify;
}

.ambiance {
  text-align: center;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: var(--dark-color);
  border-top: 1px solid var(--secondary-color);
  margin-top: 40px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 767px) {
  .burger {
    display: block;
  }

  nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 20px;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none;
    padding: 15px;
    z-index: 10;
  }

  nav ul.show {
    display: flex;
  }

  .avantages {
    flex-direction: column;
    align-items: center;
  }

  .portrait,
  .texte,
  .ambiance {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .texte {
    padding-left: 0;
  }

  .mise-en-avant-shiro {
    flex-direction: column;
    text-align: center;
    margin: 30px auto 0;
    padding: 20px;
    gap: 20px;
  }

  .shiro-texte {
    text-align: center;
  }

  .shiro-texte p {
    text-align: center;
  }

  .shiro-image img {
    max-width: 260px;
  }
}

/* Desktop: menu horizontal, burger caché */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    width: auto;
    box-shadow: none;
    padding: 0;
    gap: 20px;
  }

  .avantages {
    flex-direction: row;
    justify-content: space-between;
  }

  .portrait,
  .texte,
  .ambiance {
    flex: 1;
  }

  .texte {
    padding-left: 40px;
  }
}
@media (max-width: 900px) {
  .grille-massages {
    grid-template-columns: repeat(2, 1fr);
  }
  header .logo h1,
  header .logo p {
    display: none;
  }
}
