:root {
  --color-bg: #f3eee8;
  --color-text: #4a3f35;
  --color-accent: #c7a45e;
  --color-secondary: #c88c7a;
  --color-light: #faf9f6;
  --font-title: "Cormorant Garamond", serif;
  --font-body: "Nunito Sans", sans-serif;
  --radius: 0.8rem;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
html {
  font-size: 62.5%;
}
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1rem);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
.logo-text {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 600;
}
.logo-text span {
  color: var(--color-accent);
  font-style: italic;
}

.nav-img img {
  display: flex;
  width: 4.5rem;
  border-radius: 50%;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 2.2rem;
  transition: var(--transition);
  font-weight: 500;
}
nav a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 4rem;
  height: 2rem;
  cursor: pointer;
  margin: 20px;
}
.burger span {
  background: var(--color-text);
  height: 0.3rem;
  border-radius: 0.5rem;
  transition: var(--transition);
}

/* HERO */

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 6rem;
  line-height: 1.8;
}
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
  z-index: -1;
}
.hero-content {
  color: var(--color-light);
  max-width: 80%;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: 9rem;
  margin-bottom: 1rem;
}
.hero h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 600;
}

.hero h3 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
  color: rgb(241, 132, 150);
}

.cta {
  display: block;
  width: 25%;
  margin: 0 auto;
  background: #926a20;
  color: var(--color-light);
  padding: 0.5rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: var(--transition);
  font-size: 2.6rem;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px #bb8e41;
  border-radius: 40px;
  z-index: 2;
  margin-top: 6rem;
  font-weight: 600;
}
.cta:hover {
  background: #926355;
  transition-duration: 2s ease-in;
  box-shadow: 0 2px rgb(196, 123, 134);
  top: 2px;
}

.cta:active {
  box-shadow: 0 0 #b38941;
  top: 2px;
}

/* PRESTATIONS */
#prestations {
  margin: 20rem 0rem;
}

#prestations h2 {
  text-align: center;
  font-size: 6rem;
  font-family: var(--font-title);
  padding: 2rem 0rem;
}

#prestations p {
  text-align: center;
  font-size: 2rem;
}

#prestations img {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 200px;
  border-radius: 50%;
  margin-top: 10rem;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.12),
    0 8px 15px rgba(0, 0, 0, 0.08);
}

.container-card {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #f6efe6;
  margin-top: 15rem;
  flex-wrap: wrap;
  gap: 5rem;
}

.card {
  width: 700px;
  padding: 4rem 5rem;
  font-weight: 500;
  line-height: 1.8;
  background: linear-gradient(160deg, #f2d8c9 0%, #d8a88f 100%);
  color: #3a2a24;
  border-radius: 16px;
  box-shadow:
    0 15px 20px rgba(60, 40, 20, 0.18),
    0 8px 18px rgba(60, 40, 20, 0.1);
  text-align: left;
}

.card h3 {
  font-family: var(--font-title);
  padding-left: 2rem;
  margin-bottom: 2rem;
  font-size: 2.7rem;
  font-weight: 900;
}

.card ul {
  padding-left: 2rem;
}

.card ul li {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.cta-prestations {
  display: block;
  width: 20%;
  height: auto;
  margin: 0 auto;
  background: #926a20;
  color: var(--color-light);
  padding: 1rem 0rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: var(--transition);
  font-size: 2.6rem;
  margin-top: 15rem;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px #bb8e41;
  border-radius: 40px;
  z-index: 2;
  font-weight: 600;
  text-align: center;
}
.cta-prestations:hover {
  background: #926355;
  transition-duration: 1s ease-in;
  box-shadow: 0 2px rgb(199, 150, 157);
  top: 2px;
}

.cta-prestations:active {
  box-shadow: 0 0 #b38941;
  top: 2px;
}

/* CREATIONS */

#creations {
  padding-bottom: 10rem;
  background-color: #ede6de;
}

#creations h2 {
  font-size: 6rem;
  font-family: var(--font-title);
  text-align: center;
  padding-top: 10rem;
}

#creations p {
  font-size: 2rem;
  text-align: center;
  padding-top: 2rem;
}

.galerie {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 0 auto;
  text-align: center;
  flex-wrap: wrap;
  padding: 10rem 0rem 6rem 0rem;
}

.image h3 {
  font-family: var(--font-title);
  font-size: 2.7rem;
  padding: 4rem 0rem;
  font-weight: 900;
}

.image img {
  width: 300px;
  height: 400px;
  border-radius: 10px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.16),
    0 10px 20px rgba(0, 0, 0, 0.1);
}

.image img:hover {
  cursor: pointer;
  transform: scale(1.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.cta-creations {
  display: block;
  width: 20%;
  height: auto;
  margin: 0 auto;
  background: #926a20;
  color: var(--color-light);
  padding: 1rem 0rem;
  text-decoration: none;
  transition: var(--transition);
  font-size: 2.6rem;
  margin: 10rem auto;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px #bb8e41;
  border-radius: 40px;
  z-index: 2;
  text-align: center;
  font-weight: 600;
}
.cta-creations:hover {
  background: #926355;
  transition-duration: 1s ease-in;
  box-shadow: 0 2px rgb(199, 150, 157);
  top: 2px;
}

.cta-creations:active {
  box-shadow: 0 0 #b38941;
  top: 2px;
}

/* TEMOIGNAGE */

#temoignages {
  background-color: #faf1e7;
  text-align: center;
  padding: 10rem 0rem;
}

#temoignages h2 {
  font-size: 6rem;
  font-family: var(--font-title);
  padding-bottom: 3rem;
}

#temoignages p {
  font-size: 2rem;
}

blockquote {
  padding: 3rem;
}

blockquote::before {
  content: open-quote;
  font-weight: 700;
}

blockquote::after {
  content: close-quote;
  font-weight: 700;
}

.avis img {
  width: 40px;
}

.container-avis {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 4rem;
  padding: 15rem 0rem;
  flex-wrap: wrap;
  font-size: 1.9rem;
  color: #5a4e45;
  font-style: italic;
}

.separateur-couture {
  width: 30%;
  border: 2px dashed;
  color: #c6a15b;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.avis {
  width: 45rem;
  height: auto;
  background-color: #f8f2ec;
  padding: 4rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

cite {
  color: #c6a15b;
  font-weight: 600;
}

.cta-temoignages {
  display: block;
  width: 20%;
  height: auto;
  margin: 0 auto;
  background: #926a20;
  color: var(--color-light);
  padding: 1rem 0rem;
  text-decoration: none;
  transition: var(--transition);
  font-size: 2.6rem;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px #bb8e41;
  border-radius: 40px;
  z-index: 2;
  text-align: center;
  margin-bottom: 10rem;
  font-weight: 600;
}
.cta-temoignages:hover {
  background: #926355;
  transition-duration: 1s ease-in;
  box-shadow: 0 2px rgb(199, 150, 157);
  top: 2px;
}

.cta-temoignages:active {
  box-shadow: 0 0 #b38941;
  top: 2px;
}

/* ATELIER */
.atelier {
  width: 100%;
  padding: 0rem 4rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.atelier-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
}
.atelier-text h2 {
  font-family: var(--font-title);
  font-size: 6rem;
  padding-top: 10rem;
  text-align: center;
}

.atelier-text p {
  font-size: 1.9rem;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
}

.atelier-creations {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 5rem;
  padding: 15rem 0rem;
}

.atelier-creations h3 {
  font-family: var(--font-title);
  width: 100%;
  font-size: 3.5rem;
  text-align: center;
  font-weight: 900;
}
.atelier-creations p {
  width: 100%;
  font-size: 1.9rem;
  padding: 3rem 0;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2;
}

.atelier-creations img {
  width: 50%;
  height: auto;
  transition: var(--transition);
  border-radius: 1.2rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.atelier-couture {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 15rem 0rem;
}

.atelier-couture h3 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  text-align: center;
  font-weight: 900;
}

.atelier-couture p {
  width: 100%;
  font-size: 1.9rem;
  padding: 3rem 0;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2;
}

.atelier-couture img {
  width: 50%;
  height: auto;
  transition: var(--transition);
  border-radius: 1.2rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.fil-dore {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 5rem;
  padding: 15rem 0rem 6rem 0rem;
}

.fil-dore h3 {
  font-family: var(--font-title);
  width: 100%;
  font-size: 3.5rem;
  text-align: center;
  font-weight: 900;
}

.fil-dore p {
  width: 100%;
  font-size: 1.9rem;
  padding: 3rem 0;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2;
}

.fil-dore img {
  width: 50%;
  height: auto;
  transition: var(--transition);
  border-radius: 1.2rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.cta-atelier {
  display: block;
  width: 20%;
  height: auto;
  margin: 0 auto;
  background: #926a20;
  color: var(--color-light);
  padding: 1rem 0rem;
  text-decoration: none;
  transition: var(--transition);
  font-size: 2.6rem;
  margin: 10rem auto;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px #bb8e41;
  border-radius: 40px;
  z-index: 2;
  text-align: center;
  font-weight: 600;
}
.cta-atelier:hover {
  background: #926355;
  transition-duration: 1s ease-in;
  box-shadow: 0 2px rgb(199, 150, 157);
  top: 2px;
}

.cta-atelier:active {
  box-shadow: 0 0 #b38941;
  top: 2px;
}

/* SEPARATEUR-LOGO */

.img-logo img {
  display: block;
  width: 20rem;
  border-radius: 50%;
  margin: 0 auto;
}

.img-logo {
  margin-top: 10rem;
}

/* QUI SUIS JE ? */

#qui-suis-je {
  padding-top: 10rem;
}

.presentation h2 {
  text-align: center;
  font-size: 6rem;
  font-family: var(--font-title);
  margin-top: 10rem;
}

.fil-separateur {
  width: 80px;
  height: 2px;
  background: rgba(179, 137, 65, 0.6);
  margin: 0 auto;
  margin-top: 2rem;
}

.presentation img {
  display: block;
  margin: 0 auto;
  width: 18rem;
  border-radius: 50%;
  margin: 6rem auto;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.18),
    0 10px 15px rgba(0, 0, 0, 0.2);
}

.bio h3 {
  font-family: var(--font-title);
  font-size: 2.7rem;
  font-weight: 900;
}

.bio {
  width: 60%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  line-height: 2;
  gap: 4rem;
  padding: 6rem 3rem;
  margin-top: 10rem;
  box-shadow:
    0 10px 20px rgba(120, 95, 70, 0.08),
    0 30px 60px rgba(120, 95, 70, 0.12);
  border-radius: 1.5rem;
}

.bio p {
  font-size: 1.9rem;
  width: 90%;
}

/* CONTACT */

#contact {
  padding: 14rem 0rem 0rem 0rem;
  background: #f6efe6;
}

.contact-wrapper {
  max-width: 100rem;
  margin: 6rem auto 0 auto;
  padding: 8rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 25px 50px rgba(60, 40, 20, 0.08),
    0 10px 25px rgba(60, 40, 20, 0.05);
}

.contact {
  font-size: 1.9rem;
  padding: 2rem 5%;
  margin: 20rem 0rem 20rem 0rem;
  text-align: center;
}

.contact h2 {
  font-family: var(--font-title);
  font-size: 6rem;
  padding-bottom: 3rem;
}

.contact p {
  font-size: 1.9rem;
  margin-bottom: 12rem;
}

.contact form {
  max-width: 100%;
  height: auto;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
input,
textarea {
  padding: 3rem;
  border: 0.1rem solid var(--color-accent);
  border-radius: var(--radius);
  font-size: 1.6rem;
  font-family: var(--font-body);
  resize: none;
  outline: none;
  background: #f9f6f2;
  transition: all 0.3s ease;
}

button {
  position: relative;
  width: 40%;
  background: #926a20;
  color: var(--color-light);
  border: none;
  border-radius: 3rem;
  padding: 1.2rem 0rem;
  font-size: 2.6rem;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 auto;
  font-weight: 600;
  margin-top: 4rem;
  box-shadow: 0 4px #bb8e41;
  z-index: 2;
  outline: none;
  border: none;
}
button:hover {
  background: #926355;
  transition-duration: 1s ease-in;
  box-shadow: 0 2px rgb(199, 150, 157);
  top: 2px;
}

button:active {
  box-shadow: 0 0 #b38941;
  top: 2px;
}

/* FOOTER */
footer {
  height: auto;
  background: #e4d9c9;
  text-align: center;
  padding: 1rem;
  border-top: 0.2rem dashed var(--color-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 5rem 0rem 5rem 0rem;
}

footer a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.6rem;
}

footer a:hover {
  color: rgb(228, 82, 106);
}

.footer-content {
  width: 40%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.footer-content h2 {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-title);
  color: rgb(228, 82, 106);
  letter-spacing: 1px;
}

.footer-content p {
  font-size: 1.7rem;
}
.coordonnees {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.coordonnees img {
  width: 2rem;
}

.reseaux p {
  font-size: 1.6rem;
  font-weight: 600;
  padding-top: 1rem;
}

.google-maps {
  width: 40%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem;
  gap: 3rem;
}

.google-maps iframe {
  margin: 0 auto;
  width: 40rem;
  height: 30rem;
  border-radius: 1rem;
}

.google-maps h3 {
  font-size: 3rem;
  font-family: var(--font-title);
  color: rgb(228, 82, 106);
}

.google-maps p {
  font-size: 1.5rem;
}

.google-maps a {
  font-size: 1.9rem;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
}

.socials a {
  text-decoration: none;
}

.socials img {
  width: 3rem;
  opacity: 0.8;
  transition: var(--transition);
}
.socials img:hover {
  opacity: 1;
}

.legal {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding-top: 8rem;
  opacity: 0.85;
}

.legal p {
  font-size: 1.3rem;
}

.legal a {
  font-size: 2rem;
  color: rgb(228, 82, 106);
}

.legal a:hover {
  color: var(--color-text);
}

/* PAGE mentions_légales.html/css */

.mentions-legales {
  width: 60%;
  height: auto;
  margin: 0 auto;
  margin: 6rem auto 6rem auto;
  color: var(--color-text);
}

.mentions-legales h1 {
  width: 70%;
  text-align: center;
  color: rgb(201, 102, 119);
  box-shadow: 2px 2px 3px 1px rgb(74, 63, 53, 0.2);
  padding: 1.5rem 0.2rem;
  border-radius: 20px;
  font-size: 2.6rem;
  margin: 0 auto;
}

.mentions-legales h4 {
  font-size: 1.8rem;
  padding: 1rem 0px;
}

.mentions-legales p {
  font-size: 1.6rem;
  padding: 1.5rem 0;
}

/* PAGE_politique_de_confidentialité */

.confidentialite {
  width: 60%;
  height: auto;
  margin: 0 auto;
  margin: 6rem auto 6rem auto;
  color: var(--color-text);
}

.confidentialite h1 {
  width: 70%;
  text-align: center;
  color: rgb(201, 102, 119);
  box-shadow: 2px 2px 3px 1px rgb(74, 63, 53, 0.2);
  padding: 1.5rem 0.2rem;
  border-radius: 20px;
  font-size: 2.6rem;
  margin: 0 auto;
}

.confidentialite h4 {
  font-size: 1.8rem;
  padding: 1rem 0px;
}

.confidentialite p {
  font-size: 1.6rem;
  padding: 1.5rem 0;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE MOBILE
   320px à 768px
========================================================= */
@media screen and (min-width: 320px) and (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    width: 100%;
  }

  .navbar {
    justify-content: space-between;
    padding: 1.2rem 1.6rem;
    gap: 1rem;
  }

  .logo-text {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .logo-text span {
    display: inline;
  }

  .nav-img img {
    width: 2.8rem;
  }

  .burger {
    display: flex;
    width: 3rem;
    height: 1.8rem;
    margin: 0;
    flex-shrink: 0;
  }

  nav {
    position: fixed;
    top: 6.6rem;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    text-align: center;
    transition: height 0.4s ease;
    z-index: 999;
  }

  nav.open {
    height: calc(100vh - 6.6rem);
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    margin-top: 4rem;
    padding: 0 2rem;
  }

  nav a {
    font-size: 2rem;
  }

  .hero {
    min-height: 100vh;
    height: auto;
    padding: 10rem 1.5rem 6rem 1.5rem;
    margin-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 4.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .hero h2 {
    font-size: 2.3rem;
    line-height: 1.4;
    padding: 1rem 3rem;
  }

  .hero h3 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 2rem;
    padding: 1rem 3rem;
  }

  .cta,
  .cta-prestations,
  .cta-creations,
  .cta-temoignages,
  .cta-atelier,
  button {
    width: 100%;
    max-width: 28rem;
    padding: 1rem 1.2rem;
    font-size: 2rem;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
  }

  .cta {
    margin-top: 3rem;
  }

  #prestations {
    margin: 8rem 0;
    padding: 0 1.5rem;
  }

  #prestations h2 {
    font-size: 3.5rem;
    line-height: 1.2;
  }

  #prestations p {
    font-size: 1.7rem;
    line-height: 1.5;
    width: 80%;
    margin: 0 auto;
  }

  #prestations img {
    width: 18rem;
    height: auto;
    margin-top: 5rem;
  }

  .container-card {
    margin-top: 6rem;
    gap: 2.5rem;
    padding: 0;
    background-color: transparent;
  }

  .card {
    width: 90%;
    padding: 2.5rem 2rem;
  }

  .card h3 {
    font-size: 2.3rem;
    padding-left: 0;
  }

  .card ul {
    padding-left: 0;
  }

  .card ul li {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .cta-prestations {
    margin-top: 5rem;
  }

  #creations {
    padding: 8rem 1.5rem;
  }

  #creations h2 {
    font-size: 3.5rem;
    padding-top: 0;
    line-height: 1.2;
  }

  #creations p {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-top: 3rem;
  }

  .galerie {
    width: 100%;
    gap: 2.5rem;
    padding: 5rem 0 3rem 0;
  }

  .image {
    width: 100%;
  }

  .image h3 {
    font-size: 2.4rem;
    padding: 2rem 0;
  }

  .image img {
    width: 100%;
    max-width: 30rem;
    height: 400px;
  }

  .cta-creations {
    margin: 4rem auto 0 auto;
  }

  #temoignages {
    padding: 8rem 1.5rem;
  }

  #temoignages h2 {
    font-size: 3.5rem;
    line-height: 1.2;
  }

  #temoignages p {
    font-size: 1.7rem;
    line-height: 1.5;
  }

  .container-avis {
    gap: 2.5rem;
    padding: 5rem 0;
  }

  .avis {
    width: 100%;
    padding: 2.5rem 2rem;
  }

  blockquote {
    padding: 2rem 0;
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .cta-temoignages {
    margin-bottom: 0;
  }

  .atelier {
    padding: 0 1.5rem;
  }

  .atelier-text h2 {
    font-size: 3.5rem;
    padding-top: 8rem;
    line-height: 1.2;
  }

  .atelier-text p {
    font-size: 1.7rem;
    line-height: 1.6;
  }

  .atelier-creations,
  .atelier-couture,
  .fil-dore {
    flex-direction: column;
    gap: 3rem;
    padding: 6rem 0;
  }

  .atelier-creations h3,
  .atelier-couture h3,
  .fil-dore h3 {
    font-size: 2.7rem;
    line-height: 1.3;
  }

  .atelier-creations p,
  .atelier-couture p,
  .fil-dore p {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0;
    text-align: left;
  }

  .atelier-creations img,
  .atelier-couture img,
  .fil-dore img {
    width: 100%;
    height: auto;
  }

  .img-logo {
    margin-top: 5rem;
    padding: 0 1.5rem;
  }

  .img-logo img {
    width: 11rem;
  }

  #qui-suis-je {
    padding: 8rem 1.5rem 0 1.5rem;
  }

  .presentation h2 {
    font-size: 3.5rem;
    margin-top: 0;
    line-height: 1.2;
  }

  .presentation img {
    width: 10rem;
    margin: 4rem auto;
  }

  .bio {
    width: 100%;
    padding: 3rem 2rem;
    margin-top: 5rem;
    gap: 2.5rem;
  }

  .bio h3 {
    font-size: 2.5rem;
    text-align: center;
  }

  .bio p {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.9;
    text-align: left;
  }

  #contact {
    padding: 8rem 1.5rem 0 1.5rem;
  }

  .contact {
    margin: 8rem 0;
    padding: 0;
  }

  .contact h2 {
    font-size: 3.5rem;
    line-height: 1.2;
  }

  .contact p {
    font-size: 1.7rem;
    line-height: 1.6;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .contact-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 2.5rem 2rem;
    margin: 0 auto;
  }

  .contact form {
    gap: 2rem;
  }

  input,
  textarea {
    padding: 1.8rem;
    font-size: 1.5rem;
  }

  button {
    margin-top: 2rem;
  }

  footer {
    padding: 5rem 1.5rem;
    gap: 4rem;
  }

  .footer-content,
  .google-maps,
  .legal {
    width: 100%;
    padding: 2rem;
  }

  .footer-content h2,
  .google-maps h3 {
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .footer-content p,
  .google-maps p,
  .coordonnees a,
  .legal a {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
    word-break: break-word;
  }

  .google-maps iframe {
    width: 100%;
    height: 24rem;
  }

  .socials {
    padding-top: 1rem;
  }

  .legal {
    padding-top: 2rem;
    gap: 1.5rem;
  }

  .mentions-legales h1 {
    width: 100%;
    font-size: 1.8rem;
  }
  .confidentialite h1 {
    width: 100%;
    font-size: 1.8rem;
  }
}

/* =========================================================
   RESPONSIVE TABLETTE
   769px à 1024px
========================================================= */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  .navbar {
    justify-content: space-between;
    padding: 1.4rem 2.5rem;
    gap: 2rem;
  }

  .logo-text {
    font-size: 3.5rem;
  }

  .nav-img img {
    width: 3.4rem;
  }

  .burger {
    display: flex;
    width: 3.4rem;
    height: 2rem;
    margin: 0;
    flex-shrink: 0;
  }

  nav {
    position: fixed;
    top: 7.5rem;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    text-align: center;
    transition: height 0.4s ease;
    z-index: 999;
  }

  nav.open {
    height: calc(100vh - 7.5rem);
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 5rem;
  }

  nav a {
    font-size: 2.3rem;
  }

  .hero {
    min-height: 100vh;
    height: auto;
    padding: 12rem 3rem 8rem 3rem;
    margin-bottom: 0;
  }

  .hero-content {
    max-width: 90%;
  }

  .hero h1 {
    font-size: 6rem;
    line-height: 1.2;
  }

  .hero h2 {
    font-size: 3rem;
    line-height: 1.4;
    padding: 2rem 2rem;
  }

  .hero h3 {
    font-size: 2rem;
    line-height: 1.6;
    padding: 2rem 2rem;
  }

  .cta,
  .cta-prestations,
  .cta-creations,
  .cta-temoignages,
  .cta-atelier,
  button {
    width: fit-content;
    min-width: 28rem;
    padding: 1.3rem 2.6rem;
    font-size: 2.1rem;
  }

  #prestations {
    margin: 10rem 0;
    padding: 0 3rem;
  }

  #prestations h2,
  #creations h2,
  #temoignages h2,
  .atelier-text h2,
  .presentation h2,
  .contact h2 {
    font-size: 5rem;
    line-height: 1.2;
  }

  #prestations p,
  #creations p,
  #temoignages p,
  .atelier-text p,
  .contact p,
  .bio p,
  .atelier-creations p,
  .atelier-couture p,
  .fil-dore p {
    font-size: 1.8rem;
    line-height: 1.7;
  }

  #prestations img {
    margin-top: 6rem;
  }

  .container-card {
    gap: 3rem;
    margin-top: 8rem;
    background-color: transparent;
  }

  .card {
    width: 100%;
    max-width: 70rem;
    padding: 3rem;
  }

  .cta-prestations {
    margin-top: 6rem;
  }

  #creations {
    padding: 8rem 3rem;
  }

  #creations p {
    padding: 2rem 0rem;
  }

  .galerie {
    width: 100%;
    padding: 6rem 0 3rem 0;
    gap: 3rem;
  }

  .image {
    width: calc(50% - 1.5rem);
  }

  .image img {
    width: 300px;
    height: 400px;
  }

  .image h3 {
    font-size: 2.4rem;
    padding: 2rem 0;
  }

  .cta-creations {
    margin: 5rem auto 0 auto;
  }

  #temoignages {
    padding: 8rem 3rem;
  }

  #temoignages p {
    padding: 2rem 0rem;
  }

  .container-avis {
    gap: 3rem;
    padding: 6rem 0;
  }

  .avis {
    width: 100%;
    max-width: 60rem;
    padding: 3rem;
  }

  blockquote {
    padding: 2rem 0;
    line-height: 1.8;
  }

  .atelier {
    padding: 0 3rem;
  }

  .atelier-creations,
  .atelier-couture,
  .fil-dore {
    flex-direction: column;
    gap: 4rem;
    padding: 8rem 0;
  }

  .atelier-creations img,
  .atelier-couture img,
  .fil-dore img {
    width: 100%;
    max-width: 80rem;
    height: auto;
  }

  .atelier-creations h3,
  .atelier-couture h3,
  .fil-dore h3 {
    font-size: 3rem;
    line-height: 1.3;
  }

  .img-logo img {
    width: 16rem;
  }

  #qui-suis-je {
    padding: 8rem 3rem 0 3rem;
  }

  .bio {
    width: 100%;
    max-width: 80rem;
    padding: 4rem 3rem;
    margin-top: 6rem;
  }

  .bio h3 {
    font-size: 2.8rem;
  }

  #contact {
    padding: 8rem 3rem 0 3rem;
  }

  .contact {
    margin: 10rem 0;
    padding: 0;
  }

  .contact p {
    margin: 3rem 0rem 5rem 0rem;
  }

  .contact-wrapper {
    max-width: 100%;
    padding: 4rem 3rem;
    margin-top: 0;
  }

  input,
  textarea {
    padding: 2rem;
  }

  footer {
    padding: 6rem 3rem;
    gap: 4rem;
  }

  .footer-content,
  .google-maps,
  .legal {
    width: 100%;
    padding: 3rem 0rem;
  }

  .google-maps iframe {
    width: 100%;
    max-width: 50rem;
    height: 30rem;
  }

  .legal {
    padding-top: 2rem;
  }

  .mentions-legales h1 {
    width: 100%;
  }
  .confidentialite h1 {
    width: 100%;
  }
}

/* =========================================================
   AJUSTEMENTS DESKTOP
   1025px et plus
========================================================= */
@media screen and (min-width: 1025px) {
  nav {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    background: transparent;
  }

  .burger {
    display: none;
  }
}
