/*
Theme Name: lou
Theme URI: http://localhost:8888/lou/
Author: Louise OBÉ
Author URI: https://louiseobe.com
Description: Thème pour un coach
Version: 1.0
Tags: louiseobe
*/


/*SCROLL FLUIDE VERS CONTACT*/
html {
    scroll-behavior: smooth;
}
.main {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}


.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: -10px;
  z-index: 9999999;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: black;
  stroke-width: 3.5;
  stroke-linecap: round;
}
.ham1 .top {
  stroke-dasharray: 40.5 139;
}
.ham1 .bottom {
  stroke-dasharray: 40.5 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}
.loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: beige;
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-content: center;
}
.loader svg {
  width: 150px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader .spin {
  transform-origin: center;
  animation: spin 1.1s linear infinite;
}
.loader.hidden {
  opacity: 0;
  transition: opacity 0.1s;
}
body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  background-color: white;
  color: #514741;
  font-size: 15px;
  width:100vw;
  overflow-x:hidden;
}
.mobile {
  display: none;
}
.hidden {
  opacity: 0;
}
.fadeIn {
  transition: all 0.5s ease-in;
}
header {
  padding: 20px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;

  position: relative;
  background-color: #97b89a;
  width: 100vw;
  color: white;

}
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
 padding-inline-start:0;
}

nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  color: white;
}


a.button {
  text-transform: uppercase;
  border: 1px solid #437CAD;
  padding: 15px 25px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: #437CAD;
  display: inline-block;
}
a.button:hover {
  background-color: #437CAD;
  color: white;
}
section {
  display: flex;
  justify-content: center;
  position: relative;
}


footer {
  color: #28502B;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100vw;
  position: relative;
}
footer p.bottom {
  position: absolute;
  bottom: 0;
  background-color: #97b89a;
  width: 100vw;
  font-size: 12px;
  color: white;
  padding: 5px;
  text-align: center;
}
footer p.bottom a {
  color: white;
}







.mobile{
    display: none;
}





/* -------- RESPONSIVE ---------- */

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 9999999;
  position: absolute;
  right: 20px;
  top: 6px;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: white;
  stroke-width: 3.5;
  stroke-linecap: round;
}
.ham1 .top {
  stroke-dasharray: 40.5 139;
}
.ham1 .bottom {
  stroke-dasharray: 40.5 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}
.ham1.active .line{
    stroke: white;
}
nav#mobile-menu {
  position: absolute;
  margin-top: 0;
  right: 0;
  text-align: right;
  padding-top: 100px;
  padding-bottom: 30px;
  z-index: 999999;
  background-color: #97b89a;
  top: -60%;
  opacity: 0;
  width: 100vw;
  transition: all 0.5s cubic-bezier(0, 0.61, 0.34, 1.01);
}
nav#mobile-menu.active {
  top: 0;
  opacity: 1;
}
nav#mobile-menu ul {
  flex-direction: column;
  transform: none !important;
}
nav#mobile-menu ul li {
  margin-bottom: 20px;
}
nav#mobile-menu ul li a{
    color: white;
}




