/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: #444;
  line-height: 1.6;
}

/* ================= CONTAINER ================= */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER FIXE ================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #7ba899;
}

/* IMPORTANT : compensation header fixe */

main {
  margin-top: 90px;
}

/* ================= HERO ================= */

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/hero-reflexologie-energie.png') center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
}

.hero-content {
  position: relative;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #7ba899;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #6a9485;
}

/* ================= SECTIONS ================= */

.section {
  padding: 90px 0;
}

.beige {
  background: #f8f6f3;
}

.center {
  text-align: center;
}

h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

/* ================= GRIDS ================= */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* ================= CARDS ================= */

.card {
  background: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.icon {
  font-size: 1.8rem;
  color: #7ba899;
  margin-bottom: 15px;
}

/* ================= SESSION ================= */

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.step-card {
  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.step-number {
  width: 70px;
  height: 70px;
  background: #7ba899;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

/* ================= TARIFS ================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  position: relative;
}

.pricing-card h3 {
  margin-bottom: 15px;
}

.price {
  font-size: 2.3rem;
  margin: 10px 0;
  color: #7ba899;
  font-family: 'Playfair Display', serif;
}

.duration {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #777;
}

.pricing-card ul {
  list-style: none;
  margin-top: 10px;
}

.pricing-card ul li {
  margin-bottom: 8px;
}

.pricing-card.featured {
  background: #7ba899;
  color: white;
}

.pricing-card.featured .price {
  color: white;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.3);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ================= CONTACT ================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

textarea {
  min-height: 120px;
}

/* ================= FOOTER ================= */

footer {
  background: #333;
  color: white;
  padding: 30px 0;
  text-align: center;
}

.nav-links i {
  font-size: 18px;
  color: #444;
}

.nav-links i:hover {
  color: #7ba899;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .session-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
/* ================= ABOUT ================= */

.about-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 6px solid #f8f6f3;
}

#apropos .grid-2 {
  align-items: center;
}

#apropos h2 {
  margin-bottom: 20px;
}

#apropos p {
  margin-bottom: 15px;
}

/* ================= PAGE MERCI ================= */

.thank-page {
  background: linear-gradient(135deg, #f8f6f3 0%, #eef2ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-container {
  background: white;
  max-width: 700px;
  padding: 70px 60px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  animation: fadeIn 0.8s ease forwards;
}

/* LOGO PLUS GRAND */
.thank-logo {
  width: 300px;   /* ← PLUS GRAND */
  max-width: 90%;
  margin-bottom: 40px;
  transition: transform 0.4s ease;
}

/* Petit effet premium au hover */
.thank-logo:hover {
  transform: scale(1.05);
}

.thank-container h1 {
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.thank-container p {
  margin-bottom: 40px;
  color: #666;
  font-size: 1.05rem;
}

.thank-container .btn {
  margin-top: 20px;
  padding: 14px 35px;
  font-size: 1rem;
}

/* Animation douce */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

}

@media (max-width: 768px) {

  .nav {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }

  .nav-links li {
    width: 100%;
  }

}

/* ================= DIPLOMES ================= */

.diplome-grid {
  margin-top: 50px;
}

.diplome-card {
  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.diplome-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #7ba899;
}

