﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');

:root {
  --primary-color: #ff6b9c;
  --secondary-color: #ffe6ee;
  --accent-color: #ff8fab;
  --text-color: #4a4a4a;
  --light-bg: #fff5f8;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(255, 107, 156, 0.1);
  --transition: all 0.3s ease;
}

body {
  margin: 0;
  font-family: 'Lora', serif;
  background: var(--light-bg);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1.08em;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.5em;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.3em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.navbar {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 24px rgba(255, 155, 236, 0.08);
  border-radius: 0 0 30px 30px;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Pacifico', cursive;
  font-size: 2.2em;
  color: #ff9bec;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px #ffe6ef;
}

.nav-links {
  display: flex;
  gap: 2.2em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #a77;
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ff9bec;
  transition: width 0.3s;
  margin-top: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  background: linear-gradient(120deg, #ffe6ef 0%, #fff0f8 100%);
  padding: 5rem 1rem 0 1rem;
  text-align: center;
  border-radius: 0 0 60px 60px;
  box-shadow: 0 8px 32px rgba(255, 155, 236, 0.10);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 120vw;
  height: 100%;
  background: url('images/profile.jpg') center/cover no-repeat;
  opacity: 0.08;
  transform: translateX(-50%);
  z-index: 0;
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2em;
  color: #ff9bec;
  margin-bottom: 0.3em;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px #fff0f8;
}

.hero p {
  font-size: 1.4em;
  color: #a77;
  margin-bottom: 2.2em;
}

.hero .cta-btn {
  background: linear-gradient(90deg, #ff9bec 0%, #ffe6ef 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 1.1em 2.8em;
  box-shadow: 0 4px 24px #ff9bec33;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  margin-top: 1.2em;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}

.hero .cta-btn:hover {
  background: linear-gradient(90deg, #ffe6ef 0%, #ff9bec 100%);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 32px #ff9bec33;
}

.services-section {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 0 1rem;
}

.services-title {
  text-align: center;
  font-family: 'Montserrat', 'Playfair Display', serif;
  font-size: 2.3em;
  color: #ff9bec;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px #ffe6ef99;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px #ff9bec33;
}

.service-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2em;
  border: 3px solid #ff9bec33;
  box-shadow: 0 2px 12px #ffe6ef66;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  color: #ff9bec;
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

.service-card p {
  color: #a77;
  font-size: 1.08em;
  margin-bottom: 1.2em;
}

.service-card .btn {
  background: linear-gradient(90deg, #ff9bec 0%, #ffe6ef 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.7em 1.7em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.service-card .btn:hover {
  background: linear-gradient(90deg, #ffe6ef 0%, #ff9bec 100%);
  transform: scale(1.05);
}

.about-section {
  max-width: 1100px;
  margin: 5rem auto 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-img-wrapper {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  max-width: 220px;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 24px #ffe6ef99;
  object-fit: cover;
  border: 5px solid #fff0f8;
}

.about-content {
  flex: 2 1 400px;
  min-width: 260px;
}

.about-content h2 {
  font-family: 'Montserrat', 'Playfair Display', serif;
  color: #ff9bec;
  font-size: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-content p {
  font-size: 1.15em;
  color: #444;
  margin-bottom: 1.5em;
}

.features {
  display: flex;
  gap: 2.5em;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

.feature {
  background: #fff0f8;
  border-radius: 16px;
  padding: 1.2em 1.5em;
  box-shadow: 0 2px 12px #ffe6ef55;
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.08em;
  color: #a77;
}

.feature i {
  color: #ff9bec;
  font-size: 1.3em;
}

@media (max-width: 900px) {
  .about-section { flex-direction: column; gap: 2rem; }
  .about-img-wrapper { margin-bottom: 1.5rem; }
}

@media (max-width: 600px) {
  .navbar { flex-direction: column; gap: 1em; padding: 1em 0.5em; }
  .services-grid { grid-template-columns: 1fr; }
  .about-section { padding: 0; }
  .hero-content {
    padding-bottom: 2.5rem;
  }
  .hero {
    min-height: 320px;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1.1em;
  }
  .hero .cta-btn {
    font-size: 1em;
    padding: 0.9em 1.5em;
    margin-top: 1.2em;
    margin-bottom: 1.5em;
    border-radius: 24px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.3em;
  }
  .hero .cta-btn {
    font-size: 0.95em;
    padding: 0.7em 1.1em;
    margin-bottom: 1.2em;
  }
}

.contact-info {
  font-size: 1.1em;
  color: var(--primary-color);
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  animation: fadeIn 1s ease 1s both;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 5%;
}

.services {
  padding: 5rem 0;
  background: var(--white);
}

.services h2 {
  text-align: center;
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
}

.services h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 1rem auto;
}

.service-icon {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--secondary-color);
  overflow: hidden;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.service h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 1rem;
}

.service p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

footer {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem;
  }
  
  .nav-links {
    margin-top: 1rem;
    gap: 1rem;
  }
  
  .hero-text {
    padding: 150px 20px 80px;
  }
  
  .hero-text h1 {
    font-size: 2.5em;
  }
}

.about {
  background-color: var(--secondary-color);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 156, 0.1), rgba(255, 143, 171, 0.1));
}

.about h2 {
  text-align: center;
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
}

.about h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 1rem auto;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  display: block;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact h2 {
  text-align: center;
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
}

.contact h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 1rem auto;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-item {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  border: 1px solid var(--secondary-color);
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.contact-item i {
  font-size: 1.5em;
  color: var(--primary-color);
}

.contact-item h4 {
  margin: 0 0 0.5rem;
  color: var(--primary-color);
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: var(--text-color);
}

.separator {
  margin: 0 1rem;
  color: var(--primary-color);
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5em;
  margin: 0 0.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--secondary-color);
}

.rdv {
  background: var(--secondary-color);
  padding: 5rem 0 3rem 0;
}

.rdv h2 {
  text-align: center;
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
}

.rdv h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 1rem auto;
}

.rdv iframe {
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
  max-width: 700px;
  width: 100%;
}

.adresse-gps .gps-popup {
  display: none;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  z-index: 10;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 8px;
  animation: fadeIn 0.3s;
}

.adresse-gps:hover .gps-popup {
  display: block;
}

@media (max-width: 600px) {
  .adresse-gps .gps-popup iframe {
    width: 200px;
    height: 120px;
  }
}

.tarif-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tarif-list li {
  background: #ffe6ef;
  margin: 8px 0;
  padding: 14px 18px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.08em;
  font-family: 'Lora', serif;
}

.tarif-list span {
  font-size: 1.1em;
  color: var(--primary-color);
}

.tarif-list small {
  font-family: 'Quicksand', sans-serif;
  color: #a77;
  font-size: 0.98em;
  margin-top: 2px;
  display: block;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .burger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 5%;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 220px;
    padding: 1.2rem 0.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.3s;
    z-index: 1001;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0.7em 1em;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .nav-links li a {
    width: 100%;
    display: block;
  }
  .nav-links li:hover {
    background: var(--secondary-color);
  }
  .navbar {
    flex-wrap: wrap;
    padding: 1rem 5% 0.5rem 5%;
  }
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Témoignages */
.testimonials-section {
  background: #fff0f8;
  padding: 4rem 1rem 3rem 1rem;
  border-radius: 40px;
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  box-shadow: 0 2px 16px #ffe6ef55;
}
.testimonials-title {
  text-align: center;
  color: #ff9bec;
  font-family: 'Montserrat', 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.testimonials-title i {
  color: #ff9bec;
  margin-right: 0.5em;
}
.testimonials-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #ffe6ef99;
  padding: 2rem 1.5rem;
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 220px;
  font-size: 1.08em;
  color: #444;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #ff9bec33;
}
.testimonial-author {
  color: #ff9bec;
  font-weight: 600;
  margin-top: 1em;
  font-size: 1em;
  font-family: 'Quicksand', sans-serif;
}

/* Galerie avant/après */
.gallery-section {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 0 1rem 3rem 1rem;
}
.gallery-title {
  text-align: center;
  color: #ff9bec;
  font-family: 'Montserrat', 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.gallery-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #ffe6ef99;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 8px 32px #ff9bec33;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* À propos modernisé */
.about-section {
  max-width: 1100px;
  margin: 5rem auto 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-img-wrapper {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img {
  max-width: 220px;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 24px #ffe6ef99;
  object-fit: cover;
  border: 5px solid #fff0f8;
}
.about-content {
  flex: 2 1 400px;
  min-width: 260px;
}
.about-content h2 {
  font-family: 'Montserrat', 'Playfair Display', serif;
  color: #ff9bec;
  font-size: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.about-content p {
  font-size: 1.15em;
  color: #444;
  margin-bottom: 1.5em;
}
.features {
  display: flex;
  gap: 2.5em;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
.feature {
  background: #fff0f8;
  border-radius: 16px;
  padding: 1.2em 1.5em;
  box-shadow: 0 2px 12px #ffe6ef55;
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.08em;
  color: #a77;
}
.feature i {
  color: #ff9bec;
  font-size: 1.3em;
}

/* Contact express */
.contact-express-section {
  background: #fff0f8;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -2px 16px #ffe6ef55;
  padding: 3rem 1rem 2rem 1rem;
  max-width: 900px;
  margin: 4rem auto 0 auto;
  text-align: center;
}
.contact-express-content h2 {
  color: #ff9bec;
  font-family: 'Montserrat', 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 1.2em;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.contact-express-content p {
  font-size: 1.1em;
  color: #444;
  margin: 0.7em 0;
}
.contact-express-content i {
  color: #ff9bec;
  margin-right: 0.5em;
}
.contact-express-content a {
  color: #a77;
  text-decoration: underline;
  transition: color 0.2s;
}
.contact-express-content a:hover {
  color: #ff9bec;
}

/* Responsive amélioré */
@media (max-width: 900px) {
  .about-section { flex-direction: column; gap: 2rem; }
  .about-img-wrapper { margin-bottom: 1.5rem; }
  .testimonials-grid { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .navbar { flex-direction: column; gap: 1em; padding: 1em 0.5em; }
  .services-grid { grid-template-columns: 1fr; }
  .about-section { padding: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-section, .gallery-section, .contact-express-section { padding: 2rem 0.5rem; }
}

.home-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: linear-gradient(90deg, #ff9bec 0%, #ffe6ef 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border: none;
  border-radius: 20px;
  padding: 0.5em 1.3em;
  margin-right: 1.2em;
  text-decoration: none;
  box-shadow: 0 2px 12px #ff9bec33;
  transition: background 0.3s, color 0.2s, transform 0.2s;
  position: relative;
  z-index: 2;
}
.home-btn i {
  font-size: 1.1em;
}
.home-btn:hover {
  background: linear-gradient(90deg, #ffe6ef 0%, #ff9bec 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
  .home-btn {
    font-size: 0.95em;
    padding: 0.4em 1em;
    margin-right: 0.5em;
  }
}