/*=======================================================================Site général*/
	:root {
      --violet: #ac52bb;
      --violet-ct: #ca76d826;
      --violet-hover: #9c4fa9;
      --violet-active: #884394;
}

		* {
	margin: 0;
}

		body {
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}




		.page-container {
	flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  
  font-family: 'Poppins', sans-serif;
}

p, button, a, li, strong {
  font-family: 'Raleway', sans-serif;
}

/*=======================================================================Header*/
		.header {
	background-color: var(--violet);
    padding: 12px 32px 18px 32px;
    display: flex;
}

.header-text-container {
  
}

.header-main-text {
  	color: white;
  	font-size: 2rem;
    font-weight: bold;
  	font-family: 'Poppins', sans-serif;
  	text-decoration: none;
}

.header-secondary-text {
  	color: white;
}

.header-nav {
    display: flex;
    margin-top: auto;
    flex: 1;
    justify-content: end;
    gap: 16px;
}

.header-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.header-nav a:hover {
  color: #44acdb;
}

.header-nav-icon {
  display: none;
}
/*=======================================================================Footer*/
		.footer {
	height: 10vh;
	background-color: var(--violet);
}

/*=======================================================================Home*/
		.home-title-container {
	text-align: center;
    padding-top: 32px;
	margin-bottom: 32px;
    height: 750px;
    background-color: var(--violet-ct);
}

.home-title-container h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.home-title-p {
  	font-family: 'Satisfy', cursive;
  	font-size: 4rem;
  	margin-bottom: 32px;
    letter-spacing: 2px;
}

.home-title-ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 40%;
  margin: 32px auto 0;

  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  font-size: 1.1rem;
  text-align: left;
  list-style: none;
  font-weight: 600;

  transition: width 0.5s ease;
}

.home-title-ul.expanded {
  width: 70%;
}

.home-title-ul li {
  position: relative;
  padding: 12px 16px 12px 32px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.home-title-ul li:hover {
  background: #f5f5f5;
  transform: translateX(4px);
}

.home-title-ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  transition: transform 0.2s ease;
}

.home-title-ul li.active::before {
  content: "▼";
}

.home-title-ul-p {
  display: none;
  margin-top: 8px;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.home-title-ul li.active .home-title-ul-p {
  display: block;
}

.home-title-ul li.active {
  background: #f0ebff;
}

.home-maininfo-title {
  padding-left: 64px;
  margin-bottom: 32px;
}

.home-maininfo-title-h2 {
  font-size: 2.5rem;
  text-decoration: underline;
  text-decoration-color: var(--violet);
  text-decoration-style: dotted;
}

		.home-maininfo-container {
	width: min(1100px, 90%);
	margin: auto;
    margin-bottom: 64px;
}

		.home-maininfo-buttons-container {
	display: flex;
	border: solid var(--violet) 2px;
	border-bottom: none;
	width: fit-content;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

		.home-maininfo-button {
	color: var(--violet);
	background-color: var(--violet-ct);
	border: none;
	border-right: solid var(--violet) 1px;
	font-size: 1rem;
    font-weight: 600;
    padding: 14px 22px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
}

		.home-maininfo-button:hover {
  	background-color: var(--violet-hover);
    color: white;
}

.home-maininfo-button.active {
  	background-color: var(--violet-active);
    color: white;
}

		.home-maininfo-button:last-child {
	border-right: none;
}

		.home-maininfo-info-container {
	display: flex;
	border: solid var(--violet) 2px;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 565px;
}

		.home-maininfo-img-container {
	width: 40%;
    min-height: 420px;
}

		.home-maininfo-img {
	height: 100%;
    width: 100%;
    object-fit: cover;
}

		.home-maininfo-text-container {
	width: 60%;
    padding: 11px 38px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    display: none;
}

		.home-maininfo-text-container-h2 {
    color: var(--violet);
    font-size: 2rem; 
}

		.home-maininfo-text-container-p {
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    max-width: 60ch;
    line-height: 1.5;
}

		.home-maininfo-text-button-container {
  	text-align: left;
}

		.home-maininfo-text-button {
	color: white;
    border: solid var(--violet) 2px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: bold;    
    background-color: var(--violet);
    padding: 12px 24px;
    margin-top: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: #00000014 0px 3px 10px;
    letter-spacing: 0.5px;
    display: block;
    width: fit-content;
    text-decoration: none;
}

		.home-maininfo-text-button:hover {
	background-color: var(--violet-hover);
}

/*--------------------------------------------Accompagnement*/
.home-accompagnement-container {
  min-height: 360px;
  background: linear-gradient(180deg, #f1c9f6 20%, #efe1f1);
  width: 100%;
  padding: 20px 35px;
  box-sizing: border-box;
  box-shadow: #00000014 0px 3px 20px;
  background-size: 100% 4px;
}

.home-accompagnement-intro-container {
  margin-bottom: 32px;
  padding-left: 29px;
}

.home-accompagnement-container-h2 {
  font-size: 2.5rem;
  text-decoration: underline;
  text-decoration-color: var(--violet);
  text-decoration-style: dotted;
}

.home-accompagnement-box-container {
  display: flex;
  gap: 64px;
}

.home-accompagnement-box {
  background-color: #fff;;
  text-align: center;
  padding: 48px 35px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  width: 25%;
}

.home-accompagnement-box:hover {
  
}

.home-accompagnement-box-img {
  max-width: clamp(32px, 20%, 64px);
}

.home-accompagnement-box h3 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.home-accompagnement-box p {
  font-size: 1.05rem;
  max-width: 100%;
  margin: auto;
}


/*--------------------------------------------Luca*/
.home-luca-title-container{
  padding-left: 64px;
}

.home-luca-h2 {
  font-size: 2.5rem;
  text-decoration: underline;
  text-decoration-color: var(--violet);
  text-decoration-style: dotted;
}

.home-luca-content-container {
  display : flex;
  width: 100%;
  padding: 25px 15%;
  box-sizing: border-box;
}

.home-luca-left-container {
  width: 50%;
  text-align: center;
}

.home-luca-left-container-citation {
  font-family: 'Satisfy', cursive;
  font-weight: 400;
  font-size: 2rem;
}

.home-luca-right-container {
  width: 50%;
  padding: 12px 25px;
}

.home-luca-right-container-h3 {
  color: var(--violet);
}

.home-luca-right-experience-p {

}


/*--------------------------------------------Prestations*/
.home-prestations-container {
  padding: 16px 64px 32px;  
  background-color: var(--violet-ct);
}

.home-prestations-title-container {
  margin-bottom: 32px;
}

.home-prestations-h2 {
  font-size: 2.5rem;
  text-decoration: underline;
  text-decoration-color: var(--violet);
  text-decoration-style: dotted;
}

.home-prestations-box-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px 32px;
  box-sizing: border-box;
}

.home-prestations-box {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  box-shadow: #00000025 0px 3px 10px;
  background: white;
  border-radius: 8px;

}

.home-prestations-box-h3 {
  font-size: 1.5rem;
  color: var(--violet);
}

.home-prestations-box-p {
  margin: 0 auto;
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.home-prestations-box-button {
  background-color: var(--violet);
  color: white;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  display: block;
  width: fit-content;
  margin: auto auto 0 auto;
  border-radius: 6px;
  font-size: 1.3rem;
  text-decoration: none;
}

.home-prestations-box-button:hover {
  background-color: var(--violet-hover);
}


/*=======================================================================Contact*/
/*--------------------------------------------Hero contact */
    .contact-hero {
        background-color: var(--violet);
        padding: 40px 20%;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .contact-hero .texte-cursif {
        font-size: 1.2em;
        color: #f3e8ff;
        display: block;
        margin-bottom: 8px;
    }

    .contact-hero h1 {
        font-size: 2.4em;
        color: white;
        margin-bottom: 12px;
    }

    .contact-hero p {
        font-size: 1em;
        color: #e9d5f5;
        line-height: 1.7;
        max-width: 480px;
    }

    .contact-hero-bouton-container {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .contact-faux-bouton {
        border-radius: 20px;
        background-color: rgba(255,255,255,0.15);
        padding: 8px 16px;
        border: 1px solid rgba(255,255,255,0.4);
        font-size: 0.9em;
        color: white;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

/*--------------------------------------------Boutons de contact */
    .contact-container-moyens {
        padding: 40px 20%;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .contact-moyens {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 18px 24px;
        border: 1.5px solid #f0e6ff;
        border-radius: 12px;
        background-color: white;
        cursor: pointer;
        transition: border-color 0.2s ease, background-color 0.2s ease;
        text-decoration: none;
        color: inherit;
    }

    .contact-moyens:hover {
        border-color: var(--violet);
        background-color: #faf5ff;
    }

    .contact-moyens-icone {
        border-radius: 50%;
        background-color: #f3e8ff;
        border: 1.5px solid #d8b4fe;
        padding: 12px;
        font-size: 1.2em;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
    }

    .contact-moyens-texte {
        flex: 1;
    }

    .contact-moyens-texte h2 {
        font-size: 1em;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 3px;
    }

    .contact-moyens-texte p {
        font-size: 0.85em;
        color: #aaa;
    }

    .contact-fleche {
        color: #d8b4fe;
        font-size: 1.2em;
        flex-shrink: 0;
    }

/*--------------------------------------------Note de bas de page */
    .contact-note {
        text-align: center;
        font-size: 0.85em;
        color: #ccc;
        font-style: italic;
        padding: 0 20% 40px;
    }

    /*======================================================================= Prestation */



.prestation-container-prestation {
        display: flex;
        gap: 2rem;
        padding: 0 10rem 3rem;
        border-bottom: 3px solid var(--violet);
    }

    .prestation-container-droite {
        width: 70%;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .prestation-container-gauche {
        width: 30%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: start;
    }

    .prestation-title {
        font-size: 1.8rem;
        color: var(--violet);
        font-weight:900;
      	margin: 3rem 0 0 10rem;
    }

    .prestation-subtitle {
        font-size: 1.2rem;
        font-weight: 600;
        color: #2e2e2e;
        border-top: 2px solid #e0d0e8;
        padding-top: 0.8rem;
    }

    .prestation-explication-prestation {
        line-height: 1.7;
        color: #444;
        font-size: 1rem;
        letter-spacing: 1;
    }

    .prestation-aqui-ca-sadresse {
        background: linear-gradient(135deg, #e3e1ff, #ffffff);
    	border-left: 6px solid rgb(66 66 162);
    	border-radius: 12px;
    	padding: 1rem 1.2rem;
    	box-shadow: #00000025 0px 5px 8px;
    }
    
    .prestation-aqui-ca-sadresse hr {
        border-bottom: 1px solid rgb(66 66 162);;
    }

    .prestation-objectifs {
        background: linear-gradient(135deg, rgb(193, 231, 193), #ffffff);
        border-left: 6px solid rgb(17, 133, 17);
        border-radius: 12px;
        padding: 1rem 1.2rem;
        box-shadow: #d4d3d3 5px 3px 2px;
    }

    .prestation-aqui-ca-sadresse h2 {
        font-size: 1.1rem;
        color: rgb(66 66 162);
        margin-bottom: 0.6rem;
        font-weight:800;
    }

   .prestation-aqui-ca-sadresse ul, .prestation-objectifs ul {
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #111;
    line-height: 1.6;
    list-style: none;
}

.prestation-aqui-ca-sadresse li, .prestation-objectifs li {
    position: relative;
    padding-left: 1.2rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.prestation-aqui-ca-sadresse li:not(:last-child), .prestation-objectifs li:not(:last-child) {
    border-bottom: 1px solid rgba(66, 66, 162, 0.15);
}

.prestation-aqui-ca-sadresse li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(66 66 162);
    font-weight: 900;
}

.prestation-objectifs-li-do::before {
  content: "✅";
  font-size: 1.2rem;
  position: absolute;
  left: -1ch;
}

.prestation-objectifs-li-dont::before {
  content: "❌";
  font-size: 1.2rem;
  position: absolute;
  left: -1ch;
}

.prestation-objectifs p strong, .prestation-aqui-ca-sadresse p strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.prestation-objectifs p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #222;
}

















/*==============================================================================================*/
/*==============================================================================================*/
/*====================================Responsive mobile=========================================*/
/*==============================================================================================*/
/*==============================================================================================*/
/*=======================================================================Mobile*/
@media (max-width: 768px) {

  * {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  /* Header */
  .header {
    padding: 18px 16px;
    display: block;
    position: relative;
  }

  .header-main-text {
    font-size: 1.8rem;
  }

  .header-secondary-text {
    font-size: 0.95rem;
  }

  .header-nav {
    gap: 10px;
    display: none;
  }
  
    .header-nav.active {
      display: flex;
      margin-top: 16px;
      justify-content: space-around;
  }

  
  .header-nav-icon {
    display: block;
    position: absolute;
    top: 3vw;
    right: 5vw;
  }
  
  .header-nav-icon::before {
    content: '☰';
    font-size: 1.5rem;
    color: white;
  }

  .header-nav a {
    font-size: 1rem;
  }

  /* Hero */
  .home-title-container {
    padding: 32px 16px 40px;
    min-height: 750px;
    height: auto;
  }

  .home-title-container h1 {
    font-size: 9dvw;
  }

  .home-title-p {
    font-size: 11dvw;
    margin-bottom: 24px;
  }

  .home-title-ul,
  .home-title-ul.expanded {
    width: 100%;
    padding: 18px;
    margin-top: 24px;
    font-size: 0.8rem;
  }

  .home-title-ul li {
    padding: 12px 12px 12px 28px;
  }

  .home-title-ul li:hover {
    transform: none;
  }

  /* Titres de section */
  .home-maininfo-title,
  .home-luca-title-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-maininfo-title-h2,
  .home-accompagnement-container-h2,
  .home-luca-h2,
  .home-prestations-h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  /* Bloc profils */
  .home-maininfo-container {
    width: 92%;
    margin-bottom: 48px;
  }

  .home-maininfo-buttons-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: solid var(--violet) 2px;
    border-radius: 8px 8px 0 0;
  }

  .home-maininfo-button {
    border-right: solid var(--violet) 1px;
    border-bottom: solid var(--violet) 1px;
    padding: 12px 8px;
    font-size: 0.95rem;
  }

  .home-maininfo-button:nth-child(2n) {
    border-right: none;
  }

  .home-maininfo-info-container {
    flex-direction: column;
    border-radius: 0 0 8px 8px;
    height: auto;
  }

  .home-maininfo-img-container {
    width: 100%;
    min-height: 260px;
    max-height: 350px;
  }

  .home-maininfo-text-container {
    width: 100%;
    padding: 0px 22px;
  }

  .home-maininfo-text-container-h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .home-maininfo-text-container-p {
    font-size: 1rem;
    text-align: center;
  }
  
  .home-maininfo-text-button-container {
    display: flex;
    justify-content: center;
    padding-bottom: 8px;
  }

  .home-maininfo-text-button {
    margin-top: 32px;
    font-size: 1.1rem;
  }

  /* Accompagnement */
  .home-accompagnement-container {
    padding: 28px 16px;
  }

  .home-accompagnement-intro-container {
    padding-left: 0;
  }

  .home-accompagnement-box-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-accompagnement-box {
    padding: 32px 22px;
    width: 100%;
  }
  
   .home-accompagnement-box p {
    width: 100%;
  }

  /* Luca */
  .home-luca-content-container {
    flex-direction: column;
    padding: 24px 16px;
    gap: 24px;
  }

  .home-luca-left-container,
  .home-luca-right-container {
    width: 100%;
  }

  .home-luca-left-container-citation {
    font-size: 1.6rem;
  }

  .home-luca-right-container {
    padding: 0;
  }

  /* Prestations */
  .home-prestations-container {
    padding: 28px 16px;
  }

  .home-prestations-box-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-prestations-box-button {
    font-size: 1.1rem;
  }

  /* Contact */
  .contact-hero,
  .contact-container-moyens {
    padding: 32px 16px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero-bouton-container {
    flex-direction: column;
  }

  .contact-note {
    padding: 0 16px 32px;
  }



/*==========================================================================Prestations*/
.prestation-title {
  margin: 1rem 0 0.5rem 1rem;
}

.prestation-explication-prestation {
   margin-bottom: 0.8rem; 
  }
  
.prestation-container-prestation {
  display: block;
  padding: 0 1rem 3rem;
}

.prestation-container-droite {
  width: 100%;
  gap: 0;
}

.prestation-container-gauche {
  width: 100%;
  margin-top: 16px;
}
  
  
  
  }










