@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {

    --sage: #d4c9b0;
    --sage-dark: #56624f;
    --cream: #e0ebeb;
    --white: #ffffff;
    --text: #3d3d3d;
    --red:red;
    --color_18: 176,176,176;

    --radius: 20px;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
}
html{
    scroll-behavior:smooth;
    
}



header{
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

/* Conteneur pour le menu (centré) */
.nav-container {
  display: flex;
  gap: 20px;                 /* Espace entre les liens du menu */
  position: absolute;        /* Position absolue pour centrer */
  left: 50%;                 /* Centrage horizontal */
  transform: translateX(-50%); /* Ajustement pour centrer parfaitement */
}
.container{
    width:min(1200px,90%);
    margin:auto;
}
/* Conteneur pour le logo et le texte (aligné à gauche) */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Style pour l'image du logo */
.logo-img {
  height: 40px;
  width: auto;
}

/* Style pour le texte du logo */
.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #333;
  text-decoration: none;
}

h1{
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}


@font-face {
    font-family: "Parisienne";
    src: url("/public/assets/fonts/Parisienne-Regular.ttf") format("woff2");
    font-weight: 400;
    font-style: normal;
}


body {
    font-family: "Lato", sans-serif !important;
    font-weight: 300;
    font-style: normal;
    color:var(--text);
    line-height:1.8;
}

p{
    font-family: serif;
}

/* TITRES DE SECTIONS */
.section-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 35px !important;
    margin: 3rem 0 1rem;
    font-weight: 600;
}

/* INTRO */
.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* CARTES PRINCIPALES (les 4 blocs du haut) */
.services-grid {
    
    min-height: 60vh;
    margin: 30px auto;
    max-width: 1400px;
    border-radius: 20px;
    padding: 60px;
    display: flex;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;

    justify-content: center;
    flex-wrap: nowrap; /* empêche le retour à la ligne */
}


h2, p, a{
    color: #fff;
   
}
.service-card h2 {
    margin-top: 0;
   
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px !important;
}


.service-card p {
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-family: "lato", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
}
/*CERCLE NUMEROTE DES SECTION DE 1 à 5*/
.service-card {
    position: relative;
    background: rgb(145, 144, 142);
    padding: 1rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
    margin-top: 40px;
    height: auto;
    border-radius: 12px;
    font-family: serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pousse le bouton en bas */
}

.service-card-1 {
    position: relative;
    background: #d4c9b0;
    padding: 1rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
    margin-top: 40px;
    height: auto;
    border-radius: 12px;
    font-family: serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pousse le bouton en bas */
}


/* Le cercle */
.circle {
    position: absolute;
    top: -25px;                /* fait dépasser le cercle */
    left: 50%;
    transform: translateX(-50%);
    
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #f3ede6;       /* ton beige */
    color: #2e2e2e;
    font-size: 50px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--accent);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    font-family: serif;
    background: #ece6d8; /* cadre blanc */
}


.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* BLOCS DE FORMULES */
.offers {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.offer {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.offer h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.offer p {
    line-height: 1.5;
}

.price {
    display: block;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--accent);
}

/* BOUTON PLAQUETTE */
.download {
    display: block;
    text-align: center;
    margin: 2rem auto;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

/* BONUS FAMILLE */
.bonus {
    background: var(--beige);
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    max-width: 700px;
    margin: 2rem auto;
    font-weight: 600;
}

.number-left {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f3ede6;
    color: #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}


.circle-row {
    display: flex;
    gap: 20px; /* espace entre les cercles */
    justify-content: center; /* centrer l’ensemble */
    margin-bottom: 2rem;
}

.service-message{
    text-align: center;
}
.service-message-p{
    font-family: "Lato", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
    font-size: 18px;
    color: #000;
}