/* ==========================================================================
   Mini CSS library (mobile-first)
   - Variables faciles à modifier
   - Utilitaires réutilisables (u-*)
   ========================================================================== */

:root {
  /* Colors */
  --c-bg: #ffffff;
  --c-ink: #101018;
  --c-muted: #6e6f79;

  --c-header: #1d1d24;
  /* header dark */
  --c-headerText: #ffffff;
  --c-headerTextMuted: rgba(255, 255, 255, .78);

  --c-accent: #f8590d;
  /* orange */
  --c-accentText: #ffffff;

  --c-paper: #F5F2EB;
  /* section selection background */
  --c-cardBar: #2a2a33;

  /* Layout */
  --container: 1350px;
  --container2: 1300px;
  --gutter: 18px;

  /* Sizing */
  --headerH: 64px;
  /* mobile */
  --headerHDesktop: 65px;
  /* matches header_inscroll_desktop */
  --radius-pill: 999px;
  --radius-md: 10px;

  /* Type (tu changeras la police après) */
  --ff: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Shadows */
  --shadow-1: 0 10px 30px rgba(0, 0, 0, .16);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--ff);
  background: var(--c-bg);
  color: var(--c-ink);
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.up-heading-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  text-align: center;
  color: #0f0f16;
}

.heading-title {
  line-height: 1.1em;
  font-size: 36px;
  margin: 10px 0 22px;
  text-align: center;
  color: #0f0f16;
  text-transform: uppercase;
}

.heading-title-h3 {
  font-size: 18px;
  color: #0f0f16;
  margin: 0 0 18px;
  /* line-height: 1.1; */
  line-height: 1.2;
  text-transform: uppercase;
}

.text-muted {
  color: #6e6f79 !important;
  cursor: text;
}

.text-p {
  margin-bottom: 30px;
  line-height: 1.6em;
  font-size: 1em;
}

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

.row-to-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.facilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.facility {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgb(224, 224, 224);
  padding: 50px 10px;
  text-align: center;
  font-size: 0.8rem;
  min-width: 165px;
}

.facility img {
  width: 55px;
}

.facility span {
  margin-top: 10px;
}

/* --- Utilities ---------------------------------------------------------- */
.u-container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;

}

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

.tarif {
  margin-top: 0;
  width: 340px;
}

.u-container2 {
  width: min(var(--container2), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-srOnly {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  border: 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  padding: 7px 7px 7px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  background: var(--c-accent);
  color: var(--c-accentText);
  text-transform: uppercase;
  gap: 20px;
}

.btn-header {
  padding: 15px 20px 15px 20px;
}

.btn:hover {
  background: #E44A00;
}

.arrow {
  background: white;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow2 {
  background: #f8590d;
}

.sc_services_item_price_dots::after {
  content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
  display: block;
  font-size: 20px;
  color: var(--theme-color-text_light);
  margin-bottom: 10px;
}

.sc_services_item_price_dots {
  display: block;
  position: relative;
  z-index: 1;
  line-height: 1;
  width: 100%;
  min-width: 20px;
  text-overflow: ellipsis;
  box-sizing: border-box;
  /* margin: 0px 20px; */
  white-space: nowrap;
  overflow: hidden;
  max-width: 60px;
}

/* ==========================================================================
   Header (mobile-first)
   ========================================================================== */

.siteHeader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--headerH);
  z-index: 50;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}

.siteHeader.isSticky {
  background: var(--c-header);
  /* box-shadow: var(--shadow-1); */
}

/* Inner */
.siteHeader__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}



/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.isSticky .brand{
  padding-top: 0;
}

.brand img {
  height: 60px;
    width: auto;
    display: block;
    padding-top: 10px;
    margin-left: -10px;
}

/* Desktop nav + actions hidden on mobile */
.nav--desktop,
.headerActions {
  display: none;
}

/* Burger */
.burger {
  place-items: start;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.burger__bar {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  margin: 6px 0;
}

/* ==========================================================================
   Mobile drawer (open_menu_mobile)
   ========================================================================== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

.drawer.isOpen {
  opacity: 1;
  pointer-events: auto;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.drawer__panel {
  position: absolute;
  inset: 0;
  background: #26262f;
  /* close to mock */
  color: #fff;
  padding: 56px 28px 28px;
  transform: translateX(8px);
  transition: transform .18s ease;
}

.drawer.isOpen .drawer__panel {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 44px;
  cursor: pointer;
}

/* Mobile menu typography */
.mnav {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.mnav__item {
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  gap: 5px;
  text-transform: uppercase;
}

.mnav__item--link {
  display: flex;
}

.mnav__chev {
  font-size: 22px;
  opacity: .95;
  transform: translateY(2px);
  margin-bottom: 5px;
}

.mnav__sub {
  margin-top: 14px;
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mnav__subLink {
  color: rgba(255, 255, 255, .48);
  text-decoration: none;
  font-size: 18px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 520px;
  color: #fff;
  overflow: hidden;
  background: #111;
  /* fallback */
}

/* Background image layer */
.hero__bg {
  position: absolute;
  inset: 0;
  /* background-image: url('img/image_hero.jpg'); */
  background-image: url('img/hero_bg.png');
  background-size: cover;
  background-position: center;
  /* transform: scale(1.02); */
}

/* .img-border{
  border-radius: 10px;
} */

.footer__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/footer/footer.png');
  background-size: cover;
  /* background-position: center; */
  transform: scale(1.0);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* dark overlay mostly on the left, like the mock */
  background: linear-gradient(0deg, rgba(0, 0, 0, .90) 0%, rgba(0, 0, 0, .72) 40%, rgba(0, 0, 0, .20) 60%, rgba(0, 0, 0, 0) 100%);
  /* background: linear-gradient(90deg, rgba(0, 0, 0, .90) 0%, rgba(0, 0, 0, .52) 40%, rgba(0, 0, 0, .10) 55%, rgba(0, 0, 0, 0) 100%); */
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
}

#section-footer .hero__inner{
	min-height: 520px;
}

.hero__content {
  padding: 0 0 44px;
}

.hero__title {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.0;
}

.padding-section {
  padding: 65px 0 65px;
}

/* ==========================================================================
   Selection section
   ========================================================================== */
.selection {
  background-color: var(--c-paper);
  background-image: url('img/texture_decor-wall-02_1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  overflow: hidden;
}

.selection2{
  background-image: none;
  background-color: #025BE1;
  padding-top: 65px !important;
}

.selection2 h1{
  font-size: 4em!important;
}

.selection .signature1 {
  position: absolute;
  fill: #FF9557;
  width: 88px;
  top: 15px;
  left: -10px;
}

.selection .signature2 {
  position: absolute;
  width: 60px;
  bottom: 10px;
  right: -10px;
}

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}



.card {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.card__img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.card__img2 {
  opacity: 0.7;
}

.card__img {
  min-height: 420px;
}

.card__label {
  background: var(--c-cardBar);
  color: #fff;
  text-align: center;
  padding: 30px;
  margin-bottom: 0;
  margin-top: -1px;
  display: inline-block;
  width: 100%;
  text-decoration: none;
}

.absolute-on-card {
  position: absolute;
  width: 100%;
  padding: 20px;
  color: white !important;
  top: 310px;
}

.absolute-on-card .btn {
  color: black;
  text-decoration: none;
  background: white;
}

.btn2 {
  background: transparent;
  color: black;
  border: 2px solid black;
}

.btn2:hover {
  color: white;
  background: black;
}

.jki-arrow-up-right-line:before {
  content: "\ef1f";
}

.two-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.text-align-start {
  text-align: start !important;
}

.my-line {
  min-width: 60px;
  height: 60px;
  background: #f8590d;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: white;
}

.my-line1::before {
  top: 72px;
  border-right: 1px solid #E8E1D3;
  content: ' ';
  height: 70px;
  position: absolute;
  width: 1px;
}

.my-line2::before {
  top: 72px;
  border-right: 1px solid #E8E1D3;
  content: ' ';
  height: 175px;
  position: absolute;
  width: 1px;
}

.grand-text {
  font-size: 1.5em !important;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

footer .u-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-gallery {
  display: flex;
  flex-wrap: wrap;
  min-width: 100%;
  position: relative;
}

.footer-gallery div {
  width: 100%;
}

.footer-gallery div img {
  width: 50%;
  height: auto;
}

footer ul li a {
  background: #F5F2EB;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 10px;
}

footer ul li a img {
  width: 12px;
}

.follow-us-btn {
  display: flex;
  gap: 10px;
  position: absolute;
  background: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  ;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: black;
}

#section-footer .hero__content{
  position: absolute;
    right: 0;
    bottom: 0;
    background-color: white;
    padding: 30px;
    color: black;
}

.div-round{
  display: inline-block;
    width: 3px;
    height: 4px;
    background: white;
    margin: 0 5px;
    border-radius: 50px;
}

.page-contact .siteHeader{
  background: black;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  font-family: inherit;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 40px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.form-field input,
.form-field textarea {
  border: none;
  border-bottom: 2px solid #cfd6dc;
  padding: 8px 0;
  font-size: 16px;
  background: transparent;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: #1d1d24; /* adapte à ta charte */
}

.headerPhone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
  }

  .headerPhone__icon {
    width: 20px;
  }


  .acc {
  max-width: 800px;
}

.acc__item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.acc__btn {
  width: 100%;
  padding: 20px;
  background: none;
  border: 0;
  cursor: pointer;
justify-content: space-between;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: white;
  
}

.acc__icon {
  display: inline-block;
  width: 24px;
  font-size: 24px;
  line-height: 1;
}

.acc__panel {
  padding: 20px;
  padding-top: 0;
  background: white;
  max-width: 800px;
}

.acc__panel p {
  margin: 0;
  color: #444;
}


.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  width: 100%;
}

/* Images toujours fluides */

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

/* Colonne droite : images empilées */
.img-grid__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}





/* Mobile */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}



/* 
.div-white-back{
  position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    z-index: 1;
    top: 123px;
    left: -35px;
} */

/* ==========================================================================
   Desktop layout (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {

  .selection2{
  padding-top: 0!important;
}

.selection2 h1{
  font-size: 8em!important;
}

  .acc {
  min-width: 800px;
}

  .img-grid__right {
  gap: 32px;
}

.img-grid {
  gap: 30px;
}

  .siteHeader {
    position: fixed;
    height: var(--headerHDesktop);
  }

  .siteHeader.isSticky {
    background: var(--c-header);
  }

  .brand{
    padding-top: 40px;
  }

  .brand img{
    height: 90px;
  }

  .isSticky .brand img{
    height: 44px;
    padding-top: 0;
    margin-left: 0;
  }

  .nav, .headerActions{
    margin-top: 30px;
  }

  .isSticky nav, .isSticky .headerActions{
    margin-top: 0;
  }

  

  /* Hide burger, show desktop nav/actions */
  .burger {
    display: none;
  }

  .nav--desktop,
  .headerActions {
    display: flex;
  }

  .nav {
    align-items: center;
    gap: 33px;
  }

  .nav__link {
    color: white;
    text-decoration: none;
    font-size: 17px;
    background: transparent;
    border: 0;
    padding: 10px 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-transform: uppercase;
  }

  .nav__link:hover {
    color: #fff;
  }

  .nav__chev {
    font-size: 15px;
    opacity: .9;
  }

  .headerActions {
    align-items: center;
    gap: 16px;
  }

  

  /* Hero spacing */
  .hero {
    min-height: 560px;
  }

  .hero__inner {
    min-height: 730px;
    align-items: end;
  }

  .hero__content {
    padding: 0;
    padding-bottom: 100px;
  }

  .hero__title {
    font-size: 4.4vw;
  }

  /* Selection cards 3 columns */
  .padding-section{
    padding: 150px 0 150px;
  }

  .selection .signature1 {
    top: 50px;
    width: 340px;
    left: -30px;
  }

  .selection .signature2 {
    width: 220px;
    bottom: 30px;
    right: -30px;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .cards-activities {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .two-cards2 {
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }

  .grand-text {
    font-size: 2.1em !important;
  }

  .heading-title {
    font-size: 57px;
    margin-bottom: 30px;
    margin-top: 20px;
    max-width: 550px;
  }

  .heading-title-h3 {
    font-size: 23px;
  }

  .card__label {
    padding: 30px;
  }

  .card:hover img {
    transform: scale(1.1);
  }

  .card2:hover img {
    transform: none;
  }

  .text-p {
    margin-bottom: 30px;
    line-height: 1.7em;
    font-size: 1.02em;
  }

  .facility {
    font-size: initial;
    min-width: 225px;
  }

  .row-to-column {
    flex-direction: row;
  }

  .facilities {
    grid-template-columns: repeat(6, 1fr);
  }

  .tarif {
    width: 550px;
  }

  .sc_services_item_price_dots {
    max-width: 320px;
  }

  .div-white-back {
    top: 133px;
  }

  .my-line1::before{
    height: 55px;
  }

  .my-line2::before{
height:110px;
  }

  #section-footer .hero__content {
    padding-right: 300px !important;
    padding: 50px;
    
  }

  #section-footer .hero__inner,
  #section-footer {
    min-height: 530px !important;
  }

  footer .u-container {
    flex-direction: row;
    justify-content: space-between;
  }

  footer .u-container a {
    cursor: pointer;
  }

  footer .u-container a:hover {
    color: black !important;
  }

  .footer-gallery div {
    width: 33.33%;
  }

  .footer-gallery div img {
    width: 50%;
    height: auto;
  }

  .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* dark overlay mostly on the left, like the mock */
  /* background: linear-gradient(0deg, rgba(0, 0, 0, .90) 0%, rgba(0, 0, 0, .72) 40%, rgba(0, 0, 0, .20) 60%, rgba(0, 0, 0, 0) 100%); */
  background: linear-gradient(60deg, rgba(0, 0, 0, .90) 0%, rgba(0, 0, 0, .52) 40%, rgba(0, 0, 0, .10) 55%, rgba(0, 0, 0, 0) 100%);
}


}

/* Minor enhancement for very large screens */
@media (min-width: 1400px) {
  .hero__bg {
    /* transform: scale(1.01); */
  }
}