@charset "UTF-8";
@font-face {
  font-family: "inter";
  src: url("fonts/inter.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "crimson";
  src: url("fonts/crimson.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.fond_couleur,
.fond-clair,
.fond_couleur *,
.fond-clair *,
section,
section * {
  box-sizing: border-box;
}

.fond_couleur,
.fond-clair {
  width: 100%;
  display: block;
}

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Styles de base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fefcf8;
}

a {
  text-decoration: none;
}

.margin-bottom {
  margin-bottom: 30px;
}

.margin-top {
  margin-top: 30px;
}

strong {
  color: #8B7355;
}

section {
  padding-bottom: 30px;
}

/* Menu de navigation */
#navbar {
  width: 100%;
  position: fixed;
  z-index: 1000;
}
#navbar img {
  width: 25px;
  padding: 10px;
}

#navbar #barre {
  background-color: #fefcf8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#navbar #barre nav {
  background-color: #fefcf8;
  color: #2c2c2c;
  padding: 7px 30px;
  height: 54px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

#navbar #barre nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-self: center;
}

#navbar #barre nav ul li {
  position: relative;
  margin: 0;
}

#navbar #barre nav ul li a {
  display: block;
  color: #2c2c2c;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

#navbar #barre nav ul li .menu {
  padding: 15px 20px;
}

#navbar #barre nav ul li a:hover, #navbar #barre nav ul li a.active {
  color: #cbbfaf;
}

#navbar #barre nav ul li {
  /* ===== Sous-menu ===== */
}

#navbar #barre nav ul li {
  /* Apparition du sous-menu au survol */
}

#navbar #barre nav ul li:hover > ul.submenu {
  display: block;
}

.menu_mobile {
  display: none;
}

#navbar #barre nav ul li .menu_desktop a {
  padding: 0;
}

#navbar #barre nav ul li .menu_desktop a button:hover {
  color: #cbbfaf;
}

nav a #logo {
  width: 125px;
}

#burger {
  display: none;
}

/* Entete video */
h1 {
  font-family: "crimson", sans-serif;
  text-align: center;
}

.content .title-animated {
  font-style: italic;
  font-size: 6rem;
  animation: float 2s ease-in-out infinite alternate;
  text-shadow: rgba(254, 252, 248, 0.5) 0px 0px 14.9552px, rgba(254, 252, 248, 0.3) 0px 0px 24.9552px, rgba(139, 115, 85, 0.2) 0px 0px 34.9552px;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.content p {
  font-size: 1.25rem;
  margin-top: 20px;
}
.content .boutons-home {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}
.content .boutons-home button {
  font-family: inherit;
  font-size: 16px;
  padding: 15px 35px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.content .boutons-home button.decouvrir {
  background-color: #8B7355;
  color: #fff;
  border: none;
}
.content .boutons-home button.decouvrir:hover {
  background-color: rgb(107.3526785714, 88.8169642857, 65.6473214286);
}
.content .boutons-home button:not(.decouvrir) {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.content .boutons-home button:not(.decouvrir):hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* plein écran */
  overflow: hidden;
  background-color: #2c2c2c;
}

/* La vidéo prend tout l'espace et reste centrée */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1; /* derrière le contenu */
  object-fit: cover; /* garde le ratio et couvre l'écran */
  opacity: 0.1;
}

/* Contenu devant la vidéo */
.content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* Qui suis-je ? */
.fond_couleur {
  scroll-margin-top: 54px;
  background-color: #f5f1eb;
}

#quisuisje {
  width: 100%;
  background-image: url(images/quisuisje.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#quisuisje .texte {
  width: 55%;
  margin: 0;
  padding-right: 80px;
}

.texte {
  text-align: justify;
}
.texte h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-align: left;
}
.texte h2 {
  font-size: 18px;
  font-style: italic;
  color: rgb(211, 193.4, 167);
  margin-bottom: 1.5rem;
}
.texte h3 {
  font-size: 20px;
  font-family: "crimson", sans-serif;
}
.texte p {
  line-height: 23px;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #333;
}
.texte .pictos {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}
.texte .pictos a {
  color: #2c2c2c;
}
.texte .pictos a:hover {
  color: #cbbfaf;
}
.texte .pictos img {
  align-self: flex-start;
  width: 45px;
  height: 45px;
}
.texte .pictos .texte-pictos {
  align-self: flex-start;
}
.texte .pictos .texte-pictos h3 {
  text-align: left;
}
.texte .pictos .texte-pictos p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Ce que je propose */
.fond-clair {
  scroll-margin-top: 54px;
}

.texte {
  padding: 45px 0 30px 0;
  width: 55%;
  margin: 0 auto;
  text-align: center;
}
.texte h1 {
  text-align: center;
}
.texte h3 {
  font-size: 30px;
}
.texte p {
  text-align: justify;
}
.texte .star {
  width: 35px;
}
.texte .star2 {
  width: 16px;
}

/* Galerie 1 */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

#prev1 {
  left: 30px;
}

#next1 {
  right: 30px;
}

/* Galerie 2 */
.gallery2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery2 img:hover {
  transform: scale(1.03);
}

/* Lightbox 2 */
.lightbox2 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox2.active {
  display: flex;
}

.lightbox2 img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

#prev2 {
  left: 30px;
}

#next2 {
  right: 30px;
}

.tattoo_reparateur {
  background-color: #f5f1eb;
  padding: 45px 60px 30px 60px;
  border-radius: 30px;
}
.tattoo_reparateur h2 {
  font-weight: bold;
  font-size: 22px;
}

/* Les tarifs */
#tarifs h1 {
  text-align: center;
}
#tarifs h2 {
  text-align: center;
}
#tarifs .tarifs-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#tarifs .tarifs-cards .card {
  background-color: #fefcf8;
  padding: 22px 8px;
  width: 220px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
#tarifs .tarifs-cards .card h3 {
  font-family: "crimson", sans-serif;
  font-size: 30px;
  margin-bottom: 15px;
  color: #2c2c2c;
}
#tarifs .tarifs-cards .card .prix {
  font-size: 1.8rem;
  color: #8B7355;
  margin-bottom: 5px;
  text-align: center;
  font-family: "crimson", sans-serif;
}
#tarifs .tarifs-cards .card .detail {
  font-size: 0.95rem;
  color: #cbbfaf;
  text-align: center;
}
#tarifs .tarifs-cards .card p {
  margin-bottom: 0;
}

.container .texte {
  width: 100%;
  padding: 0 0 20px 0;
}

#texte-tarifs {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 36px auto;
  background-color: #fefcf8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  background-image: url(images/contact.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#texte-tarifs .texte {
  padding: 18px 59px;
  width: 55%;
  margin: 0;
  padding-right: 80px;
}

#processus {
  width: 100%;
}
#processus .texte {
  width: 100%;
}
#processus .texte .tarifs-cards {
  margin-top: 50px;
}
#processus .texte .tarifs-cards .card img {
  width: 40px;
}
#processus .texte .tarifs-cards .card h3 {
  margin-top: 10px;
  margin-bottom: 5px;
}

/* Les soins */
.soins-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

.soins-more.open {
  max-height: 3000px; /* assez grand pour contenir le texte */
  opacity: 1;
}

.btn-soins {
  margin-top: 20px;
  border: 1px solid #000;
  padding: 10px 18px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-soins:hover {
  background: #000;
  color: #fff;
}

#soins {
  display: flex;
  justify-content: center;
  align-items: center;
}

h4 {
  font-weight: bold;
  font-size: 20px;
  color: #8B7355;
  margin-bottom: 20px;
  margin-top: 40px;
}

p span {
  font-weight: bold;
}

/* Vos témoignages */
#temoignages h1 {
  text-align: center;
}
#temoignages h2 {
  text-align: center;
}
#temoignages .tarifs-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#temoignages .tarifs-cards img {
  width: 20px;
}
#temoignages .tarifs-cards .card {
  background-color: #fefcf8;
  padding: 20px 30px;
  width: 220px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
#temoignages .tarifs-cards .card h3 {
  font-family: "crimson", sans-serif;
  font-size: 30px;
  margin-bottom: 15px;
  color: #2c2c2c;
}
#temoignages .tarifs-cards .card .prix {
  font-size: 1.8rem;
  color: #8B7355;
  margin-bottom: 5px;
  text-align: center;
  font-family: "crimson", sans-serif;
}
#temoignages .tarifs-cards .card .detail {
  font-size: 0.95rem;
  color: #cbbfaf;
  text-align: center;
}
#temoignages .tarifs-cards .card p {
  font-size: 14px;
  line-height: 23px;
  margin-top: 13px;
  margin-bottom: 20px;
}
#temoignages .tarifs-cards .card span {
  color: #cbbfaf;
}

/* Me contacter */
#contact {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#contact .video2 {
  width: 30%;
}
#contact .video2 video {
  width: 70%;
  height: auto;
  display: block;
  border-radius: 30px;
}
#contact h1 {
  text-align: left;
}
#contact h2 {
  text-align: left;
}
#contact .texte {
  width: 55%;
  margin: 0;
  padding-right: 80px;
}
#contact button {
  all: unset;
  font-size: 16px;
  padding: 15px 35px;
  border-radius: 30px;
  cursor: pointer;
  background-color: #8B7355;
  color: white;
  transition: all 0.3s ease;
  width: 70%;
  margin-top: 30px;
}
#contact button:hover {
  background-color: #2c2c2c;
}

#footer_general {
  text-align: center;
  color: white;
  background-color: #2c2c2c;
  padding: 35px;
  font-size: 12px;
  line-height: 30px;
}
#footer_general img {
  width: 30px;
}
#footer_general h1 {
  font-size: 20px;
  margin-bottom: 15px;
}
#footer_general span {
  font-size: 8px;
}

/* ✅ RESPONSIVE */
/* MOBILE */
@media (max-width: 900px) {
  h1 {
    font-size: 40px;
  }
  .texte h1 {
    font-size: 40px;
  }
  .gallery2 img {
    width: 100%;
  }
  #soins img {
    display: none;
  }
  #temoignages .tarifs-cards .card {
    width: 95%;
  }
  #contact {
    display: block;
  }
  #contact .video2 {
    display: none;
  }
  #contact h1 {
    text-align: center;
  }
  #contact h2 {
    text-align: center;
  }
  .content .boutons-home {
    display: block;
  }
  .content .boutons-home button.decouvrir {
    margin-bottom: 20px;
  }
  .content p {
    font-size: 15px;
  }
  .background-video {
    left: 0;
    top: 0;
    transform: none;
  }
  #tarifs .tarifs-cards {
    flex-direction: column;
    align-items: center;
  }
  #tarifs .tarifs-cards .card {
    width: 80%;
  }
  #barre {
    height: 64px;
  }
  #navbar #barre nav {
    display: block;
  }
  #navbar #barre nav .contenu_nav {
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: 64%;
    position: absolute;
    right: 9px;
  }
  #navbar #barre nav .contenu_nav .menu_mobile {
    margin-top: 13px;
    margin-right: 11px;
  }
  #navbar img {
    padding: 0;
  }
  .menu_mobile {
    display: block;
  }
  .menu_desktop {
    display: none;
  }
  /* Afficher le hamburger */
  #burger {
    display: block;
    position: absolute;
    top: 9px;
    left: 19px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #2c2c2c;
  }
  #telephone {
    display: none !important;
  }
  #reservation_reseaux {
    display: none !important;
  }
  #entete-barre {
    width: 90% !important;
    margin: 13px auto 13px auto;
  }
  #navbar #barre nav ul li {
    background-color: #fefcf8;
  }
  #navbar #barre nav ul li a {
    font-size: 20px;
    width: 65%;
    margin: 0 auto;
    text-align: left;
  }
  #navbar #barre #entete-barre {
    display: block;
    position: relative;
  }
  #navbar #barre #entete-barre #logo {
    position: absolute;
    right: 0;
    top: 2px;
  }
  /* Menu caché par défaut */
  #barre nav > ul {
    display: none !important;
    flex-direction: column;
    background: white;
    padding: 20px;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  /* Quand le menu est ouvert */
  #burger.open + nav > ul {
    display: block !important;
  }
  /* Cacher les sous-menus par défaut */
  .submenu {
    display: none;
    padding: 10px 20px;
    width: 99%;
    border: 2px solid white;
    line-height: 13px;
  }
  .submenu a {
    font-size: 16px !important;
  }
  /* Afficher quand ouvert */
  .submenu.open {
    display: block;
  }
  /* Style du bouton dropdown */
  .dropdown-toggle {
    width: 65%;
    padding: 15px 20px;
    border: none;
    font-size: 20px;
    margin: 0 auto;
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .dropdown-toggle .arrow {
    display: block;
  }
  .dropdown-toggle .arrow img {
    width: 20px;
  }
  .mobile-none {
    display: none;
  }
  .content .title-animated {
    font-size: 4rem;
  }
  #quisuisje .texte {
    width: 100%;
    padding: 20px;
  }
  #quisuisje {
    display: block;
    background-image: none;
    background: #f5f1eb;
  }
  .texte {
    width: 100% !important;
    padding: 20px !important;
  }
  #texte-tarifs {
    width: 80%;
    display: block;
    background-image: none;
  }
  #texte-tarifs .texte {
    padding: 18px 59px;
    width: 55%;
    margin: 0;
    padding-right: 80px;
  }
  #soins {
    flex-direction: column;
  }
  #soins img {
    width: 100%;
    height: auto;
  }
  .gallery,
  .gallery2 {
    grid-template-columns: 1fr;
    display: grid;
  }
}

/*# sourceMappingURL=style.css.map */
