:root {
  --spaceblue-old: #070510;
  --spaceblue: #04060F;
  --or-pale: #e8d5a3;
  --or-pale-t: #e8d5a3b5;
  --or: #c8a96e;
  --creme: #f5f0e8;
  --violet: #432a65;
  --violet-clair: #5e3b8d;
  --rouge: #652a2a;
  --rouge-clair: #8d3b3b;
  --rose: #ffb1f1;
  --bleu: #2a3365;
  --bleu2: #3b4c8d;
  --bleu-clair: #9cc7ff;
  --vert: #2a652f;
  --noir: #04060F;
  --encre: #080D1C;;
  --gris: rgba(245,240,232,0.45);
  --voile: rgba(200,169,110,0.12);
}

* {
	margin: 0;
	padding: 0;
}

body {
  background-color: var(--spaceblue);
  cursor: url("../images/cursortest2.png") 0 0, auto;
}

h1, h2, h3, h4, h5, h6, button {
	font-family: 'Cormorant Garamond', serif;
  	color: var(--or-pale);
}

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

a, span, strong {
  display: inline-block;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

em {
  color: var(--or-pale);
}

canvas#bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
  	z-index: -1;
  }

/*================================================================Header*/
.classic-header {
  position: fixed;
  z-index: 10;
  background-color: var(--or-pale);
  background-color: transparent;
  padding: 1rem;
}

.header-title {
  font-size: 3rem;
  text-decoration: none;
  color: var(--creme);
  font-family: 'Cormorant Garamond';
}

.header-nav-container {
  margin: auto 4rem 0 auto;
}

.header-nav-ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.header-nav-ul-a {
  color: var(--or);
  text-decoration: none;
  font-size: 1.1rem;
}
/*================================================================old Page d'accueil*/
  html { scroll-behavior: smooth; }

  body {
    background: var(--noir);
    color: var(--creme);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    cursor: none;
    overflow-x: hidden;
  }

  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--or);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(200,169,110,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
  }
  body:hover .cursor { opacity: 1; }

  .hero {
    position: relative;
    height: calc(100dvh - 8rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-top: 8rem;
  }

  canvas#bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 14vw, 14rem);
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: -0.02em;
    color: var(--creme);
    opacity: 0;
    animation: fadeUp 1.4s ease 0.8s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--or-pale);
  }

  section {
    padding: 10rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--or);
    flex-shrink: 0;
  }

  .philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
  }

  .philosophy-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--creme);
    margin-bottom: 3rem;
  }

  .philosophy-left h2 em { font-style: italic; color: var(--or-pale); }


  .levels-section {
    max-width: 1400px;
    padding: 10rem 4rem;
    margin: 0 auto;
  }

  .levels-header {
    text-align: center;
    margin-bottom: 8rem;
  }

  .levels-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--creme);
  }

  .levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.1);
  }

  .level-card {
    padding: 3.5rem 3rem;
    background: var(--noir);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
  }

  .level-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--or), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .level-card:hover { background: var(--encre); }
  .level-card:hover::before { opacity: 1; }

  .level-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(200,169,110,0.1);
    line-height: 1;
    margin-bottom: 2rem;
    transition: color 0.5s ease;
  }

  .level-card:hover .level-number { color: rgba(200,169,110,0.25); }

  .level-name {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1.5rem;
  }

  .level-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--gris);
  }

  .manifesto-section {
    background: var(--encre);
    padding: 10rem 0;
  }

  .manifesto-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
  }

  .manifesto-inner blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--creme);
    margin-bottom: 3rem;
  }

  .manifesto-inner blockquote em { color: var(--or-pale); }

  .manifesto-attr {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--or);
  }

  .join-section {
    text-align: center;
    padding: 12rem 4rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .join-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--creme);
    margin-bottom: 2rem;
    line-height: 1.1;
  }

  .join-section p {
    font-size: 0.95rem;
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 4rem;
  }

  .btn-primary {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--noir);
    background: var(--or);
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .btn-primary:hover { background: var(--or-pale); transform: translateY(-2px); }

  .btn-ghost {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--or);
    border: 1px solid rgba(200,169,110,0.4);
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: border-color 0.3s ease, color 0.3s ease;
  }

  .btn-ghost:hover { border-color: var(--or); color: var(--or-pale); }

  footer {
    border-top: 1px solid rgba(200,169,110,0.1);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--or);
  }

  .footer-copy {
    font-size: 0.7rem;
    color: rgba(245,240,232,0.25);
    letter-spacing: 0.1em;
  }

  .footer-links { display: flex; gap: 2rem; list-style: none; }

  .footer-links a {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--or); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.1); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.5;
  }
/*================================================================Page d'accueil*/
.home-logo {
  position: absolute;
  width: 150%;
  top: 55%;
  left: -25%;
  z-index: -1;
  animation: fadeUp 1.4s ease 1s forwards;
  opacity: 0;
}

.hero-line{
  position: absolute;
  left: 50%;
  top: calc(100% + 50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: fadeUp 1.4s ease 1.2s forwards;
  opacity: 0;
}

.full-sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,169,110,0.3), transparent);
  }

.home-presentation-quote-introduction {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
}

.home-presentation-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--or-pale);
  border-left: 1px solid var(--or);
  padding-left: 2rem;
  margin: 3rem 0;
  line-height: 1.5;
}

.home-presentation-right-p {
  color: var(--gris);
  margin-bottom: 2rem;
}

.home-presentation-ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-presentation-ul li {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.home-presentation-ul-header {
  display: flex;
  align-items: center;
}

.home-presentation-ul-number {
  display: flex;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--or);
  width: 60px;
}

.home-presentation-ul-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--or);
  letter-spacing: .5px;
}

.home-presentation-ul-text {
  letter-spacing: .3px;
}

.home-presentation-ul-separator {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, #c8a96e40, transparent);
}

.home-presentation-button-container {
  text-align: center;
  margin-top: 4rem;
}

.home-presentation-button {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  color: var(--encre);
  background: var(--or);
  padding: 1.2rem 3.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.home-presentation-button:hover {
  background: var(--or-pale);
  transform: translateY(-2px);
}

/*================================================================Sections*/
.sections-page {
  position: relative;
}

#sections-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.sections-title-container {
  width: 100%;
  text-align: center;
  margin-bottom: 128px;
}

	.sections-title {
      font-size: 10rem;
      letter-spacing: 0.8;
      font-weight: 100;
      position: relative;
      display: inline-block;

}

	.sections-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;

  background: currentColor;

  clip-path: polygon(
    0% 50%,
    20% 35%,
    50% 0%,
    80% 35%,
    100% 50%,
    80% 65%,
    50% 100%,
    20% 65%
  );
}

.sections-list-container {
  width: 100%;
}
/*---------------------------------------------------------SECTION SOLSTICE*/
.section-group1-container {
  width: 90%;
  margin: auto;
  display: flex;
  position: relative;
  height: 50dvh;
  border-left: solid var(--or) 3px;
  margin-bottom: 128px;
}

#section-group1-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section-group1-background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #c8a96e, var(--or) 5%, transparent 40%);
  animation: glow 10s infinite;
  box-shadow: gray 0 3px 5px 0px;
  pointer-events: none;
}

.section-group1-imagepart {
  width: 35%;
  text-align: center;
}

.section-group1-img {
  height: 40dvh;
}

.section-group1-textpart {
  width: 65%;
  margin: 32px 32px 0;
  display: flex;
  flex-direction: column;
}

.section-group1-textpart-h2 {
  color: var(--or);
  font-size: 3rem;
}

.section-group1-textpart-p {
  color: var(--creme);
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.3;
}

.section-group1-textpart-state {
  width: fit-content;
  border: solid #c8a96e1c 2px;
  background: #5e3b8d59;
  border-radius: 8px;
  padding: 20px;
  font-size: 1.6rem;
  color: var(--creme);
  margin-top: 64px;
  transition: transform ease 0.2s;
}

.section-group1-textpart-state:hover {
  transform: scale(1.05);
}

.section-group-separator-container {
  margin: 64px auto;
  width: 60%;
  display: none;
}

.section-group-separator {
  border-color: var(--or);
}
/*---------------------------------------------------------AUTRES SECTIONS*/
.section-all-othergroup-supercontainer {
  background: linear-gradient(180deg, transparent 10%, #121e5399 60%);
}

.section-all-othergroup-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
}

.section-othergroup-container {
  text-align: center;
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-othergroup-container canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}


.section-othergroup-img {
  height: 25dvh;
}

.section-label-placesdispo-container {
  color: var(--creme);
  background: var(--vert);
  width: fit-content;
  margin: auto;
  padding: 5px;
  font-size: 1.2rem;
  border-radius: 4px;
  position: absolute;
  top: 5%;
  left: 10%;
}

.section-creuset-label-25 {
  
}

.section-othergroup-h2 {
  font-size: 2rem;
}

.section-othergroup-p {
  color: var(--creme);
  max-width: 50ch;
  margin: auto;
  font-size: 1.2rem;
}

.section-entretien-unavailable {
  width: fit-content;
  border: solid var(--rouge) 2px;
  background: var(--rouge-clair);
  border-radius: 8px;
  padding: 8px;
  font-size: 1.3rem;
  color: var(--creme);
  margin-top: 32px;
  text-decoration: none;

}

.section-entretien-available {
  width: fit-content;
  border: solid var(--bleu) 2px;
  background: var(--bleu-clair);
  border-radius: 8px;
  padding: 8px;
  font-size: 1.3rem;
  color: var(--creme);
  margin-top: 32px;
  text-decoration: none;
}

.section-ageselector-container {
	padding-bottom: 128px;
  	margin-top: 64px;
}

.section-ageselector-ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  align-items: flex-end;
}

.section-ageselector-ul li {
  position: relative;
  width: fit-content;
  text-align: center;
}

.section-ageselector-button {
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--or);
  font-size: 1.3rem;
}

.section-ageselector-button:hover {
  background: none;
  background: linear-gradient(0deg, #c8a96e42, transparent 80%);
}

.section-ageselector-button-activate {  
  font-size: 2rem;
  border-left: solid var(--or) 1px;
  border-right: solid var(--or) 1px;
  filter: brightness(1.4);
  background: linear-gradient(0deg, #c8a96e82, transparent 80%);
}

.section-ageselector-state {
  background-color: var(--rouge);
  color: var(--creme);
  padding: 3px;
}

/*------------------------------------------------------------Animations*/
.section-all-othergroup-container:hover .section-othergroup-container {
  filter: brightness(0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}
.section-all-othergroup-container:hover .section-othergroup-container img {
  height: 15dvh;
}
.section-all-othergroup-container:hover .section-othergroup-container p {
  font-size: 0.8rem;
}
.section-all-othergroup-container:hover .section-othergroup-container a {
  font-size: 0.8rem;
}

.section-othergroup-container-bgeffect {
  visibility: hidden;
  background: linear-gradient(0deg, var(--or), transparent 75%);
  animation: linear glow2 1.5s infinite;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-othergroup-container:hover > .section-othergroup-container-bgeffect {
  visibility: visible;
}



.section-all-othergroup-container .section-othergroup-container:hover {
  transform: scale(1.05);
  filter: brightness(1.3);
  border-left: solid var(--or) 3px;
  border-right: solid var(--or) 3px;
}
.section-all-othergroup-container .section-othergroup-container:hover img {
  height: 25dvh;
}
.section-all-othergroup-container .section-othergroup-container:hover p {
  font-size: 1.2rem;
}
.section-all-othergroup-container .section-othergroup-container:hover a {
  font-size: 1.3rem;
}



.section-all-othergroup-container:hover .section-othergroup-container a {
  filter: brightness(0.8);
}

.section-othergroup-container:hover .section-entretien-available {
  transform: translateY(-10px);
  transition: transform 0.15s linear;
}

#canvas-section-halo, #canvas-section-creuset, #canvas-section-iris {
  visibility: hidden;
}

#section-halo:hover #canvas-section-halo {
  visibility: visible;
}

#section-creuset:hover #canvas-section-creuset {
  visibility: visible;
}

#section-iris:hover #canvas-section-iris {
  visibility: visible;
}

@keyframes glow {
  0% {
    filter: opacity(0.05);
  }

  50% {
    filter: opacity(0.2);
  }

  100% {
    filter: opacity(0.05);
  }
}

@keyframes glow2 {
  0% {
    filter: opacity(0.2);
  }

  50% {
    filter: opacity(0.4);
  }

  100% {
    filter: opacity(0.2);
  }
}
/*================================================================Valeurs*/
.valeurs-pagetitle {
  text-align: center;
  font-size: 6rem;
}

.valeurs-valeurs-container {
  display: flex;
  width: 80%;
  margin: 6rem auto;
}

.valeurs-valeurs-list-container {
  width: 20%;
}

.valeurs-valeurs-list {
  color: var(--creme);
  list-style: none;
  font-size: 1.3rem;
}

.valeurs-valeurs-list li {
  padding: .3rem 0;
  border-top: solid 1px var(--or-pale);
}

.valeurs-valeurs-list-bienveillance {color: var(--bleu-clair);}
.valeurs-valeurs-list-ra {color: var(--rose);}
.valeurs-valeurs-list-evolution {color: var(--rose);}

.valeurs-valeurs-details {
  width: 80%;
  border: solid 1px var(--or-pale);
}

.valeurs-valeurs-details-all {
  padding: 1rem 2rem;
}

.valeurs-valeur-title {
  font-size: 2.5rem;
  color: var(--bleu-clair);
  text-transform: uppercase;
}

.valeurs-valeur-citation {
  font-size: 1.5rem;
  color: var(--or);
  font-style: italic;
}

.valeurs-valeur-desc {
  font-size: 1.3rem;
  line-height: 1.3;
}

#valeurs-bienveillance-desc {
  margin-bottom: 2rem;
}

.valeurs-valeurs-sublist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valeurs-valeur-subtitle-container {
  display: flex;
}

.valeurs-valeur-subtitle {
  display: flex;
  align-items: center;
  color: var(--or);
  font-size: 2rem;
}

.valeurs-valeur-subtitle:before {
  content: '';
  height: 2px;
  width: 25px;
  background-color: var(--or);
  border-radius: 1px;
  margin-right: .5rem;
}
  
.valeurs-valeurs-sub-desc {
  font-size: 1.3rem;
  
}
/*================================================================Notre Philosophie*/




















