/* Here are the style for unique element like nav, body, container, index, ... */


/* Check the other file for responsive and global class */


/* ============ General ============*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* --primary: #74B042;
    --primary-tint: #89b644;
    --primary-shade: #376E0A;
    --primary-tone: #579325;
    --secondary: #B14264;
    --accent-tint: #EBA3B9;
    --accent-shade: #6E0A28;
    --white: #f1f1f1;
    --black: #130207; */
    /* test other color 01 */
    --primary: #b8e099;
    --secondary: #005f58;
    --white: #f0f2ed;
    --black: #130207;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: var(--secondary);
}

.container-custom {
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    /* width: 100%; */
    max-width: 1200px;
    background-color: var(--primary);
}

a {
    color: var(--secondary);
    font-weight: 500;
}


/* --- Navigation --- */

.nav-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--secondary);
    background-color: var(--primary);
}

.logo {
    margin-left: 10%;
}

.nav-logo {
    height: 150px;
    width: 150px;
}

.nav-bar {
    position: relative;
    cursor: pointer;
    margin-right: 10%;
}

.nav-bar__list {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    border-radius: 5px;
    margin: 15px 0;
}

.nav-bar__list ul {
    list-style-type: none;
    margin: 15px;
}

.nav-bar__list-item {
    margin: 10px 5px 10px 0;
    z-index: 5;
}

.nav-link-custom {
    display: block;
    text-decoration: none;
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    font-weight: 300;
}

.nav-link-custom:hover {
    background-color: var(--white);
    color: var(--secondary);
    z-index: 4;
    width: 100%;
}

#service__menu {
    position: relative;
}

.service__menu__submenu {
    position: absolute;
    z-index: 3;
    background-color: var(--secondary);
    opacity: 95%;
    top: 46px;
    border-radius: 5px;
    padding: 5px 0;
}

.service__menu__submenu ul li {
    width: 280px;
}


/* .callToAction {
    background-color: var(--white);
    color: var(--primary-shade);
} */

.callToAction a {
    color: var(--secondary);
    overflow-wrap: break-word;
}


/* --- Footer --- */

.footer-bottom {
    border-top: 1px solid var(--secondary);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 35px 0;
}

.footer-bottom ul {
    list-style: none;
}

.footer-bottom__container {
    margin: 60px 0;
}

.footer-bottom__name {
    font-size: 1.3em;
}

.footer-bottom__contact {
    margin: 60px 0;
    letter-spacing: 2px;
}

.footer-bottom__contact,
.footer-bottom__address {
    background-color: var(--white);
    color: var(--secondary);
    padding: 5px;
    border-radius: 5px;
}

.footer-bottom__link {
    border-left: 1px solid var(--white);
    padding-left: 16px;
    background-color: var(--primary);
    border-radius: 5px;
    padding: 5px;
}

.footer-links ul li {
    line-height: 1.5em;
    padding: 5px;
}


/* .footer-bottom__contact p {
    margin: 0 auto;
    width: 100%;
    text-align: center;
} */

.footer-bottom__sublink {
    margin-left: 0.5em;
}

.footer-title {
    display: block;
    font-size: 1em;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 0.8em;
}

.footer-note {
    font-size: 0.7em;
}

.footer-mail {
    font-size: 0.85em;
}


/* Menu hamburger */

.hamburger-menu-top,
.hamburger-menu-middle,
.hamburger-menu-bottom {
    content: "";
    width: 24px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 1px;
    position: absolute;
    right: 30px;
    display: none;
    z-index: 6;
}

.hamburger-menu-top {
    top: -6px;
}

.hamburger-menu-middle {
    top: 0px;
}

.hamburger-menu-bottom {
    top: 6px;
}


/* ============ Pages ============ */


/* --- index.html --- */

.index-top {
    display: flex;
    width: 100%;
    padding: 10%;
    background-image: url("./img/index-img/zen01.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin: 50px 0;
}

.index-top::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 40%;
    top: 0;
    left: 0;
    z-index: 1;
}

.index-top__container {
    position: relative;
    z-index: 2;
    color: rgb(238, 234, 229);
    width: 100%;
}

.index_sub-title {
    font-size: 0.7em;
}

.index-top__quote {
    display: block;
    margin: 10%;
    text-align: justify;
}

.index-top__author {
    display: block;
    text-align: right;
    margin-right: 25%;
}

.index-contact {
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    margin: 25px 0 !important;
}

.index-contact-address {
    padding: 1em;
    text-align: left;
    background-color: var(--white);
    color: var(--secondary);
    border-radius: 5px;
}

.index-h2 {
    margin-bottom: 35px;
}


/* --- temoignage.html --- */

.testimonial_main-title {
    display: flex;
    margin: 50px 0;
    width: 100%;
    padding: 20%;
    background-image: url("./img/testimonial.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.testimonial_main-title::before {
    content: "";
    background-color: black;
    opacity: 35%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial_main-title_container {
    position: relative;
    margin: 50px 20px;
    z-index: 2;
    color: rgb(238, 234, 229);
    width: 100%;
}

.testimonial {
    padding: 2.5em;
}

.testimonial-block {
    background-color: var(--white);
    padding: 2em;
    border-radius: 5px;
}

.testimonial-block:nth-child(2n+1) {
    margin-right: 15%;
}

.testimonial-block:nth-child(2n) {
    margin-left: 15%;
}

.testimonial-sentence {
    text-align: justify;
    font-style: italic;
    margin-bottom: 0.8em;
}

.testimonial-author {
    text-align: right;
    margin-right: 15%;
}


/* --- tarifs.html --- */

.price-title__container {
    background-image: url("./img/price.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 20%;
    margin: 50px 0;
}

.price-title__container::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    opacity: 35%;
    top: 0;
    left: 0;
}

.price_main-title {
    position: relative;
    color: rgb(238, 234, 229);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 20px;
    margin: 50px 0;
}

.price-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.price-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    line-height: 2em;
    background-color: var(--secondary);
    border-radius: 10px 10px 0 0;
}

.price-box::before {
    content: " ";
    border-bottom: 1px dotted var(--white);
    width: 100%;
    position: absolute;
    border-radius: 10px 10px 0 0;
}

.price-title {
    z-index: 1;
    background-color: var(--secondary);
    padding: 0.5em;
    display: inline;
    left: 0;
    color: var(--white);
    border-radius: 10px 0 0 0;
    font-weight: 600;
    font-style: italic;
}

.price-amount {
    z-index: 1;
    background: var(--secondary);
    padding: 0.5em;
    position: absolute;
    right: 0;
    color: var(--white);
    border-radius: 0 10px 0 0;
    font-weight: 600;
    font-style: italic;
}

.price-description {
    width: 100%;
    background: var(--white);
    padding: 0.5em;
    border-radius: 0 0 10px 10px;
}


/* --- contact.html --- */

.contact-img {
    background-image: url("./img/contact.jpg");
}

.contact-img h1 {
    color: rgb(238, 234, 229);
}

.contact-container {
    margin: 70px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.contact-container__map {
    width: 60%;
    height: 500px;
    position: relative;
    text-align: right;
}

.contact-container__info {
    width: 30%;
    background-color: var(--white);
    padding: 10px;
    border-radius: 5px;
}

.contact__info__title {
    margin-bottom: 20px;
    color: var(--black);
}

.contact__info__name {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary);
}

.contact__info__description {
    line-height: 2em;
    color: var(--secondary);
}

.contat__info__description__mail {
    word-wrap: break-word;
}

.gmap_canvas {
    overflow: hidden;
    background: none!important;
    height: 100%;
    width: 100%;
}

.contact__info-remark {
    font-style: italic;
    font-weight: 700;
    color: red;
}


/* Sophrologie */

.sophrologie-img {
    background-image: url("./img/sophrologie.jpg");
}


/* Hypnose */

.hypnose-img {
    background-image: url("./img/hypnose.jpg");
}

.hypnose-text {
    padding: 2% 10%;
    text-align: justify;
}


/* Eft */

.eft-img {
    background-image: url("./img/eft.jpg");
}

.eft-text {
    margin-bottom: 25px;
    display: block;
}

.eft-last-text {
    margin-bottom: 60px;
}


/* Meditation */

.meditation-img {
    background-image: url("./img/meditation.jpg");
}

.mediation-quote {
    text-align: center !important;
    background-color: var(--white);
    padding: 10px;
    border-radius: 5px;
    margin: 10% 5% 2% 5%;
    display: block;
}

.meditation-author {
    display: block;
    text-align: right;
    margin-right: 10%;
}

.meditation-text {
    margin-top: 70px;
}


/* Coherance cardiaque */

.coheranceCardiaque {
    background-image: url("./img/coheranceCardiaque.jpg");
}


/* Ateliers Collectifs */

.ateliers-img {
    background-image: url("./img/ateliersCollectifs.jpg");
}