@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, strong, sub, sup, tt, var,
b, u, i, 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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*========== Colors ==========*/
/*========== Font and typography ==========*/
/*========== Font weight ==========*/
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

*,
body,
input,
button,
select,
textarea {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.938rem;
}

body {
  color: #1a1032;
  transition: background-color 0.4s;
  line-height: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

input,
button {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 500;
  font-family: "Montserrat", "Verdana", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p {
  line-height: 30px;
}

/* ========== HEADER — Design premium & raffiné ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  /* Ombre au scroll */
  /* ---- Marque ---- */
  /* ---- Hamburger ---- */
}
.header--scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  border-bottom-color: transparent;
}
.header a {
  text-decoration: none;
  color: inherit;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.header__logo-link {
  display: flex;
  align-items: center;
}
.header__logo-img {
  width: 52px;
  height: auto;
  transition: transform 0.25s ease;
}
.header__logo-img:hover {
  transform: scale(1.04);
}
.header__divider {
  display: none;
  width: 1px;
  height: 28px;
  background: rgba(26, 16, 50, 0.12);
  flex-shrink: 0;
}
.header__meta {
  display: none;
  flex-direction: column;
  gap: 0.1rem;
}
.header__slogan {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: rgba(26, 16, 50, 0.55);
  white-space: nowrap;
}
.header__places {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgb(161, 19, 103);
  white-space: nowrap;
}
.header #navbar {
  display: flex;
  align-items: center;
  /* Burger → X */
  /* ---- Menu mobile ouvert ---- */
}
.header #navbar #icons {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.header #navbar #icons span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #1a1032;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.header #navbar.active #icons span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header #navbar.active #icons span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.header #navbar.active #icons span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.header #navbar .menu {
  display: none;
  margin: 0;
  padding: 0;
}
.header #navbar .menu li {
  list-style: none;
}
.header #navbar.active .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  background: #ffffff;
  padding: 3rem 2rem;
  overflow-y: auto;
}
.header #navbar.active .menu li {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.header #navbar.active .menu li a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #1a1032;
  padding: 0.35rem 0;
  transition: color 0.25s ease;
}
.header #navbar.active .menu li a i:not(.submenu-arrow) {
  font-size: 0.9rem;
  color: rgb(161, 19, 103);
}
.header #navbar.active .menu li a .submenu-arrow {
  font-size: 0.55rem;
  transition: transform 0.25s ease;
}
.header #navbar.active .menu li.actif > a, .header #navbar.active .menu li:hover > a {
  color: rgb(161, 19, 103);
}
.header #navbar.active .menu li.nav-cta > a {
  color: rgb(161, 19, 103);
  border: 1.5px solid rgba(161, 19, 103, 0.4);
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
}
.header #navbar.active .menu li.has-submenu {
  text-align: center;
}
.header #navbar.active .menu li.has-submenu .submenu {
  display: none !important;
  list-style: none;
  padding: 0.7rem 0 0 1.2rem;
  margin-top: 0.4rem;
  border-left: 2px solid rgba(161, 19, 103, 0.2);
}
.header #navbar.active .menu li.has-submenu .submenu li {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}
.header #navbar.active .menu li.has-submenu .submenu li a {
  color: rgba(26, 16, 50, 0.65);
}
.header #navbar.active .menu li.has-submenu .submenu li.actif a {
  color: rgb(161, 19, 103);
}
.header #navbar.active .menu li.has-submenu.submenu-open .submenu {
  display: flex !important;
  flex-direction: column;
}
.header #navbar.active .menu li.has-submenu.submenu-open .submenu-arrow {
  transform: rotate(180deg);
}

/* ---- Tablette ≥ 600px ---- */
@media screen and (min-width: 600px) {
  .header {
    padding: 0 2rem;
  }
  .header__logo-img {
    width: 58px;
  }
  .header__divider {
    display: block;
  }
  .header__meta {
    display: flex;
  }
}
/* ---- Desktop ≥ 1127px : menu horizontal ---- */
@media screen and (min-width: 1127px) {
  .header {
    height: 96px;
    padding: 0 2.5rem;
  }
  .header__logo-img {
    width: 62px;
  }
  .header #navbar #icons {
    display: none;
  }
  .header #navbar .menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.8rem;
    padding: 0;
    margin: 0;
  }
  .header #navbar .menu li {
    position: relative;
    font-family: "Montserrat", "Verdana", sans-serif;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    list-style: none;
    /* Contact CTA pill */
    /* Sous-menu */
  }
  .header #navbar .menu li a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(26, 16, 50, 0.65);
    padding: 0.45rem 0;
    position: relative;
    transition: color 0.25s ease;
    /* Cacher les icônes sur desktop */
    /* Underline fin */
  }
  .header #navbar .menu li a i:not(.submenu-arrow) {
    display: none;
  }
  .header #navbar .menu li a .submenu-arrow {
    font-size: 0.48rem;
    margin-left: 0.15rem;
    transition: transform 0.25s ease;
  }
  .header #navbar .menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 0;
    height: 1px;
    background: rgba(161, 19, 103, 0.7);
    border-radius: 2px;
    transition: width 0.25s ease;
  }
  .header #navbar .menu li:hover > a {
    color: #1a1032;
  }
  .header #navbar .menu li:hover > a::after {
    width: 70%;
  }
  .header #navbar .menu li.actif > a {
    color: rgb(161, 19, 103);
  }
  .header #navbar .menu li.actif > a::after {
    width: 70%;
  }
  .header #navbar .menu li.nav-cta a {
    color: rgb(161, 19, 103);
    border: 1.5px solid rgba(161, 19, 103, 0.35);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }
  .header #navbar .menu li.nav-cta a::after {
    display: none;
  }
  .header #navbar .menu li.nav-cta:hover a, .header #navbar .menu li.nav-cta.actif a {
    background: rgb(161, 19, 103);
    border-color: rgb(161, 19, 103);
    color: #fff;
  }
  .header #navbar .menu li.has-submenu {
    /* Pont transparent qui couvre le gap et maintient le hover */
  }
  .header #navbar .menu li.has-submenu > a {
    cursor: pointer;
  }
  .header #navbar .menu li.has-submenu:hover > a .submenu-arrow {
    transform: rotate(180deg);
  }
  .header #navbar .menu li.has-submenu.actif > a::after {
    display: none;
  }
  .header #navbar .menu li.has-submenu::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 14px;
    display: none;
  }
  .header #navbar .menu li.has-submenu:hover::before {
    display: block;
  }
  .header #navbar .menu li.has-submenu .submenu {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(0, 0, 0, 0.09);
    z-index: 300;
    list-style: none;
    padding: 0.5rem 0;
    /* Petit triangle */
  }
  .header #navbar .menu li.has-submenu .submenu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 1px solid rgba(0, 0, 0, 0.07);
  }
  .header #navbar .menu li.has-submenu .submenu li {
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    padding: 0;
  }
  .header #navbar .menu li.has-submenu .submenu li::after {
    display: none !important;
  }
  .header #navbar .menu li.has-submenu .submenu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    color: rgba(26, 16, 50, 0.7);
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
    border-radius: 0;
  }
  .header #navbar .menu li.has-submenu .submenu li a::after {
    display: none !important;
  }
  .header #navbar .menu li.has-submenu .submenu li a i {
    display: flex !important;
    font-size: 0.68rem;
    color: rgb(161, 19, 103);
  }
  .header #navbar .menu li.has-submenu .submenu li.actif a {
    color: rgb(161, 19, 103);
  }
  .header #navbar .menu li.has-submenu .submenu li:hover a {
    color: #1a1032;
    background: rgba(161, 19, 103, 0.04);
  }
  .header #navbar .menu li.has-submenu:hover .submenu {
    display: block !important;
  }
}
/* ---- Grand desktop ≥ 1360px ---- */
@media screen and (min-width: 1360px) {
  .header {
    padding: 0 4rem;
  }
  .header__logo-img {
    width: 68px;
  }
  .header #navbar .menu {
    gap: 2.2rem;
  }
  .header #navbar .menu li {
    font-size: 0.78rem;
    letter-spacing: 1.2px;
  }
}
/* ---- Très grand desktop ≥ 1600px ---- */
@media screen and (min-width: 1600px) {
  .header {
    padding: 0 6rem;
  }
  .header #navbar .menu {
    gap: 2.8rem;
  }
  .header #navbar .menu li {
    font-size: 0.82rem;
  }
}
.footer {
  background-color: #ece5e9;
  color: rgba(26, 16, 50, 0.65);
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.88rem;
  /* ---- Partie haute : colonnes ---- */
  /* ---- Marque / logo ---- */
  /* ---- Colonnes d'infos ---- */
  /* ---- Barre copyright ---- */
}
.footer a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.footer a:hover {
  color: rgb(161, 19, 103);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer__logo {
  width: 80px;
}
.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(26, 16, 50, 0.4);
  margin: 0;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(26, 16, 50, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(26, 16, 50, 0.5);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer__social a:hover {
  background: rgb(161, 19, 103);
  color: #fff;
  border-color: rgb(161, 19, 103);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.footer__col-title {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a1032;
  margin: 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(26, 16, 50, 0.1);
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__list li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}
.footer__list li i {
  color: rgb(161, 19, 103);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer__bottom {
  border-top: 1px solid rgba(26, 16, 50, 0.1);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(26, 16, 50, 0.35);
}
.footer__bottom p {
  margin: 0;
}

/* Desktop ≥ 768px */
@media screen and (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 5rem 4rem 4rem;
  }
  .footer__brand {
    align-items: flex-start;
    text-align: left;
  }
  .footer__col {
    text-align: left;
  }
  .footer__col-title {
    text-align: left;
  }
  .footer__list li {
    justify-content: flex-start;
  }
}
.button {
  padding: 10px;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
  text-align: center;
}
.button.button-primary {
  background-color: rgb(161, 19, 103);
}
.button.button-secondary {
  background-color: rgb(111, 174, 35);
}

.button:hover {
  filter: brightness(90%);
  cursor: pointer;
}

.login-form {
  width: 100%;
  max-width: 420px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin: 2rem auto;
}
.login-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}
.login-form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin-bottom: 0.35rem;
}
.login-form__remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
}
.login-form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.login-form__forgot {
  font-size: 0.875rem;
  color: #6b7280;
}
.login-form__forgot:hover {
  color: #374151;
}

/*# sourceMappingURL=app.output.css.map */
