@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperBlkBT-Regular.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperBlkBT-Italic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperLtBT-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperLtBT-Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperLtBT-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperMdBT-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CooperBT';
    src: url('Fonts/CooperMdBT-Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* Palette */
:root {
  --rose: #FFD3F1;
  --violet: #BEADE6;
  --noir: #1A1A1A;
  --blanc: #fff;
  --gris: #f5f5f5;
}

body{
  font-family: 'CooperBT';
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a); /* fond noir nuancé */
  color: white;
  margin: 0;
  padding: 0;
}

/* --- PARTIE ANIMATION --- */

#animation-doodle {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
  }
  
  #animation-doodle css-doodle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .doodle-text {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 0 20px;
  }
  
  .doodle-text h1 {
    font-size: 3em;
    font-family: 'CooperBT';
    margin: 0;
  }
  
  .citation-source {
    font-size: 0.9em;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    font-style: italic;
  }  
  

/* --- PARTIE 1 --- */
/* Section chiffres clés */
.stats-section {
  margin-top: 5rem;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
}

.stats-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--blanc);
}

.glass-box {
  background: rgba(255, 255, 255, 0.1); /* semi-transparente */
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* pour Safari */
  box-shadow: 0 4px 30px rgba(255, 211, 241, 0.3); /* lueur rose */
  padding: 2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.glass-box:hover {
  box-shadow: 0 0 15px 5px rgba(255, 211, 241, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.stat-card {
  background: var(--rose);
  color: var(--noir);
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 320px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--violet);
  margin-bottom: 1rem;
}

.stat-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.stat-source {
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
}

/* --- PARTIE 2 --- */
.services {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
  
}

.services-header h2 {
  font-size: 2.5rem;
  color: var(--violet);
  margin-bottom: 1rem;
}

.services-header p {
  font-size: 1.1rem;
  color: white;
}

/* Grille */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Cartes */
.service-card {
  background: var(--gris);
  border-left: 6px solid var(--rose);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--noir);
}

.service-card p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: #333;
}

/* --- PARTIE 3 --- */
/* Section packages */
.packages {
  margin-top: 5rem;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  color: #000;
}

.packages h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--blanc);
}

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

.package-card {
  background: var(--gris);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 10px 5px 5px var(--rose);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.package-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--noir);
}

.package-card p {
  font-size: 1rem;
  margin: 0.8rem 0;
  color: #333;
}

.package-price {
  display: block;
  font-weight: bold;
  color: var(--violet);
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Mise en valeur du package central */
.package-card.highlight {
  background: var(--violet);
  color: var(--blanc);
  box-shadow: 10px 5px 5px var(--rose);
}

.package-card.highlight p,
.package-card.highlight h3,
.package-card.highlight .package-price {
  color: var(--blanc);
}

ul {
  text-align: left;
}

.italique{
  text-align: left;
  margin-left: 20px;
  font-size: 10px;
  color: #f5f5f5;
  font-style: italic;
}

/* --- PARTIE 4 --- */
/* Étapes de travail */
.steps-section {
  margin-top: 5rem;
  text-align: center;
  margin-left: 50px;
  margin-right: 50px;
}

.steps-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--blanc);
}

.steps-intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--noir);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.step-glass {
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  text-align: left;
  background: rgba(255, 255, 255, 0.1); /* semi-transparente */
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* pour Safari */
  box-shadow: 0 4px 30px rgba(255, 211, 241, 0.3); /* lueur rose */
  color: #fff;
  transition: all 0.3s ease;
}

.step-number {
  font-size: 1.5rem;
  font-weight: bold;
  background-color: var(--violet);
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
}

.step h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--noir);
}

.step p {
  font-size: 1rem;
  color: #333;
}
