/* Base typographique pensée pour la lisibilité (public 55–95 ans) */
html {
  font-size: 24px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #222222;
  background-color: #fffdf8;
}

@font-face {
    font-family: "BaskervilleOldFace";
    src: url("assets/fonts/BaskervilleOldFace.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "BaskervilleOldFace", serif;
    font-size: 1rem;
}



/* Couleurs principales */
:root {
  --primary: #C455A8;
  --secondary: #92D5E6;
  --third: #ff5500;
  --accent1: #FCBCB8;
  --accent2: #F3DE8A;
  --accent3: #DBF4A7;
  --text-dark: #222222;
  --text-muted: #555555;
  --bg-light: #fffdf8;
}

/* Layout générique */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section,
.section-alt {
  padding: 3rem 0;
}

.section-alt {
  background-color: #fff7f2;
}

h1 { font-size: 2.5rem; }

h1, h2, h3, h4 {
  /*color: var(--third);*/
  margin-top: 0;
  color: #00889f;

}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

img {
    width: 10rem;
    height: auto; /* pour garder les proportions */
}

.photo {
    width: 12rem;
    height: auto;
}


/* Header & navigation */
.site-header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #ffffff;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-block {
  max-width: 420px;
}

.logo {
    width: 5rem;
    height: auto;     /* garde les proportions */
}

.site-title {
  font-size: 1.6rem;
  margin: 0;
}

.site-subtitle {
  margin: 0.25rem 0 0;
  font-size: 1rem;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 1rem;
}

.main-nav a:hover,
.main-nav a:focus {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}

.main-nav a.active {
  background-color: #ffffff;
  color: var(--primary);
}

/* Hero accueil */
.hero {
  background: radial-gradient(circle at top left, var(--accent2), #fffdf8);
  padding: 3rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: start;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
}

.hero-panel {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid var(--accent3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-panel h3 {
  margin-top: 0;
}

.calendar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.calendar-list li {
  margin-bottom: 0.75rem;
}

.hero-contact {
  font-size: 1.02rem;
}

/* Page hero (consultations / formations) */
.page-hero {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  padding: 2.5rem 0;
}

.page-hero h2 {
  font-size: 1.8rem;
}

.page-hero p {
  max-width: 800px;
}

.highlight {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #a13f88;
}

.btn-secondary {
  background-color: var(--secondary);
  color: #0b3b4d;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #6fbfd7;
}

/* Grilles & cartes */
.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f0e6f5;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

/* Effet Halo Reiki */
.card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Le halo énergétique */
.card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(196, 85, 168, 0.35) 0%,
    rgba(146, 213, 230, 0.25) 40%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease, width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

/* Animation au survol */
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
  width: 260%;
  height: 260%;
  opacity: 1;
}




.card h3,
.card h4 {
  margin-top: 0;
}

/* Listes */
.bullet-list {
  padding-left: 1.2rem;
}

.bullet-list li {
  margin-bottom: 0.5rem;
}

/* Tableaux */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

th, td {
  padding: 0.75rem;
  border: 1px solid #e4dfe9;
  text-align: left;
}

th {
  background-color: var(--accent3);
}

/* Footer */
.site-footer {
  background-color: #2b1230;
  color: #f7eafc;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.95rem;
}

/* Responsif */
@media (max-width: 800px) {
  html {
    font-size: 17px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 16px;
  }

  .site-title {
    font-size: 1.4rem;
  }

  .hero-text h2,
  .page-hero h2 {
    font-size: 1.6rem;
  }
}



/* Le cadre central

.intro-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 2rem 1rem;
}

.intro-box {
  max-width: 600px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 136, 159, 0.2);
}

.layout-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.layout-table td {
  vertical-align: top;
  padding: 1rem;
}

.intro-angele {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}


*/


.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

/* Centrer la photo + texte */
.intro-angele {
  text-align: center;
}

/* Responsive : 2 colonnes sur tablette */
@media (max-width: 900px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive : 1 colonne sur mobile */
@media (max-width: 600px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

.info-ees {
  display: flex;
  align-items: center;
  gap: 20px; /* espace entre texte et image */
}

.info-ees img.ees-img {
  max-width: 180px; /* ajustez selon vos besoins */
  height: auto;
}

