/* VARIABLES & BASE */

:root {
  --vert: #3d5a3e;
  --bordeaux: #7a3b52;
  --dore: #b8966a;
  --creme: #faf8f4;
  --texte: #3a3228;
  --texte-doux: #6b5c4e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif;
  color: var(--texte);
  background: white;
  line-height: 1.8;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e8e0d5;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

#logo {
  height: 80px;
  width: auto;
}

/* MENU BURGER */

#burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vert);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Sur mobile seulement */

@media (max-width: 768px) {

  #menu li a {
    display: block;
    padding: 0.8rem 0;
  }

  #menu li {
    text-align: center;
    padding: 0;
  }

  .btn-principal {
    padding: 1.1rem 2.5rem;
  }

  /* Le header cesse d'être fixe, */
  header {
    position: relative;
  }

  main {
    margin-top: 0;
  }

  #burger {
    display: flex;
  }

  #menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e8e0d5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #menu.ouvert {
    max-height: 300px;
  }

  #menu ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }


  /* Animation des 3 lignes en X quand le menu est ouvert */
  #burger.actif span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  #burger.actif span:nth-child(2) {
    opacity: 0;
  }

  #burger.actif span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* NAVIGATION */

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--texte-doux);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--vert);
}

/* MAIN (espace pour le header fixe) */

main {
  margin-top: 120px;
}

/* FOOTER */

footer {
  background: #2e3a2f;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 2;
}

/* HERO */

.hero {
  min-height: 100vh;
  background: var(--creme);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero-logo {
  width: 340px;
  max-width: 80%;
  height: auto;
  object-fit: contain;
  margin-bottom: 2rem;
}

.hero-titre {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 1rem;
}

h1 {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--vert);
  margin-bottom: 0.5rem;
}

.separateur {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1rem auto;
}

.separateur::before,
.separateur::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--dore);
}

.coeur {
  color: var(--dore);
  font-size: 0.8rem;
}

.hero-slogan {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--texte-doux);
  margin-bottom: 2.5rem;
}

.btn-principal {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--vert);
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.2s;
}

.btn-principal:hover {
  background: #2e4430;
}

/* PAGES DE CONTENU */

.page-contenu {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.section-label {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 0.8rem;
}

.page-contenu h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--vert);
  margin-bottom: 1rem;
}

/* Cartes de services */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.service-card {
  background: white;
  border: 1px solid #e8e0d5;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 90, 62, 0.08);
}

.service-icone {
  font-size: 2rem;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.service-card h2 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--vert);
  text-align: center;
  margin-bottom: 0.5rem;
}

.service-duree {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--dore);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--texte-doux);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Section rabais */

.rabais-section {
  margin-top: 4rem;
  background: var(--creme);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}

.rabais-section h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bordeaux);
  margin-bottom: 1.5rem;
}

.rabais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.rabais-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rabais-icone {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rabais-item p {
  color: var(--texte-doux);
  font-size: 0.9rem;
}

.rabais-item strong {
  color: var(--vert);
}

/* Lieu */

.services-lieu {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--texte-doux);
}

.services-lieu strong {
  color: var(--vert);
}

/* Responsive */

@media (max-width: 700px) {

  .services-grid,
  .rabais-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  text-align: left;
  align-items: start;
}

.contact-info {
  padding-top: 0;
}

.contact-info h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bordeaux);
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding-top: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icone {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item-texte {
  font-size: 0.9rem;
  color: var(--texte-doux);
}

.contact-item-texte strong {
  display: block;
  color: var(--texte);
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.contact-item-texte a {
  color: var(--vert);
  text-decoration: none;
}

.contact-item-texte a:hover {
  text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  padding-top: 0;
}

form input,
form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd4c5;
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  color: var(--texte);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

form input:focus,
form textarea:focus {
  border-color: var(--vert);
}

form textarea {
  resize: vertical;
  min-height: 140px;
}

form button {
  padding: 0.9rem;
  background: var(--bordeaux);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

form button:hover {
  background: #5e2a3c;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* À PROPOS */

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
  text-align: left;
}

.photo-elaine {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.apropos-texte h2 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bordeaux);
  margin-bottom: 1.2rem;
}

.apropos-texte p {
  color: var(--texte-doux);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.vision-box {
  background: var(--creme);
  border-left: 3px solid var(--dore);
  border-radius: 0 12px 12px 0;
  padding: 2rem 2.5rem;
  margin-top: 3rem;
  text-align: left;
}

.vision-label {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 1rem !important;
}

.vision-box p {
  color: var(--texte-doux);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.vision-signature {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--bordeaux) !important;
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .apropos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* PAGES LÉGALES */

.page-legale {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: left;
}

.page-legale h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--vert);
  margin-bottom: 0.5rem;
}

.date-maj {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--dore);
  margin-bottom: 2.5rem;
}

.page-legale h2 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bordeaux);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.page-legale p {
  color: var(--texte-doux);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.page-legale a {
  color: var(--vert);
}

.footer-legal {
  margin-top: 1rem;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--dore);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* RÉSEAUX SOCIAUX */

.footer-social {
  margin-top: 1.2rem;
}

.icone-social {
  width: 26px;
  height: 26px;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  filter: invert(1);
}

.icone-social:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* BOUTON D'APPEL À L'ACTION */

.cta-services {
  margin-top: 3rem;
}

/* REÇUS D'ASSURANCE */

.services-assurance {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--texte-doux);
}

.services-assurance strong {
  color: var(--vert);
}

/* PAGE DE REMERCIEMENT */

.merci-box {
  max-width: 560px;
  margin: 3rem auto 0;
  background: var(--creme);
  border-radius: 12px;
  padding: 2.5rem;
}

.merci-box p {
  color: var(--texte-doux);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.merci-box p:last-child {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: 0;
}

/* NOTE SOUS LE FORMULAIRE */

.note-formulaire {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--texte-doux);
  line-height: 1.6;
  font-style: italic;
}