/* === Palette Crème Élégante === */
:root {
  --creme: #f5efe6;
  --creme-hover: #e2d9c9;
  --creme-dark: #d6cbbb;
  --text-dark: #3e3e3e;
  --background: #fffaf4;
  --accent: #a58b62;
  --accent-hover: #927c54;
}

/* === Reset léger === */
body {
  background-color: var(--background);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
}

/* === Boutons === */
.btn,
.btn-get-started,
button,
.php-email-form button {
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn:hover,
.btn-get-started:hover,
button:hover,
.php-email-form button:hover {
  background-color: var(--accent-hover);
  color: #fff;
}

/* === Liens === */
a,
a:visited {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--accent-hover);
}

/* === Navigation === */
.navmenu a {
  color: var(--accent);
}

.navmenu a.active,
.navmenu a:hover {
  color: var(--accent-hover);
}

/* === Social Links === */
.header-social-links a,
.footer .social-links a {
  color: var(--accent);
  transition: color 0.3s ease;
  font-size: 1.2rem;
  margin: 0 8px;
}

.header-social-links a:hover,
.footer .social-links a:hover {
  color: var(--accent-hover);
}

/* === Sections === */
.section-title h2 {
  color: var(--accent-hover);
}

.service-item {
  background-color: #fdf8f1;
  border-radius: 10px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* === Footer === */
.footer {
  background-color: #fff5ea;
  padding: 40px 0;
  color: var(--text-dark);
}

.footer .credits a {
  color: var(--accent);
}

.footer .credits a:hover {
  color: var(--accent-hover);
}

/* === Scroll to Top === */
#scroll-top {
  background-color: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

#scroll-top:hover {
  background-color: var(--accent-hover);
  color: #fff;
}

/* === Formulaires === */
input[type="text"],
input[type="email"],
textarea {
  border: 1px solid var(--creme-dark);
  background-color: #fff;
  color: var(--text-dark);
  padding: 10px;
  width: 100%;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
}

label {
  font-weight: 500;
  color: var(--text-dark);
}

/* === Utilitaires === */
.light-background {
  background-color: var(--background);
}



/* Contact form minimaliste et crème */
#contact {
  background-color: #fffaf4;
  padding: 60px 0;
}

#contact label {
  font-weight: 500;
  color: #3e3e3e;
}

#contact .form-control {
  background-color: #fff;
  border: 1px solid #e6ded2;
  border-radius: 4px;
  padding: 10px;
  transition: border-color 0.3s ease;
  color: #3e3e3e;
}

#contact .form-control:focus {
  border-color: #a58b62;
  box-shadow: none;
}

#contact button {
  background-color: #a58b62;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

#contact button:hover {
  background-color: #927c54;
}


.service-item {
  background-color: #fdf8f1; /* fond légèrement crème */
  border: 1px solid #efe7dc; /* bordure douce, ton crème très clair */
  border-radius: 12px;
  padding: 30px 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}


.service-item .icon {
  font-size: 26px;
  color: #a58b62;
  background-color: #f5efe6; /* ton crème clair */
  padding: 16px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(165, 139, 98, 0.1);
}


/* Style de base pour tous les liens */
a {
  color: #a58b62;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* Effet hover crème sous forme de barre */
a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #a58b62; /* crème chic */
  transition: width 0.3s ease;
}



/* Option : couleur du lien au hover */
a:hover {
  color: #927c54;
}


.section-title h2:after {
  background: black !important;
}


.testimonials .swiper-slide {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.testimonials img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: #a58b62 !important;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #927c54 !important;
  opacity: 1;
}

