/* L'ESSENTIEL Paris — reconstructed theme stylesheet
   Faithful recreation of the original custom PHP-CMS Bootstrap layout.
   Palette: warm taupe / champagne gold / charcoal — luxury beauty & wellness. */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  color: #4a4540;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; border: 0; }

a { color: #b89b5e; text-decoration: none; transition: color .2s ease; }
a:hover, a:focus { color: #9a7f44; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 400;
  color: #3a352f;
  margin: 0 0 .4em;
  line-height: 1.25;
}

p { margin: 0 0 1em; }
hr { border: 0; border-top: 1px solid #e7e0d4; margin: 14px auto; width: 60px; }

/* ---------- Bootstrap-style grid (subset) ---------- */
.container { width: 100%; max-width: 1170px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.row::after { content: ""; display: table; clear: both; }
[class*="col-"] { padding: 0 15px; width: 100%; }
.col-xs-12 { width: 100%; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.clearfix::after { content: ""; display: table; clear: both; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

@media (min-width: 768px) {
  .col-sm-2 { width: 16.6667%; }
  .col-sm-5 { width: 41.6667%; }
  .col-md-3 { width: 25%; }
  .row { flex-wrap: nowrap; }
  .footer .row { flex-wrap: wrap; }
}

/* ---------- Header ---------- */
.header {
  background: #ffffff;
  border-bottom: 1px solid #efe9dd;
  padding: 28px 0 0;
  position: relative;
}
.header .logo { display: inline-block; padding: 6px 0 18px; }
.header .logo img { max-height: 96px; width: auto; }

.navbar { margin: 0; border: 0; min-height: auto; background: transparent; }
.navbar-default { background: transparent; border: 0; }
.navbar-header { float: none; }
.navbar-toggle {
  display: none;
  position: absolute; top: -64px; right: 12px;
  background: transparent; border: 1px solid #d8cdb6; border-radius: 3px;
  padding: 9px 10px; cursor: pointer;
}
.navbar-toggle .icon-bar {
  display: block; width: 22px; height: 2px; background: #9a7f44; border-radius: 1px;
  margin: 4px 0;
}

.nav { list-style: none; margin: 0; padding: 0; }
.navbar-nav.menu_principal {
  display: flex; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid #efe9dd;
  padding: 4px 0;
}
.navbar-nav.menu_principal > li { position: relative; }
.navbar-nav.menu_principal > li > a {
  display: block;
  padding: 16px 18px;
  color: #5a534a;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.navbar-nav.menu_principal > li > a:hover,
.navbar-nav.menu_principal > li > a:focus { color: #b89b5e; }
.navbar-nav.menu_principal > li > a .title { display: inline-block; }
.navbar-nav.menu_principal > li.active > a { color: #b89b5e; }

.navbar-collapse { width: 100%; }

/* search */
.search { position: absolute; top: 34px; right: 0; }
.search .loupe::before {
  font-family: 'FontAwesome'; content: "\f002"; color: #b89b5e; font-size: 16px;
}
.search form, .search-mobile { display: none; }
.search-mobile { display: none; }

/* ---------- Home: Themes diaporama ---------- */
.home { background: #fcfaf6; }

.themes { display: flex; flex-wrap: wrap; }
.themes-diapo-image {
  position: relative;
  width: 25%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.themes-diapo-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40,34,28,.78) 0%, rgba(40,34,28,.15) 55%, rgba(40,34,28,0) 100%);
  transition: background .3s ease;
}
.themes-diapo-image:hover::before {
  background: linear-gradient(to top, rgba(154,127,68,.82) 0%, rgba(58,48,34,.35) 60%, rgba(58,48,34,.05) 100%);
}
.themes-diapo-content {
  position: relative; z-index: 2; color: #fff; padding: 22px 22px 26px; width: 100%;
}
.themes-diapo-content h3 {
  color: #fff; font-size: 22px; margin-bottom: .35em;
  text-transform: uppercase; letter-spacing: .04em;
}
.themes-diapo-content p { color: rgba(255,255,255,.92); font-size: 13px; margin: 0; line-height: 1.5; }
.themes-diapo-content .plus {
  position: absolute; top: -14px; right: 22px; width: 34px; height: 34px; opacity: .9;
}

/* ---------- Home: Methodes ---------- */
.methodes { padding: 60px 0 50px; background: #fcfaf6; }
.methodes h1 {
  text-align: center; font-size: 26px; text-transform: uppercase;
  letter-spacing: .08em; color: #9a7f44; margin-bottom: 40px; font-weight: 400;
}
.methodes .row { justify-content: center; }
.methodes-block { width: 100%; }
@media (min-width: 768px) { .methodes-block { width: 33.3333%; } }
@media (min-width: 992px) { .methodes-block { width: 25%; } }
.methodes-block .col-md-3 { width: 100%; text-align: center; padding: 0 22px 36px; }
.methodes-block .vignette {
  display: block; position: relative; width: 130px; height: 130px; margin: 0 auto 18px;
  border-radius: 50%; overflow: hidden; border: 3px solid #ece3d1;
}
.methodes-block .vignette img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .35s ease;
}
.methodes-block .vignette img + img { opacity: 0; }
.methodes-block .vignette:hover img + img { opacity: 1; }
.methodes-block h2 {
  font-size: 19px; color: #3a352f; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px;
}
.methodes-block h3 { font-size: 14px; color: #b89b5e; font-weight: 400; margin: 0 0 6px; min-height: 18px; }
.methodes-block p { font-size: 13.5px; color: #6a6258; line-height: 1.6; }

/* ---------- Home: Savoir plus ---------- */
.savoir-plus { display: flex; flex-wrap: wrap; }
.savoir-plus-block {
  position: relative; width: 50%; min-height: 260px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.savoir-plus-block::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(40,34,28,.5); transition: background .3s ease;
}
.savoir-plus-block:hover::before { background: rgba(154,127,68,.62); }
.savoir-plus-content { position: relative; z-index: 2; color: #fff; }
.savoir-plus-content h2 {
  color: #fff; font-size: 30px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px;
}
.savoir-plus-content h3 { color: rgba(255,255,255,.92); font-size: 15px; font-weight: 400; }

/* ---------- Home: About ---------- */
.about { padding: 64px 0; background: #fff; }
.about h1, .about .section-title {
  text-align: center; font-size: 27px; color: #9a7f44; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 14px; font-weight: 400;
}
.about h2, .about h3 {
  text-align: center; font-size: 17px; color: #5a534a; font-weight: 400; letter-spacing: .03em;
  margin-bottom: 26px; text-transform: uppercase;
}
.about p { max-width: 860px; margin: 0 auto 14px; text-align: center; color: #5a534a; font-size: 15px; }
.about-plus {
  display: inline-block; margin-top: 18px; padding: 13px 28px;
  background: #b89b5e !important; color: #fff !important;
  text-transform: uppercase; letter-spacing: .06em; font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  max-width: 520px; line-height: 1.5; border-radius: 2px;
}
.about-plus:hover { background: #9a7f44 !important; color: #fff !important; }

/* ---------- Home: Presse ---------- */
.presse { padding: 56px 0 64px; background: #fcfaf6; }
.presse h1, .presse .section-title {
  text-align: center; font-size: 26px; color: #9a7f44; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 36px; font-weight: 400;
}
.marques {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 26px;
  max-width: 1000px; margin: 0 auto; padding: 0 15px;
}
.marques .marque {
  display: block; width: 200px; height: 120px;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  filter: grayscale(100%); opacity: .65; transition: all .3s ease;
  background-color: #fff; border: 1px solid #ece3d1; border-radius: 3px;
}
.marques .marque:hover { filter: grayscale(0); opacity: 1; }

/* ---------- Footer ---------- */
.footer { background: #2e2a25; padding: 0; }
.footer .navbar { background: transparent; }
.footer .container { padding: 26px 15px; }
.footer .row { align-items: center; }
.footer .menu_footer { display: flex; flex-wrap: wrap; gap: 6px 20px; padding: 0; margin: 0; }
.footer .menu_footer li { list-style: none; }
.footer .menu_footer a { color: #cdbf9f; font-size: 13px; }
.footer .menu_footer a:hover { color: #fff; }
.footer .col-sm-2 { text-align: center; }
.footer .col-sm-2 img { max-height: 64px; opacity: .9; }
.footer .col-sm-5.text-right p { color: #9a9388; font-size: 13px; margin: 0; }
.footer .navbar-left { float: none; }

/* ---------- Inner / content pages ---------- */
.page-hero {
  background: linear-gradient(135deg, #3a352f 0%, #5a4f3c 100%);
  color: #fff; padding: 64px 0; text-align: center;
}
.page-hero h1 { color: #fff; font-size: 34px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.page-hero .lead { color: rgba(255,255,255,.9); font-size: 16px; max-width: 720px; margin: 0 auto; }

.content-section { padding: 56px 0; }
.content-section.alt { background: #fcfaf6; }
.content-section h2 {
  font-size: 24px; color: #9a7f44; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 18px;
}
.content-section h3 { font-size: 18px; color: #3a352f; margin: 28px 0 8px; }
.content-section p, .content-section li { color: #5a534a; font-size: 15.5px; }
.content-section ul { padding-left: 22px; }
.content-section ul li { margin-bottom: 8px; }
.content-narrow { max-width: 820px; margin: 0 auto; }

.cards { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 30px; }
.card-item {
  flex: 1 1 280px; background: #fff; border: 1px solid #ece3d1; border-radius: 4px;
  padding: 28px 26px; box-shadow: 0 2px 12px rgba(58,48,34,.05);
}
.card-item h3 { margin-top: 0; color: #9a7f44; }
.card-item .icon { font-size: 28px; color: #b89b5e; margin-bottom: 10px; display: block; }

.info-block {
  background: #fff; border: 1px solid #ece3d1; border-left: 4px solid #b89b5e;
  border-radius: 3px; padding: 24px 28px; margin: 26px 0; max-width: 820px;
}
.info-block .label { text-transform: uppercase; letter-spacing: .06em; font-size: 12px; color: #b89b5e; font-family: 'Montserrat', sans-serif; }

.tarif-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.tarif-table th, .tarif-table td { padding: 14px 16px; border-bottom: 1px solid #ece3d1; text-align: left; }
.tarif-table th { background: #faf6ee; color: #9a7f44; text-transform: uppercase; font-size: 12px; letter-spacing: .05em; font-family: 'Montserrat', sans-serif; }
.tarif-table td:last-child { text-align: right; color: #3a352f; font-weight: 600; white-space: nowrap; }

.tbl-scroll { width: 100%; overflow-x: auto; }

.btn-essentiel {
  display: inline-block; padding: 14px 30px; background: #b89b5e; color: #fff;
  text-transform: uppercase; letter-spacing: .06em; font-size: 13px; border-radius: 2px;
  font-family: 'Montserrat', sans-serif; border: 0; cursor: pointer;
}
.btn-essentiel:hover { background: #9a7f44; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .themes-diapo-image { width: 50%; }
}
@media (max-width: 767px) {
  .navbar-toggle { display: block; }
  .navbar-collapse { display: none; }
  .navbar-collapse.in { display: block; }
  .navbar-nav.menu_principal { flex-direction: column; }
  .navbar-nav.menu_principal > li > a { padding: 13px 18px; border-bottom: 1px solid #f3eee2; text-align: center; }
  .themes-diapo-image { width: 100%; min-height: 240px; }
  .savoir-plus-block { width: 100%; }
  .search { display: none; }
  .header .logo img { max-height: 72px; }
  .footer .col-sm-5, .footer .col-sm-2 { width: 100%; text-align: center; margin-bottom: 14px; }
  .footer .col-sm-5.text-right { text-align: center; }
  .footer .menu_footer { justify-content: center; }
  .page-hero h1 { font-size: 26px; }
  .about p, .content-section p { font-size: 15px; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .navbar-nav.menu_principal > li > a { font-size: 13px; }
}
