* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotu', sans-serif;
}

header
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgb(153,168,153);
    background: linear-gradient(90deg, rgba(153,168,153,1) 0%, rgba(255,255,255,1) 58%, rgba(255,255,255,1) 100%);
}

header .logo img
{
    width: 300px;
    height: 100px;
    padding: 10px;
}

header ul
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 50px;
    padding-right: 20px;
}

header ul a
{
    text-decoration: none;
    letter-spacing: 1.5px;
    color: #482811;
    position: relative;
}

header ul a:after
{
    content: "";
    position: absolute;
    background-color: saddlebrown;
    height: 10px;
    top: 50%;
    opacity: 0.4;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: 0.6s;
}

header ul a:hover:after
{
    width: 100%
}

header ul a:hover
{
    color: black;
}

.custom-shape-divider-top-1689851901 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    opacity: 0.5;
}

.custom-shape-divider-top-1689851901 svg {
    position: relative;
    display: block;
    width: calc(140% + 1.3px);
    height: 48px;
}

.custom-shape-divider-top-1689851901 .shape-fill {
    fill: #8eab38;
}

.banner
{
    background: url("../img/banners/banner.jpg");
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.blur
{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    opacity: 0.5;
}

main
{
    display: flex;
    width: 100%;
    position: absolute;
    top: 50%;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

main .title
{
    font-size: 3em;
    color: white;
}

main a
{
    text-decoration: none;
    color: white;
    font-size: 1em;
    margin-top: 10px;
    padding: 10px;
    border: 0.5px solid white;
    border-radius: 80px;
    transition: 0.3s ease-in-out;
}

main a:hover
{
    background-color: #a67f5f;
    opacity: 0.8;
    border: 0.5px solid #c59a77;
}

.custom-shape-divider-bottom-1689869141 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1689869141 svg {
    position: relative;
    display: block;
    width: calc(140% + 1.3px);
    height: 48px;
}

.custom-shape-divider-bottom-1689869141 .shape-fill {
    fill: #8eab38;
}

.custom-shape-divider-top-1689886705 {
    opacity: 0.5;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1689886705 svg {
    position: relative;
    display: block;
    width: calc(278% + 1.3px);
    height: 62px;
}

.custom-shape-divider-top-1689886705 .shape-fill {
    fill: #8eab38;
}

.massages
{
    display: flex;
    border-top: 10px solid #8eab38;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    
}

.massages .title
{
    padding: 20px;
    font-size: 3em;
}

.massages .massage
{
    display: flex;
    justify-content: center;
    padding: 20px;
    align-items: center;
    width: 100%;
    background: rgb(255,255,255);
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(243,254,241,1) 100%);
}

.massage img
{
    width: 450px;
    height: 300px;
    border-radius: 82% 18% 87% 13% / 12% 84% 16% 88% ;
    transition: 0.3s ease-in-out;
}

.massage .presentation
{
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
}

.massage .presentation .rdv
{
    padding: 20px;
}

.massage .presentation .rdv a
{
    text-decoration: none;
    align-items: center;
    background-color: #8eab38;
    color: white;
    padding: 10px;
    border-radius: 10px;
    transition: 0.2s ease-in-out;
}

.massage .presentation .rdv a:hover
{
    background-color: #947051;
    cursor: pointer;
}

.massage img:hover
{
    border-radius: 90% 10% 94% 6% / 4% 93% 7% 96% ;
}

.massage .description
{
    padding: 10px;
    text-align: justify;
    width: 500px;
}

.massage .presentation .tarifs
{
    text-align: center;
}

.massage .presentation .tarifs .titre
{
    font-weight: bold;
    padding-bottom: 5px;
}

footer {
    display: flex;
    justify-content: center;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: auto;
    background: rgb(148,111,80);
    background: radial-gradient(circle, rgba(148,111,80,1) 0%, rgba(83,69,58,1) 100%);
    color: white;
    padding: 20px;
    margin-top: auto;
    align-items: end;
}

.footer-content {
    flex-direction: column;
    display: flex;
    padding: 10px;
    justify-content: center;
}

.footer-text, .footer-media{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    justify-content: center;
}

.footer-media a
{
    text-decoration: none;
    color: white;
}

.footer-media i
{
    font-size: 1.5em;
}

.footer-link {
    display: flex;
    justify-content: center;
    padding: 10px;
    text-decoration: none;
    color: white;
}


@media screen and (max-width: 800px) {
    main a
    {
        text-decoration: none;
        color: red;
        font-size: 3em;
        margin-top: 10px;
        padding: 10px;
        border: 0.5px solid white;
        border-radius: 40px;
        transition: 0.3s ease-in-out;
    }
}