@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400&family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
  --pink: #ffd1dc;
  --blue: #c8d7f4;
  --dark: #333;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  --gold: #d4af37;
  --purple: #b084cc;
  --pink-strong: #ff6fa5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(120deg, var(--pink), var(--blue));
  color: var(--dark);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: #2a2a2a;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--dark);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff6fa5;
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    width: 200px;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow);
    gap: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: block;
  }
}

.hero {
  text-align: center;
  padding: 6rem 0 4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  animation: fadeIn 1s ease-out both;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
}

.btn,
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.btn {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  border: 2px solid var(--pink);
  color: var(--dark);
  background: transparent;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  background: var(--pink);
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services {
  padding: 4rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease both;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.testimonials {
  background: rgba(255, 255, 255, 0.6);
  padding: 4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  font-style: italic;
  animation: fadeInUp 1s ease both;
}

.testimonial figcaption {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 500;
  text-align: right;
}

.site-footer {
  text-align: center;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.site-footer a {
  color: var(--dark);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ff6fa5;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Qui sommes-nous page */
.about-section {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-text, .about-image {
  flex: 1 1 50%;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease both;
}

.about-img {
  max-width: 100%;
  height: auto;
  border: 4px solid var(--gold);
  border-radius: 10px;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

.about-text {
  animation: slideInLeft 1s ease both;
}

.profile-block {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid var(--gold);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.profile-block h2 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
}

.profile-quote {
  font-style: italic;
  font-family: 'Merriweather', serif;
  color: #555;
  margin-top: 1rem;
}

.secret-card {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #333;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-weight: 600;
  margin: 2rem 0;
}

.about-extra {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
}

@keyframes borderGlow {
  from { box-shadow: 0 0 5px rgba(212, 175, 55, 0.4); }
  to { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Tarifs page */
.pricing-section {
  padding: 4rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price-card i {
  font-size: 3rem;
  color: #ff6fa5;
}

.price-card h3 {
  margin-top: 1rem;
  font-weight: 600;
}

.price-card .price {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #ff6fa5;
  font-weight: 700;
}

.whatsapp-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  color: #fff;
}

/* About page redesign */
.portrait-wrapper {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 100%;
  animation: fadeInDown 1s ease forwards;
}

.portrait-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.6);
}

.speech-banner {
  background: var(--blue);
  color: var(--dark);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 1.5rem auto 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}
    
.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.bio-card {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.bio-card h2 {
  font-family: 'Playfair Display', serif;
}

.bio-card .profile-quote {
  font-family: 'Merriweather', serif;
  font-style: italic;
  margin-top: 1rem;
  color: #555;
}

.profile-quote.purple {
  color: var(--purple);
  font-weight: 700;
}

.profile-quote.pink {
  color: var(--pink-strong);
  font-weight: 700;
}

.bio-card:first-child {
  animation: slideInLeft 1s ease forwards;
}

.bio-card:last-child {
  animation: slideInRight 1s ease forwards;
}

.stages-card {
  background: #fff9e6;
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease forwards;
}

@media (max-width: 768px) {
 .bio-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}