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

body {
  font-family: "Spinnaker", sans-serif;
  font-size: 19px;
  line-height: 1.8;
  background-color: #fff3de;
  color: #333;
  display: grid;
  grid-template-rows: auto 1fr auto; /* header, main, footer */
  min-height: 100vh;
}

/* HEADER */
header {
  background-color: #fff3de;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header h1 {
  margin-bottom: 10px;
}

.headline {
  font-size: 1.2em;
  color:  #777;
}

/* BURGER */

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  border: none;
  background: none;
  padding: 15px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* NAVBAR */
nav {
  background-color: #333;
}

nav .nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav li {
  margin: 0 20px;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 15px 0;
  display: block;
}

nav a:hover {
  color: #c7a15a;
}

nav a.active {
  color: #c7a15a;
  border-bottom: 2px solid #c7a15a;
}

.nav-contact{
  padding: 0 20px;
  background-color: #c7a15a;
}

.nav-contact:hover{

  background-color: black;
}

/* .nav-contact a {
   color: black;
   }
 */

/* The subnavigation menu */
.subnav {
  float: left;
  overflow: hidden;
}


/* Add a red background color to navigation links on hover */
.navbar a:hover, .subnav:hover .subnavbtn {
  background-color: #333;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  display: none;
  position: absolute;
  background-color: #333;
  /* width: 15%; */
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  color: white;
  text-decoration: none;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
  /* background-color: #eee; */
  color: #c7a15a;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  margin-left: 2px;
  vertical-align: middle;
  display: inline-block;
  margin-left:5px;
  transition: transform 0.3s ease;
}

.subnavbtn:hover .arrow-down {
  transform: rotate(90deg);
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
}

section p a {
  color: #4b3a42;
}

.horizontal-line {
  text-align: center;
  width: 100%;
  height: 2px;
  background-color: #000;
  margin: 10px 0 50px 0;
}
.gradient-section {
  position: relative;
  padding: 60px 0;
}

.gradient-section::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e9efc6, #ffd6e2);
  z-index: -1;
}

.center{
  text-align: center;
}

ul.stylise {
  list-style: none;
  padding-left: 0;
}

ul.stylise li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  color: #4b3a42;
  line-height: 1.6;
}

ul.stylise li::before {
  content: "✵";
  position: absolute;
  left: 0;
  top: 2px;
  color: #6d545f;
  font-size: 14px;
}

ul.stylise li a {
  color: #4b3a42;
  display: block;
}

/* HERO IMAGE */
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.gradient-section img {
  max-height:75vh;
  margin-bottom: 50px;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

/* COLONNE GAUCHE (petite) */
.sidebar {
  flex: 1;
}

.sidebar img {
  width: 100%;
  border-radius: 8px;
}

/* COLONNE PRINCIPALE */
.main-content {
  flex: 3;
}

/* PAGE 2 COLONNES ÉGALES */
.two-columns {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
}

.column, .footer-links, .footer-icons {
  flex: 1;
}

/* SECTION CV */
.cv-section {
  background-color: #ffffff;
  padding: 30px;
  border-left: 4px solid #c7a15a; /* touche élégante */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  border-radius: 6px;
}

.cv-section h3 {
  margin-bottom: 20px;
  color: #444;
}

.cv-item {
  margin-bottom: 20px;
}

.cv-item strong {
  display: block;
  color: #000;
}

.cv-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 5px;
}



.temoignages {
  column-count: 2;
  column-gap: 30px;
}

.temoignage {
  break-inside: avoid;
  margin-bottom: 30px;
  padding: 25px;
  border: 1px solid #6d545f;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.temoignage:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.temoignage h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #6d545f;
  position: relative;
  padding-left: 25px;
}

.temoignage h3::before {
  content: "“";
  font-size: 2rem;
  color: #6d545f;
  position: absolute;
  left: 0;
  top: -10px;
}

.temoignage p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.client {
  margin-top: 15px;
  font-weight: bold;
  color: #6d545f;
  font-size: 0.9rem;
}

.livre {
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
  font-family: 'Georgia', serif; /* typographie élégante */
  color: #4b3a42;
}

/* Titre principal */
.livre-titre {
  font-size: 2.2rem;
  font-weight: bold;
  color: #6d545f;
  margin-bottom: 10px;
  text-transform: uppercase; /* pour un effet “marquant” */
  letter-spacing: 1px;
}

/* Sous-titre */
.livre-sous-titre {
  font-size: 1.2rem;
  font-style: italic;
  color: #5a4650;
  margin-bottom: 20px;
}

/* Auteur */
.livre-auteur {
  font-size: 1rem;
  font-weight: 600;
  color: #6d545f;
  margin-bottom: 5px;
}

/* Maison d'édition */
.livre-editeur {
  font-size: 0.9rem;
  font-style: italic;
  color: #7a606b;
}

.tarif-consultation {
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}

/* .tarif-consultation h2 {
   margin-bottom: 20px;
   font-size: 26px;
   color: #333;
   }
 */
.tarif-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* .tarif-prix {
   margin-bottom: 15px;
   }
 */
.prix {
  font-size: 42px;
  font-weight: bold;
  color: #6d545f;
}


.prix-mini {
  font-size: 24px;
  font-weight: bold;
  color: #6d545f;
}

.duree {
  font-size: 18px;
  color: #777;
}

.tarif-description {
  font-size: 15px;
  color: #555;
  margin: 15px 0 20px;
}

.tarif-infos {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.tarif-infos li {
  margin: 6px 0;
  color: #444;
}

.btn-rdv {
  display: inline-block;
  background: #333;
  color: #c7a15a;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-rdv:hover {
  background: #c7a15a;
  color: black;
}

.contact-section {
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item strong {
  display: inline-block;
}

.map {
  margin-top: 30px;
}

.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* FOOTER */
footer {
  font-size: 1rem;
  /* position: sticky; */
  bottom: 0;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  max-width: 100%;
  display: flex;
  gap: 40px;
}

.footer-links{
  display:flex;
  justify-content: baseline;
}
.footer-icons{
  display:flex;
  justify-content: flex-end;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin-right:20px;
}

footer a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-menu.active {
    display: flex;
  }

    .subnav-content{
    display: none;
  }

  .subnav.open .subnav-content{
    display: block;
  }
  
  .container,
  .two-columns {
    flex-direction: column;
    margin-top: 5px;
  }

  .temoignages {
    column-count: 1; /* une seule colonne pour mobile */
    column-gap: 20px;
  }
  /* .temoignages {
     grid-template-columns: 1fr.temoignage:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 18px rgba(0,0,0,0.12);
     };
     }
   */
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li {
    margin: 5px 0;
  }

  nav a {
    padding: 5px 0;
  }

.gradient-section img {
  max-height:75vh;
  width: 100%;
  margin-bottom: 20px;
}
}
