:root {
  --ion-color-primary: #f5e179;
  --ion-color-secondary: #ca9b50;
  --ion-color-tertiary: #452422;
  --ion-color-light: #f5f1bf;
  --ion-color-medium: #9C9E9F;
}

@font-face {
  font-family: 'CopperplateGothicBoldRegular';
  src: url('/assets/fonts/CopperplateGothicBoldRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.home-content {
  /* background: #9C9E9F; */
}

p {
  text-align: justify;
}

.titreAnimationUnderlineSvg {
  text-align: center;
  font-family: "CooperplateGothicBoldRegular", sans-serif;
  font-size: 24px;
  position: relative;
  margin-bottom: 6px;
  color: var(--ion-color-tertiary);
}

.underline-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -8px;
  pointer-events: none;
}

.underline-svg svg {
  width: clamp(80px, 25vw, 200px);
  height: 12px;
}

.underline-svg path {
  fill: transparent;
  stroke: #ca9b50;
  stroke-width: 3;
  stroke-linecap: round;
  transform-origin: center;
  animation: underlineBounce 2.5s ease-in-out infinite;
}

@keyframes underlineBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.titreAnimationAfterUnderlineFlow {
  position: relative;
  display: inline-block;
}

.titreAnimationAfterUnderlineFlow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  height: 3px;
  background-color: #ca9b50;
  transform: translateX(-50%);
  width: 0;
  animation: underlineFlow 10s ease-in-out infinite;
}

@keyframes underlineFlow {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}

.titreAnimationAfterUnderlineSelf {
  position: relative;
  display: inline-block;
}

.titreAnimationAfterUnderlineSelf::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  height: 1px;
  /*background-color: #f5e179;*/
  background-color: #ffffff;
  transform: translateX(-50%);
  width: 0;
  animation: underlineSelf 10s ease-in-out infinite;
}

@keyframes underlineSelf {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}

.video-clip {
  overflow: hidden;
}

.video-clip video {
  width: 100%;
  height: auto;
  max-height: 60vh;
  display: block;
  object-fit: cover;
}


  .video-clip {
    /*clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 90%, 75% 88%, 60% 92%, 45% 89%, 30% 94%, 15% 91%, 0 95%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 90%, 75% 88%, 60% 92%, 45% 89%, 30% 94%, 15% 91%, 0 95%);*/



    /* Choix 1 Charlotte */
    /*clip-path: polygon(0 0, 100% 0, 100% 85%, 75% 100%, 25% 100%, 0 85%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);*/

    /* Choix 2 Charlotte */
    /*clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 88%, 100% 100%, 0 100%, 25% 88%, 0 75%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 88%, 100% 100%, 0 100%, 25% 88%, 0 75%);*/

    /* Choix 3 Charlotte */
    /*clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);*/

    /* Choix 4 Charlotte */
    /*clip-path: polygon(0 0, 100% 0, 100% 80%, 70% 100%, 0 90%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 70% 100%, 0 90%);*/



    /*clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 85%, 60% 80%, 40% 90%, 20% 85%, 0 90%);*/
    /*webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 85%, 60% 80%, 40% 90%, 20% 85%, 0 90%);*/


    /*clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);*/

    /*clip-path: polygon(0 0, 100% 0, 100% 82%, 95% 85%, 90% 82%, 85% 85%, 80% 82%, 75% 85%, 70% 82%, 65% 85%, 60% 82%, 0 85%);*/
    /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 82%, 95% 85%, 90% 82%, 85% 85%, 80% 82%, 75% 85%, 70% 82%, 65% 85%, 60% 82%, 0 85%);*/


    width: 100%;
    margin: 0 auto;
    transition: clip-path 0.5s ease-in-out;
  }


.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.6); /* ✅ fond foncé transparent */
  /*padding: 10px 20px;*/
  border-radius: 12px;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-overlay .logo {
  width: 260px;
  max-width: 90vw;
  height: auto;
  opacity: 1;
  display: block;
}

.mtConcept{
  margin-top: 3rem !important;
}

/* ✅ Tablette */
@media (max-width: 991px) {
  .video-overlay .logo {
    width: 180px;
  }
}

/* ✅ Mobile */
@media (max-width: 575px) {
  .video-overlay .logo {
    width: 140px;
  }
  .mtConcept{
    margin-top: 0.4rem !important;
  }
}





.slides-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 16px;
  scroll-snap-type: x mandatory;
}

.slide-card {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.slide-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slide-card:hover {
  transform: scale(1.03);
}

.concept-section .card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 30px;
  margin: 0 auto;
}

.concept-section .card-content {
  display: flex;
  flex-direction: column;
}

.concept-section .section-header {
  text-align: center;
  margin-bottom: 16px;
}

.concept-section .concept-images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Logo dans la section concept */
.concept-logo {
  width: 200px;
  max-width: 50%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Illustration dans la section concept */
.concept-illustration {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 30px auto;
  display: block;
}

/* Inversion de l'effet clip-path de la vidéo pour la bordure supérieure */
.clip-top-inverted {
  clip-path: polygon(0 18%, 60% 15%, 65% 18%, 70% 15%, 75% 18%, 80% 15%, 85% 18%, 90% 15%, 95% 18%, 100% 15%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 18%, 60% 15%, 65% 18%, 70% 15%, 75% 18%, 80% 15%, 85% 18%, 90% 15%, 95% 18%, 100% 15%, 100% 100%, 0 100%);
  background-color: white; /* ou ta couleur de fond si nécessaire */
}



.services-section {
  background-color: #fff;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.services-section .section-header h2 {
  font-family: "CooperplateGothicBoldRegular", sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.services-section .section-header p {
  color: #666;
  font-size: 14px;
}

.service-card {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  /*background:-webkit-linear-gradient(360deg, #ca9b50 20%, #f5e179 80%) !important;*/
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card .service-image-wrapper {
  position: relative;
}

.service-card .service-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.service-card .service-info-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  font-family: "Libre Bodoni", serif;
}

.service-card .service-description {
  padding: 10px 14px 20px 14px;
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}



.service-card-luxe {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card-luxe:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper-luxe {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image-wrapper-luxe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-luxe:hover .service-image-wrapper-luxe img {
  transform: scale(1.05);
}

.service-title-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  text-align: center;
}

.service-title-overlay h2 {
  color: white;
  font-size: 1.4rem;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.service-content-luxe {
  padding: 20px 24px;
}

.service-description-luxe {
  font-size: 15px;
  font-family: var(--font-body);
  color: #333;
  line-height: 1.6;
  text-align: justify;
}

.conciergeries-section {
  padding: 0 16px;
  background: #fefefe;
}

.conciergeries-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.conciergeries-section .section-header h2 {
  /*color: var(--ion-color-tertiary);*/
  font-size: 24px;
  margin-bottom: 10px;
}

.conciergeries-section .section-header p {
  font-size: 14px;
  color: #666;
}

.conciergerie-card {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.btn1{
  color: #ffffff;
  background: var(--ion-color-secondary);
}

.conciergerie-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.conciergerie-card .card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.conciergerie-card .card-image .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  color: white;
  text-align: center;
  padding: 12px;
}

.conciergerie-card .card-image .overlay h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.conciergerie-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(130deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 100%);
  transform: rotate(25deg);
  pointer-events: none;
  animation: shine-light 6s ease-in-out infinite;
}

@keyframes shine-light {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}



.conciergerie-card .card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 70%);
  z-index: 1;
}

.conciergerie-card .card-content {
  padding: 16px;
}

.conciergerie-card .card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.conciergerie-card .card-content ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.conciergerie-card .card-content ul li i {
  color: var(--ion-color-primary);
  margin-right: 8px;
  flex-shrink: 0;
  font-size: 16px;
}

.conciergeries-section .section-header p {
  font-size: 15px;
  color: #555;
  margin-top: 6px;
  font-style: italic;
  line-height: 1.6;
}





.underline-svg-wave {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  animation: waveFadeIn 1.2s ease-out both;
  opacity: 0;
}

.underline-svg-wave svg {
  width: 120px;
  height: 12px;
}

@keyframes waveFadeIn {
  from {
    opacity: 0;
    transform: scaleX(0.2) translateY(5px);
  }
  to {
    opacity: 1;
    transform: scaleX(1) translateY(0);
  }
}

.banner-section {
  padding: 30px;
  text-align: center;
  /*clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 90%, 75% 88%, 60% 92%, 45% 89%, 30% 94%, 15% 91%, 0 95%);*/
  /*-webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 90%, 75% 88%, 60% 92%, 45% 89%, 30% 94%, 15% 91%, 0 95%);*/
}

.wave-container {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 200%;
  height: 60%;
  animation: wave-scroll 5s ease-in-out infinite;
}

.wave path {
  fill: #ca9b50;
  stroke-width: 2;
}

.wave-bottom {
  transform: rotate(180deg);
}

@keyframes wave-scroll {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-5px) translateX(-25%);
  }
}

.partners-section {
  background: #fff;
  text-align: center;
}

.partners-section .section-header h2 {
  font-family: "CooperplateGothicBoldRegular", sans-serif;
  color: var(--ion-color-secondary);
  font-size: 24px;
  margin-bottom: 8px;
}

.partners-section .section-header p {
  color: #666;
  font-size: 14px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 20px;
  padding: 10px;
  justify-items: center;
}

.partner-card {
  width: 100px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.partner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  font-family: var(--font-body);
}

.feature-item i {
  color: var(--ion-color-secondary);
  flex-shrink: 0;
  font-size: 18px;
}

/* début bloc chevauchant la vidéo */
.bande-inclinee-chevauche {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 50%;
  height: 100px;
  background: #2A2A2A;
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 3;

  opacity: 0;
  transform: translateX(100%);
  animation: slideInRightExact 1s ease-out forwards;
  animation-delay: 0.3s;
  transition: all 0.3s ease-in-out;
}

@keyframes slideInRightExact {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* fin bloc chevauchant la vidéo */


/* Début Animation d'apparition "vers l'avant" */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in-up.appear {
  animation: fadeInUp 1s ease-out forwards;
}
/* Fin Animation d'apparition "vers l'avant" */

.slides-marquee{
  overflow: hidden;
  padding: 16px;
}

.slides-track{
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 35s linear infinite; /* 🔧 augmente pour plus lent */
}

.slides-marquee:hover .slides-track{
  animation-play-state: paused; /* pause au survol */
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* car on a dupliqué */
}


.slide-card {
  flex: 0 0 auto;
  width: 250px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.slide-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.slide-card:hover{ transform: scale(1.03); }

.slide-fullscreen-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.slide-fullscreen-modal.d-none {
  display: none;
}

.slide-fullscreen-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.slide-fullscreen-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-fullscreen-content img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.slide-fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
}
