/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #fffaf8; /* Blanc chaud */
  --primary-color: #c87991; /* Rose framboise vibrant */
  --secondary-color: #4c5a88; /* Bleu doux intermédiaire */
  --section-bg-color: #fad4d8; /* Rose pâle subtil */
  --site-footer-bg-color: #fffaf8; /* Bleu profond pour du contraste */
  --custom-btn-bg-color: #a44b72; /* Rose foncé pour les boutons */
  --custom-btn-bg-hover-color: #eba8b7; /* Rose saturé en hover */
  --dark-color: #000000; /* Noir classique */
  --p-color: #717275; /* Gris neutre pour le texte */
  --border-color: #eba8b7; /* Rose saturé pour des bordures douces */
  --section-light: #ffdda1; /* Beige doré pour des sections légères */
  --section-light2: #ffc9c9; /* Rose pastel clair pour encore plus de douceur */

  --background-color: #fffaf8; /* Fond global du site en blanc chaud */
  --default-color: #212529; /* Couleur par défaut pour le texte */
  --heading-color: #c87991; /* Rose framboise pour les titres */
  --accent-color: #a44b72; /* Rose foncé comme accent */
  --surface-color: #faf0e6; /* Blanc crème pour des éléments de surface */
  --contrast-color: #1b365c;

  --body-font-family: "Metropolis", sans-serif;

  --h1-font-size: 52px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 16px;
  --btn-font-size: 18px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*---------------------------------------
SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}

:target::before {
  content: "";
  display: block;
  height: 60px; /* fixed header height*/
  margin: -60px 0 0; /* negative fixed header height */
}

/*---------------------------------------
SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--accent-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--primary-color);
  color: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: var(--custom-btn-bg-hover-color);
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

/**
 * Backgrounds
 */
.backgrounds {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: -1;
}
.backgrounds .background {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  background-attachment: fixed;
}

.overlay:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--white-color);
  opacity: 0.3;
}

/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  color: var(--p-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px;
  opacity: 1;
}

.custom-text-box p,
.custom-text-box ul,
.custom-text-box li {
  color: #7375a6;
  text-align: justify;
}
.custom-text-box h2,
.custom-text-box h3,
.custom-text-box h4,
.custom-text-box h5 {
  text-decoration: underline;
  color: #ce8785;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 450px;
  height: 500px;
  object-fit: cover;
}

/*---------------------------------------
  MENU            
-----------------------------------------*/
.navbar {
  padding-top: 6px;
  padding-bottom: 6px;
}

.navbar-expand-lg .navbar-nav {
  padding-bottom: 30px;
}
.navbar-nav .nav-item {
  color: #7375a6;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 8px 20px;
}

.navbar {
  background: var(--white-color);
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 3px var(--accent-color) solid;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-size: 60px;
  font-weight: var(--font-weight);
  font-family: "Gabriola";
}

.navbar-brand span {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.navbar-brand:hover {
  color: var(--secondary-color);
}

.navbar-brand small {
  color: var(--secondary-color);
  display: block;
  font-size: 25px;
  line-height: normal;
  text-transform: uppercase;
  font-family: var(Gabriola);
}

.logo {
  width: 150px;
  height: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: #7375a6;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 0;
  max-width: 50px;
  padding: 0;
  margin-top: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  padding-top: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/**
 * Hero
 */
.hero {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-center {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.hero__logo {
  font-size: 60px;
  color: rgba(0, 0, 0, 0.5);
}

.hero__text {
  font-weight: normal;
  opacity: 0.8;
}

.hero__scroll {
  position: absolute;
  bottom: 60px;
  width: 200px;
  margin: auto;
  display: block;
  cursor: pointer;
  padding-bottom: 40px;
  left: 0;
  right: 0;
  text-transform: uppercase;
}
.hero__scroll .chevron {
  margin-top: 20px;
  display: block;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  color: #ff4081;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.octocat {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
}
.octocat img {
  display: block;
  width: 100%;
}

.chevron::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  vertical-align: top;
  width: 20px;
}

.chevron.right:before {
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.chevron.bottom:before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.chevron.left:before {
  left: 0.25em;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/**
 * Sections
 */
.section {
  width: 100%;
  float: left;
  overflow: hidden;
  margin-top: 100px;
}

.section-title {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: normal;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  clear: both;
}

.container {
  width: 1200px;
  margin: 0 auto;
  max-width: 90%;
  -webkit-transform: translateZ(1000px);
  transform: translateZ(1000px);
}

.code {
  width: 40%;
  clear: both;
  height: 200px;
  background: #fff;
  border-radius: 2px;
  padding: 10px;
  margin-top: 100px;
}
.code pre,
.code code {
  height: 100%;
  margin: 0;
}
.code code {
  padding: 20px 0 0 20px;
}
.code--small code {
  padding-top: 75px;
}
.code--left {
  float: left;
}
.code--right {
  float: right;
}
.code--wider {
  width: 60%;
}
.code--wider code {
  padding-top: 60px;
}

.section--more {
  color: var(--p-color);
  background: var(--white-color);
  padding: 20px 0 40px 0;
}

.section--more .container .row {
  margin-top: 100px;
  margin-bottom: 100px;
}

.section--code .container .row {
  margin-top: 100px;
  margin-bottom: 100px;
}

.section-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}
.section-group h3 {
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
.section-group h4 {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.6);
}
.section-group code {
  padding: 20px;
  font-size: 1.2em;
}
.section-group .btn {
  margin-right: 20px;
}

.section--contact {
  color: var(--p-color);
  background: var(--white-color);
  padding: 20px 0 40px 0;
}

.prestationnaturo-section {
  background-image: url("../img/pexels-pixabay-262713.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.prestationolfacto-section {
  background-image: url("../img/pexels-mastercowley-1128797.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.prestationstress-section {
  background-image: url("../img/pexels-pixabay-257092.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.donate-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 50px;
}

/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background-color: var(
    --white-color
  ); /* Utilisez "background-color" au lieu de "background" pour plus de clarté. */
  border-radius: var(
    --border-radius-medium
  ); /* Assurez-vous que la variable CSS est définie quelque part. */
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease; /* Ajout de "ease" pour rendre la transition plus fluide. */
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175); /* Ajout d'espaces pour plus de lisibilité. */
}

.custom-block-body {
  padding: 30px;
}
.custom-block-body p {
  text-align: justify;
}

.custom-block-image {
  display: block; /* Conserve l'alignement centré si utilisé avec margin. */
  margin: 0 auto; /* Ajout pour centrer horizontalement l'image. */
  width: 200px; /* Vérifiez si ces dimensions conviennent à tous vos cas d'utilisation. */
  height: 200px;
  object-fit: cover; /* Bonne pratique pour s'assurer que l'image garde son aspect tout en remplissant l'espace. */
  border-radius: var(
    --border-radius-medium
  ); /* Ajout d'arrondi pour l'image si nécessaire. */
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--primary-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}

/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL, AUTHOR               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 150px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--white-color);
  color: var(--accent-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .info-item ptitle {
  color: var(--primary-color);
  padding: 0;
  margin-bottom: 0;
  font-size: 30px;
}
.contact .info-item psmall {
  color: var(--primary-color);
  padding: 0;
  margin-bottom: 0;
  font-size: 20px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  color: var(--accent-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
h5 {
  color: #ce8785;
  font-size: var(--h5-font-size);
}
.site-footer {
  background-color: var(--site-footer-bg-color);
  padding-top: 70px;
}

.site-footer-bottom {
  background-color: var(--accent-color);
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.site-footer-bottom a:hover {
  color: var(--background-color);
}

.site-footer-link {
  color: var(--p-color);
}
.site-footer-link:hover {
  color: var(--primary-color);
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-right: 30px;
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: #7375a6;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
  text-decoration: none;
}

.footer-menu-link:hover {
  font-size: var(--p-font-size);
  color: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
  text-decoration: none;
}
.titre-presta,
.titre-presta .h2 {
  color: #ce8785;
  font-family: "Gabriola";
}
