@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    color: white;
    background-color: #010101;
}

body.no-scroll {
    overflow: hidden;
}

.nav-bar {
    position: fixed;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    padding: 20px;
    z-index: 100;
}

.nav-container {
    display: flex;
    width: 400.48px;
    height: auto;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    padding: 5px 0;
    border: 2px solid white;
    border-radius: 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.nav-container li {
    list-style-type: none;
}

.nav-container li a {
    position: relative;
    display: inline-flex;
    text-decoration: none;
    padding: 10px;
    border-radius: 30px;
    color: #cdb693;
    overflow: hidden;
    transition: color 0.3s ease;
}

.nav-container li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #cdb693;
    transform: translateX(-100%);
    transition: transform .3s ease;
}

.nav-container li a:hover::before {
    transform: translateX(0);
}

.logo-entreprise,
.hamburger {
    display: none;
}

.hamburger div {
    width: 30px;
    height: 3px;
    margin: 5px;
    border-radius: 50%;
    background: #cdb693;
    transition: all 0.3s ease;
}

.img-bg-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("../img/salon_freshcut.jpg") no-repeat center center/cover;
    overflow: hidden;
    border-image: fill 0 linear-gradient(#0005, #010101);
}

.img-bg-container img {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 872px;
    height: auto;
    filter: drop-shadow(5px 5px 10px #000000);
    pointer-events: none;
}

.fa-chevron-down {
    position: absolute;
    display: inline-block;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.3rem;
    color: white;
    animation: bounce 1s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

.presentation-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 15px;
}

.presentation-container .lieu_img,
.presentation-container video {
    width: 25%;
    height: auto;
    border: 5px solid #cdb693;
    border-radius: 20px;
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
    object-fit: contain;
    pointer-events: none;
}

.text-presentation-container {
    position: relative;
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.text-presentation-container h1 {
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    margin: 10px 0;
}

.text-presentation-container p {
    text-align: justify;
    margin: 10px 0;
}

.text-presentation-container span {
    align-self: center;
}

.text-presentation-container a {
    text-decoration: none;
    margin: 15px;
    padding: 10px 25px;
    font-size: 17px;
    color: black;
    border: 2px solid #cdb693;
    border-radius: 30px;
    align-self: center;
    background-color: white;
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
    transition: all .4s ease-in-out;
}

.text-presentation-container a:hover {
    border: 2px solid white;
    background-color: #cdb693;
}

.text-presentation-container img {
    display: block;
    width: 180px;
    height: auto;
}

.footer-container {
    text-align: center;
    background-color: #cdb693;
}

.footer-infos-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #cdb693;
}

.loc-num-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loc-num-container img {
    width: 100%;
    height: auto;
    pointer-events: none;
}

.loc-num-container a {
    text-decoration: none;
    margin: 15px;
    padding: 10px 25px;
    font-size: 17px;
    color: #cdb693;
    border: 2px solid #cdb693;
    border-radius: 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all .4s ease-in-out;
}

.loc-num-container a:hover {
    text-decoration: underline;
    color: white;
    border: 2px solid white;
    background-color: #cdb693;
}

.social-container {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
}

.social-container h1 {
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin: 0 20px 20px 20px;
}

.btn {
    clear: both;
    display: inline-block;
    white-space: nowrap;
    font-size: 13px;
    margin: 2px;
    border-radius: 30px;
    border-right: 5px solid #010101;
    background-color: #cdb693;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.35);
    overflow: hidden;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    transition: all .3s ease-in-out;
}

.btn:hover {
    background-color: white;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.45);
}

.btn:focus {
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
}

.btn > span,
.btn-icon > i {
    float: left;
    padding: 13px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    line-height: 1em;
}

.btn > span {
    padding:14px 18px 16px;
    white-space:nowrap;
    color:#FFF;
}

.btn:hover > span,
.btn:hover > span:hover,
.btn:hover > i ~ span {
    color: #cdb693;
}

.btn-icon > i {
    position: relative;
    width: auto;
    height: auto;
    text-align: center;
    font-size: 17px;
    border-radius: 5px 0 0 5px;
    color: #fff;
    background-color: #010101;
}

.btn-icon > i:after {
    content: "";
    position: absolute;
    top: 13px;
    right: -15px;
    border: 8px solid;
    border-color: transparent transparent transparent #010101;
}

.btn-icon:hover > i,.btn-icon:focus > i {
    color:#FFF;
}

.btn-icon > span {
    width: 110px;
    height: auto;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0 5px 5px 0;
}

.maps-container {
    position: relative;
    width: auto;
    height: auto;
    display: block;
}

.google-localisation {
    border: 5px solid white;
    border-radius: 20px;
}

.maps-placeholder {
    width: 1095px;
    height: 300px;
    display: block;
    align-content: center;
    font-size: 20px;
    padding: 20px;
    border: 5px solid white;
    border-radius: 20px;
    color: #e8eaed;
    background-color: rgb(100, 100, 100);
}

.maps-placeholder img {
    width: 45px;
    height: 45px;
}

.mentionslegales-lien,
.confidentialite-lien {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.mentionslegales-lien:hover,
.confidentialite-lien:hover {
    text-decoration: none;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 500px;
    height: auto;
    border-radius: 10px;
    background-color: white;
    color: black;
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 1000;
}

.cookie-btn-close {
    position: absolute;
    top: 3px;
    right: 13px;
    background: none;
    border: none;
    color: black;
    font-size: 30px;
    cursor: pointer;
}

.cookie-btn-close:hover {
    color: #cdb693;
}

.cookie-btn {
    background-color: white;
    border: 2px solid #cdb693;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 10px 20px;
    margin: 10px;
    color: #cdb693;
    cursor: pointer;
    font-weight: bold;
    transition: all .4s ease-in-out;
}

.cookie-btn:hover {
    color: white;
    border: 2px solid white;
    background-color: #cdb693;
}

@media screen and (max-width: 768px) {
    .cookie-consent-banner {
        width: 90%;
    }

    .nav-bar {
        height: 6rem;
        padding: 0;
        z-index: 3;
    }

    .hamburger {
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        filter: drop-shadow(0 0.2rem 0.25rem black);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .logo-entreprise {
        display: block;
        width: 45%;
        height: auto;
        border-radius: 10px;
        pointer-events: none;
    }

    .nav-container {
        position: fixed;
        width: 100%;
        height: 65vh;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 100% -11%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-container.open {
        border: 2px solid #cdb693;
        border-radius: 10px;
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1035px at 55% -10%);
        pointer-events: all;
    }

    .nav-container li {
        opacity: 0;
    }

    .nav-container li a {
        width: 300px;
        justify-content: center;
        text-transform: uppercase;
        border-bottom: 5px solid;
    }

    .nav-container li a::before {
        height: 0;
        transform: none;
    }

    .nav-container li a:hover::before {
        transform: none;
    }

    .nav-container li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-container li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-container li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-container li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-container li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-container li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-container li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px,6px);
    }

    .toggle .line2 {
        transition: all 0.7s ease;
        width:0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px,-6px);
    }

    .img-bg-container img {
        width: 90%;
    }

    .presentation-container .lieu_img,
    .presentation-container video {
        width: 285px;
    }

    .presentation-container video {
        margin-top: 15px;
    }

    .text-presentation-container {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .text-presentation-container h1 {
        font-size: 2rem;
    }

    .footer-infos-container {
        flex-direction: column;
    }

    .loc-num-container img {
        width: 90%;
        margin-bottom: 20px;
    }

    .maps-container {
        width: 100%;
    }

    .google-localisation {
        width: 90%;
        margin-top: 15px;
    }

    .maps-placeholder {
        width: 90%;
    }
}