/* ================= Section Hero ================= */
.hero {
	position: relative;
	width: 100%;
	max-width: 100vw;
	min-height: 560px;
	background: url("/img/reservation/club-vacances-valmorel.webp") center
	  center/cover no-repeat;
	color: var(--color-bg);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
  }
  .hero-bg {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .hero-img {
	display: none;
  }
  .hero-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 3rem 2rem 3rem;
	border-radius: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;

  }
  .hero-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 32px;
	background: var(--color-text);
	opacity: 0.5;
	z-index: 0;
	pointer-events: none;
  }
  .hero-overlay > * {
	position: relative;
	z-index: 1;
	opacity: 1;
  }

  .herobadge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 8px;
	background-color: var(--color-primary);
	color: var(--color-bg);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(105, 81, 255, 0.05);
  }
  .hero h1 {
	font-family: "Sora", sans-serif;
	font-size: 40px;
	font-weight: 800;
	line-height: 45px;
	margin-bottom: 0.5rem;
  }
  .hero p {
	font-size: 20px;
	font-weight: 600;
	margin-top: 0.2rem;
	margin-bottom: 2rem;
	margin-left: 2rem;
	margin-right: 2rem;
  }
  .hero-actions {
	display: flex;
	gap: 2rem;
  }

  .hero-bg-effect {
	display: inline-block;
	position: relative;
	z-index: 0;
	padding-left: 0.25em;
	padding-right: 0.25em;
  }

  .hero-bg-effect::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 1.3em;
	background: var(--color-primary);
	border-radius: 16px;
	z-index: -1;
  }

  /* ============== Responsive ============== */

  @media (max-width: 900px) {
	.hero {
	  max-width: 100vw;
	  min-height: 78vh;
	}
	 .herobadge {
	 width: 80%;
	}
	.hero h1 {
	  font-size: 28px;
	  line-height: 34px;
	}
	.hero p {
	  font-size: 16px;
	  margin-bottom: 1.5rem;
	}
	.hero-actions {
	  flex-direction: column;
	  gap: 1rem;
	}
	  .hero-bg-effect::after {
	bottom: -3px;
	height: 1.3em;

  }
  .hero-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1000px;
	margin: 0rem auto 2rem;
	padding: 3rem 2rem 3rem;
	border-radius: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;

  }
  .hero-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 0px;
	background: var(--color-text);
	opacity: 0.5;
	z-index: 0;
	pointer-events: none;
  }
  .hero-overlay > * {
	position: relative;
	z-index: 1;
	opacity: 1;
  }
  }


  /* ================= Section all-included ================= */

  .all-included-section {
	padding: 1rem 0rem 1rem 0rem;
  }

  .all-included-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-primary);
	color: white;
	font-size: 16px;
	font-family: var(--font-text);
	font-weight: 500;
	line-height: 24px;
	padding: 2px 8px;
	border-radius: 36px;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	margin-bottom: 2rem;
  }

  .all-included-title {
	font-size: 34px;
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 1.1;
	color: #2a3342;
	margin-bottom: 3rem;
	word-wrap: break-word;
  }

  .all-included-title-highlight {
	color: var(--color-secondary);
  }

  .all-included-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
  }

  .all-included-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: box-shadow 0.3s ease;
  }


  .all-included-icon {
	width: 34px;
	height: 34px;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .all-included-icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	display: block;
  }

  .all-included-card-text {
	color: #2a3342;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
  }

  .all-included-card-text--inter {
	font-family: var(--font-text);
	line-height: 30px;
  }

  .all-included-card-text--sora {
	font-family: var(--font-title);
	line-height: 32px;
  }

  @media (max-width: 768px) {

	.all-included-section {
	  padding: 2rem 0;
	}

	.all-included-badge {
	  font-size: 14px;
	  margin-bottom: 1.5rem;
	}

	.all-included-title {
	  margin-bottom: 2rem;
	}

	.all-included-grid {
	  grid-template-columns: 1fr;
	  gap: 1.5rem;
	}

	.all-included-card {
	  padding: 1.5rem;
	}

	.all-included-card-text {
	  font-size: 18px;
	}
  }

  @media (max-width: 480px) {
	.all-included-card-text {
	  font-size: 16px;
	}

	.all-included-icon {
	  width: 56px;
	  height: 56px;
	}
  }

  /* ================= Section restauration - hebergement ================= */

  .restauration-hebergement-section {
	background: var(--color-primary);
	padding: 0rem;
	overflow: hidden;
	margin-bottom: 0 !important;
  }

  .restauration-hebergement-wrapper {
	background: var(--color-primary);
	padding: 3rem 1rem 6rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
  }

  .restauration-hebergement-badge {
	background: #cee0fd;
	color: #2a3342;
	font-size: 16px;
	font-family: "Sora", sans-serif;
	font-weight: 500;
	line-height: 24px;
	padding: 2px 8px;
	border-radius: 36px;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	display: inline-block;
	margin-bottom: 2rem;
	margin-top: 4rem;
	text-align: center;
  }

  .restauration-hebergement-title {
	color: white;
	font-size: 40px;
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 44px;
	word-wrap: break-word;
	text-align: center;
	margin: 0 0 3rem 0;
	max-width: 892px;
  }

  .restauration-hebergement-section {
	width: 100%;
	margin-bottom: 4rem;
  }

  .restauration-hebergement-section-title {
	color: white;
	font-size: 30px;
	font-family: var(--font-title);
	font-weight: 500;
	line-height: 38px;
	word-wrap: break-word;
	margin: 0 0 2rem 4rem;
  }

  .restauration-hebergement-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	margin-left: 4rem;
	margin-right: 4rem;
	margin-bottom: 3rem;
  }

  .restauration-hebergement-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 3.5rem 3.25rem;
	min-height: auto;
	display: flex;
	flex-direction: column;
  }

  .restauration-hebergement-card-title {
	color: var(--color-secondary);
	font-size: 24px;
	font-family: var(--font-title);
	font-weight: 600;
	line-height: 32px;
	word-wrap: break-word;
	margin: 0 0 1rem 0;
  }

  .restauration-hebergement-card-subtitle {
	color: #404f65;
	font-size: 16px;
	font-family: var(--font-title);
	font-weight: 600;
	line-height: 28px;
	word-wrap: break-word;
	margin: 0 0 1rem 0;
  }

  .restauration-hebergement-card-list {
	color: #404f65;
	font-size: 14px;
	font-family: var(--font-text);
	font-weight: 500;
	line-height: 22px;
	word-wrap: break-word;
	margin: 0;
	padding: 0;
	list-style: none;
  }

  .restauration-hebergement-card-list li {
	position: relative;
	padding-left: 0;
	margin-bottom: 0.5rem;
  }

  .restauration-hebergement-card-list li:last-child {
	margin-bottom: 0;
  }

  /*----------- Responsive Design ---------------*/

  @media (max-width: 1024px) {
	.restauration-hebergement-title {
	  font-size: 32px;
	  line-height: 38px;
	  margin-bottom: 2.5rem;
	}

	.restauration-hebergement-section-title {
	  font-size: 26px;
	  line-height: 34px;
	}

	.restauration-hebergement-cards-grid {
	  gap: 1.5rem;
	  margin-bottom: 3rem;
	}

	.restauration-hebergement-card {
	  padding: 2.5rem 2rem;
	  min-height: auto;
	}

	.restauration-hebergement-card-title {
	  font-size: 22px;
	  line-height: 30px;
	}

	.restauration-hebergement-card-subtitle,
	.restauration-hebergement-card-list {
	  font-size: 16px;
	  line-height: 26px;
	}
  }

  @media (max-width: 768px) {
	.restauration-hebergement-wrapper {
	  padding: 2rem 1rem;
	}

	.restauration-hebergement-badge {
	  font-size: 14px;
	  line-height: 20px;
	  margin-bottom: 1.5rem;
	}

	.restauration-hebergement-title {
	  font-size: 26px;
	  line-height: 32px;
	  margin-bottom: 2rem;
	}

	.restauration-hebergement-section {
	  margin-bottom: 3rem;
	}

	.restauration-hebergement-section-title {
	  font-size: 24px;
	  line-height: 30px;
	  margin: 0 0 1rem 1rem;
	}

	.restauration-hebergement-cards-grid {
	  grid-template-columns: 1fr;
	  gap: 1.5rem;
	  margin-left: 0;
	  margin-right: 0;
	  margin-bottom: 3rem;
	}


	.restauration-hebergement-card {
	  padding: 2rem 1.5rem;
	}

	.restauration-hebergement-card-title {
	  font-size: 20px;
	  line-height: 28px;
	}

	.restauration-hebergement-card-subtitle,
	.restauration-hebergement-card-list {
	  font-size: 15px;
	  line-height: 24px;
	}
  }

  @media (max-width: 480px) {
	.restauration-hebergement-wrapper {
	  padding: 1.5rem 0.75rem;
	  overflow-x: hidden;
	  max-width: 100vw;
	  box-sizing: border-box;
	}

	.restauration-hebergement-title {
	  font-size: 22px;
	  line-height: 28px;
	}

	.restauration-hebergement-section-title {
	  font-size: 20px;
	  line-height: 28px;
	}

	.restauration-hebergement-cards-grid {
	  margin-left: 0;
	  margin-right: 0;
	}

	.restauration-hebergement-card {
	  padding: 1.5rem 1.25rem;
	  width: 100%;
	  max-width: 100vw;
	  box-sizing: border-box;
	}

	.restauration-hebergement-card-title {
	  font-size: 18px;
	  line-height: 26px;
	}

	.restauration-hebergement-card-subtitle,
	.restauration-hebergement-card-list {
	  font-size: 14px;
	  line-height: 22px;
	}
  }

  /* ================= Section Chiffres ================= */

  .chiffre-container {
	background-color: var(--color-accent);
	margin-top: 0 !important;
  }

  .chiffre-header {
	margin-bottom: 3rem;
  }

  .chiffre-badge {
	display: inline-block;
	background: var(--color-primary);
	color: white;
	font-size: 16px;
	font-family: var(--font-text);
	font-weight: 500;
	line-height: 24px;
	padding: 2px 8px;
	border-radius: 36px;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	margin-bottom: 1.5rem;
  }

  .chiffre-title {
	font-size: 40px;
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 44px;
	word-wrap: break-word;
  }

  .chiffre-title-highlight {
	color: var(--color-secondary);
  }

  .chiffre-title-normal {
	color: #2a3342;
  }

  .chiffre-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	max-width: 1140px;
	padding-top: 2rem;
	margin-left: auto;
	margin-right: auto;
  }

  .chiffre-card {
	position: relative;
	background: white;
	border-radius: 16px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 2.5rem 2rem 1rem;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .chiffre-icon {
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	width: 54px;
	height: 54px;
	background: var(--color-primary);
	border-radius: 50%;
	border: 6px solid var(--color-accent);
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .chiffre-icon img {
	width: 34px;
	height: 34px;
  }

  .chiffre-card-text {
	color: #2a3342;
	font-size: 18px;
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 32px;
	text-align: center;
	word-wrap: break-word;
  }

  /*----------- Responsive Design ---------------*/

  @media (max-width: 1024px) {
	.chiffre-grid {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 4rem;
	}

	.chiffre-title {
	  font-size: 32px;
	  line-height: 38px;
	}

	.chiffre-card-text {
	  font-size: 20px;
	  line-height: 28px;
	}
  }

  @media (max-width: 768px) {
	.chiffre-section {
	  padding: 3rem 0;
	}

	.chiffre-grid {
		grid-template-columns: repeat(1, 1fr);
	  gap: 3rem;
	  max-width: 400px;
	  margin: 0 auto;
	}

	.chiffre-title {
	  font-size: 28px;
	  line-height: 34px;
	}

	.chiffre-badge {
	  font-size: 14px;
	}

	.chiffre-card {
	  padding: 3rem 1.5rem 1.5rem;
	  min-height: 100px;
	}

	.chiffre-card-text {
	  font-size: 18px;
	  line-height: 26px;
	}
  }

  @media (max-width: 480px) {
	.chiffre-title {
	  font-size: 24px;
	  line-height: 30px;
	}

	.chiffre-card-text {
	  font-size: 16px;
	  line-height: 24px;
	}

	.chiffre-icon {
	  width: 56px;
	  height: 56px;
	  top: -28px;
	}
  }

  /* ================= Section carte doucy ================= */

  .carte-doucy-section {
	text-align: center;
	margin-bottom: 48px;
	margin: 4rem;
  }

  .carte-doucy-image {
	width: 100%;
	max-width: none;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	display: block;
    margin: 0;
  }

  /*----------- Responsive Design ---------------*/
  @media (max-width: 900px) {
	.carte-doucy-section {
	  margin: 0;
      padding: 0;
	}
	.carte-doucy-image {
	  border-radius: 0;
	  width: 100%;
      max-width: none;
      height: auto;
      display: block;
      margin: 0;
	}
  }