/** @format */
/** @format */

@font-face {
  font-family: "Trade Gothic";
  src: url("../Trade-Gothic-Bold-Condensed-Twenty.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === Ajustement du logo Kalya === */
.logo-kalya {
  margin-bottom: 20px; /* espace sous le logo */
}

.logo-kalya img {
  display: block;
  margin: 0 auto;
  transform: translateY(-20px); 
  max-width: 200px; 
}


.header {
  background-color: #000;
  height: 75px;
}
.header .wrapper .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 75px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .wrapper .logo img {
  height: 60px;
}

/** @format */
:root {
  --primary-color: #000;
  --default-color: #f8f1ef;
  --primary-font: "Montserrat", sans-serif;
  --default-font: "Montserrat", sans-serif;
  --text-color: #000;
}

/**
 *
 * General Styles
 *
 ***/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-size: min(17px, 4.3vw);
  font-family: var(--primary-font);
  color: var(--text-color);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style-type: none;
  color: var(--primary-color);
}

p {
  color: var(--primary-color);
}

/**
 *
 * General Classes
 *
 ***/
.max__width {
  max-width: 1366px;
  margin: auto;
  width: calc(100% - 30px);
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.jc-space-b {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jc-space-a {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.h1 {
  font-family: "Trade Gothic", var(--primary-font);
  font-size: min(55px, 7.55vw);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 45px;
}

.h2 {
  font-family: "Trade Gothic", var(--primary-font);
  font-size: min(33px, 6.78vw);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.h3 {
  font-family: var(--primary-font);
  font-size: min(19px, 4.83vw);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
 margin-top: 15px;
}

.button {
  min-height: 39px;
  background-color: var(--primary-color);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 11px 15px;
  font-size: min(17px, 4.65vw);
  line-height: min(30px, 5vw);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}

/** @format */
.head-section {
  min-height: calc(100vh - 75px);
  padding-block: 30px;
  position: relative;
  background-color: var(--default-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head-section .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.head-section .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head-section .video .desktop-video {
  display: none;
}
.head-section .video .mobile-video {
  display: block;
}
.head-section .content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 15px;
}
.head-section .content .date {
  margin-top: 0px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
.head-section .content .date .date-label {
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: min(15px, 4.6vw);
}
.head-section .content .date .date-label::before, .head-section .content .date .date-label::after {
  content: "";
  position: relative;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background: var(--primary-color);
}
.head-section .content .date .date-value {
  font-size: min(25px, 5.5vw);
  text-transform: uppercase;
  background-color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 3px 9px;
}

@media screen and (min-width: 630px) {
  .head-section {
    min-height: calc(100vh - 75px);
    padding-block: 0;
  }
  .head-section .video .desktop-video {
    display: block;
  }
  .head-section .video .mobile-video {
    display: none;
  }
}
/** @format */
.youtube-section {
  text-align: center;
  padding: 25px;
}
.youtube-section .h2 {
  margin-top: 15px;
  padding: 0 2%;
}
.youtube-section .row .col {
  margin-bottom: 20px;
}
.youtube-section .row .col:last-child {
  margin-bottom: 0;
  max-width: 440px;
  margin-inline: auto;
}
.youtube-section .row .col .youtube-video {
  position: relative;
  padding-top: 150%;
}
.youtube-section .row .col .youtube-video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

@media screen and (min-width: 630px) {
  .youtube-section {
    text-align: left;
  }
  .youtube-section .h2 {
    padding: 0;
  }
  .youtube-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    max-width: 770px;
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .youtube-section .row .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 300px;
  }
  .youtube-section .row .col:last-child {
    max-width: 300px;
    margin-inline: 0;
  }
  .youtube-section .row .col:last-child .youtube-video {
    margin: 0;
  }
}
/** @format */
.texts-section {
  background-color: var(--default-color);
  padding: 26px 13px;
  text-align: center;
}
.texts-section .main-text {
  max-width: 655px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.texts-section .h2 {
  text-transform: none;
  font-weight: 600;
	margin-bottom: 20px;
  
}
.texts-section p span {
  display: inline-block;
  margin-bottom: 6px;
}
.texts-section .action {
  margin-top: 15px;
}


/** @format */
.texts-two-cols {
  text-align: center;
  padding: 60px 20px 30px;
}
.texts-two-cols .col {
  margin-bottom: 40px;
}
.texts-two-cols .col:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 630px) {
  .texts-two-cols {
    padding-top: 40px;
  }
  .texts-two-cols .h2 {
    margin-bottom: 10px;
  }
  .texts-two-cols .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 770px;
    margin: auto;
  }
  .texts-two-cols .row .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
  }
}
/** @format */
.band-section {
  text-align: center;
  background-color: var(--primary-color);
  padding: 25px 5px;
}
.band-section .star {
  width: 15px;
  margin-bottom: 15px;
}
.band-section .h2 {
  color: #fff;
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 0;
}
.experts-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.experts-section .h2 {
  margin-bottom: 40px;
}

.experts-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.experts-grid .expert {
  width: 220px;
  text-align: center;
}

.expert img {
  width: 100%;
  height: auto;
  max-width: 220px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.expert h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.expert p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .experts-grid .expert {
    width: 100%;
    max-width: 220px;
  }
}


/** @format */
.image-text-section img {
  max-width: 100%;
}
.image-text-section .content {
  padding: 30px 3px;
  text-align: center;
}
.image-text-section .content br {
  display: none;
}
.image-text-section .content .h2 sup {
  font-size: 60%;
}
.image-text-section .content ul li {
  margin-bottom: 5px;
}
.image-text-section .content ul.ul {
  margin-top: 15px;
}
.image-text-section .content ul.ul li {
  border: 3px solid var(--default-color);
  max-width: 80%;
  padding: 6.5px 10px;
  margin-inline: auto;
  margin-bottom: 16px;
}
.image-text-section .content ul.ul li:last-child {
  margin-bottom: 0;
}
.image-text-section .content ul.ul li br {
  display: block;
}

@media screen and (min-width: 630px) {
  .image-text-section {
    border-top: 1px solid var(--default-color);
  }
  .image-text-section.reverse .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .image-text-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .image-text-section .row .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
  .image-text-section .row .col .content {
    padding: min(130px, 10%) min(150px, 5%);
    text-align: left;
  }
  .image-text-section .row .col .content ul.ul li {
    margin-left: 0;
  }
  .image-text-section .row .col .thumbnail {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top right;
       object-position: top right;
  }
}
@media screen and (min-width: 1024px) {
  .image-text-section.reverse .row .col .content {
    margin-inline: auto 0;
    padding: 90px 85px;
  }
  .image-text-section .row .col:last-child {
    margin: auto;
  }
  .image-text-section .row .col .content {
    padding-left: 130px;
    max-width: 500px;
  }
  .image-text-section .row .col ul.ul li {
    max-width: 85%;
  }
}

.promo-section {
  background-color: #ffffff;   /* fond blanc */
  padding: 40px 20px;
}
.promo-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #111;
  font-family: inherit;
}

.promo-lead {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.4;
}

/* encadré autour du texte "Gagnez..." */
.promo-cta-box {
  display: inline-block;
  justify-content: center;
  align-items: center; 
  background: #ffffff;
  border: 2px solid #f7e8e7;    /* bord doux */
  padding: 8px 20px;
  border-radius: 0px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;

}

/* accentuation du montant si besoin */
.promo-amount {
  color: #000;
}

/* liseret décoratif (trait large) */
.promo-liseret {
  height: 1px;
  width: 100%;
  max-width: auto;
  margin: 22px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #f7e8e7 0%, #f4d2d1 50%, #f7e8e7 100%);
}
/** @format */
.call-to-action {
	background-color: #f7f2f0;
  padding-block: 38px 34px;
  padding-inline: 14px;
  text-align: center;
}
.call-to-action .action {
  margin-bottom: 11px;
}
.call-to-action > div {
  max-width: 600px;
  margin-inline: auto;
}/*# sourceMappingURL=style.css.map */

/* === DATES + CARTE === */
.dates-map-section{
  display: grid;
  gap: 24px;
  align-items: start;
  /* mobile : 1 colonne (la carte passe sous le texte) */
  grid-template-columns: 1fr;
  padding: 32px 20px;
  max-width: 1100px;
  margin: 0 auto;
 
}

.dates-col .date-item{
  margin-bottom: 18px;
}

.dates-col .city{
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  margin: 0 0 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.dates-col .details{
  font-size: clamp(16px, 1.7vw, 18px);
  margin: 0;
}

.map-col{
  width: 100%;
}

.map-img{
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;       /* ajuste si besoin */
  margin: 0 auto;          /* centre la carte sous le texte en mobile */
  object-fit: contain;
}

/* Desktop/tablette : deux colonnes */
@media (min-width: 900px){
  .dates-map-section{
    grid-template-columns: 1.1fr 0.9fr; /* texte | carte */
    gap: 40px;
    padding: 48px 24px;
  }
  .dates-col{
    align-self: center;
  }
  .map-img{
    margin: 0;            /* aligne à gauche en desktop */
    max-width: 100%;
  }
}

/* Harmonisation avec tes classes existantes */
.dates-map-section .action{
  margin-top: 24px;
}
/* ===== Section Témoignages ===== */
.testimonials {
  background-color: #f9f3f2; 
  width: 100%;
  padding: 80px 20px;
  margin: 0;
}

.testimonials-title {
  text-align: center;
  font-family: "Trade Gothic", var(--primary-font);
  font-size: min(34px, 6vw);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 32px;
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.testimonial {
  
  border: 1px solid rgba(0, 0, 0, .80);
  border-radius: 6px;
  padding: 18px;
}

.testimonial .quote {
  margin: 0 0 12px;
  font-style: italic;
  line-height: 1.5;
}

.author {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* Desktop : 2 cartes en haut + 1 centrée en bas */
@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .testimonial--wide {
    grid-column: 1 / -1;
    max-width: 740px;
    justify-self: center;
  }
}
