/*
 *   Copyright (c) 2021 
 *   All rights reserved.
 */

@font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins-Light.ttf") format("TrueType");
  }

  @font-face {
    font-family: "FjallaOne-Regular";
    src: url("/fonts/FjallaOne-Regular.ttf") format("TrueType");
  }

  @font-face {
    font-family: "Niconne";
    src: url("/fonts/Niconne-Regular.ttf") format("TrueType");
  }

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

html {
    scroll-behavior: smooth;
  }

body {
    font-family: "Poppins", sans-serif;
    
}

nav, ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    color: #F2A359;
}

hr {
    width: 200px;
    height: 2px;
    background-color: #F1F1F1;
    border: 0;
    margin-bottom: 10px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --------------------------------- HEADER ------------------------------- */

header {
    position: fixed;
    width: 100%;
    height: 75px;
    z-index: 10;
}

.bandeau {
    width: 100%;
    height:32px;
    background-color: #ddc3a5;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0px 50px;
}

.bandeau-txt {
    width: 100%;
    color: black;
    letter-spacing: 1px;
    font: bold 16px 'Poppins';
}

.header {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#201E20;
    padding: 7px 150px;
    transition: all 0.3s ease-out;
    z-index: 10;
}

.header .logo a span {
    position: absolute;
    top:38px;
    font-size: 24px;
    color: #f1f1f1;
    padding-left:10px;
}

.header .logo a img {
    width: 5.6em;
    height: auto;
    transition-duration: 1s;
}

.header .logo a img:hover {
    transform: rotateY(360deg);
}

.container{
    position: relative;
}

.header nav {
    display: flex;
}

.header nav ul {
    display: flex;
    align-items: center;
}

.header nav li {
    padding: 13px 14px;
    font-size: 19px;
}

.nav-links{
    flex: 2;
}

.nav-link > a{
    line-height: 2rem;
    color: #f1f1f1;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .1rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    justify-content: flex-end;
    align-items: center;
}

.hamburger-menu{
    display: flex;
    width: 2.5rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.hamburger-menu div{
    position: relative;
    width: 1.5rem;
    height: 2px;
    border-radius: 5px;
    background-color: #f1f1f1;  
    z-index: 11;
    box-shadow: 0 2px 5px rgba(255,101,47,.2);
    transition: all .5s ease-in-out;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #f1f1f1;
    border-radius: 5px;
    transition: .5s;
    box-shadow: 0 2px 5px rgba(255,101,47,.2);
    transition: all .5s ease-in-out;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check, #labcheck {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 3rem;
    height: 2.7rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

.header nav .bigscreen-lang {
    background-color: #f1f1f1;
    border-radius: 5px 15px;
    margin-left: 40px;
    margin-top: 4px;
    padding: 3px 10px 6px 10px;
    color: #1c1c1e;
    font-weight: 600;
    font-size: 17px;
}

.header nav .bigscreen-lang a {
    margin:0 8px;
    border-bottom: 2px solid;
    text-align: right;
    font-weight: 600;
    color: #1c1c1e;
}

button {
    border: none;
}

/* -------------------------------- ACCEUIL ------------------------------ */

.container-bg {
    position: relative;
    width: 100%;
    height: 100vh;  /* 50vh donne 50% de l'ecran et 0% donne une valeur par défaut de 33% */    
    padding: 120px 20px 0 20px;
    background: no-repeat center/cover url(../img/banniere-pattevegan1920-820-final.jpg), #ddc3a5 ;
}

.container-btn {
    position: absolute;
    bottom:100px;
}

.container-btn a {
    position: relative;
    display: block;
    margin: 0 20px 12px 20px;
    border: 2px solid #201e20;
    overflow: hidden;
    transition: 1s all ease;
    width: 250px;
}

.container-btn a::before {
    background: #201e20;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.6s ease;
    width: 100%;
    height: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-index {
    width: 250px;
    position: relative;
    background: none;
    color: #201e20;
    border:none;
    padding: 10px 0px;
    font: bold 20px "Poppins";
    outline: none;
}

.container-btn a:hover::before, .btn-index:hover {
    height: 380%;
    cursor: pointer;
    color: #e0a96d;
}

.ban {
    position: absolute;
    top: 3.6em;
    text-align: center;
    font:30px "FjallaOne-Regular";
}

.ban-title {
    padding: 15px 20px;
}

.ban-text {
    font-weight:600;
    background-color: red;
    padding:10px 0;
}

#ban-details {
    position:absolute;
    bottom:190px;
    font-size: 22px;
    font-weight: 600;
    padding:0 20px;
    text-align:center;
}

.custom-shape-divider-top-1615472214 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1615472214 svg {
    position: relative;
    display: block;
    width: calc(124% + 1.3px);
    height: 59px;
}

.custom-shape-divider-top-1615472214 .shape-fill {
    fill: #ddc3a5;
}

.or-home {
    position: absolute;
    width: 220px;
    height: auto;
    bottom:-160px;
    z-index: 5;
}

/* --------------------------------- PRESTATIONS ----------------------------------- */

.menus-vg {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 220px 0 260px 0;
    background: no-repeat center/cover url(../img/ban-malcolm-story2.jpg);
    background-color:#AD8355;
}

#breadcrumb {
    display:none;
}

.menus-vg ol li .accueil{
    display:none;
}

.title-h2 {
    color: #f1f1f1;
    font-size: 40px;
    text-transform: uppercase;
    padding-bottom: 10px;
    letter-spacing: 3px;
}

.presta-container {
    max-width: 1450px;
    width:100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.presta-bloc {
    max-width: 350px;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: bottom;
    align-items: center;
    flex-direction: column;
    padding: 10px 20px;
    margin:20px;
    background-color: rgba(221, 195, 165, 0.7);
    border: 6px solid;
    transition: 1s;
}

.presta-bloc:nth-child(odd) {
    background-color:rgba(32, 30, 32, 0.7);
    color: #fff;
    transition: 1s;
}

.presta-bloc:hover {
    background-color: rgba(221, 195, 165, 1);
}

.presta-bloc:hover:nth-child(odd) {
    background-color:rgba(32, 30, 32, 1);
}

.presta-img {
    width: 70px;
    height: auto;
    margin:20px 0 15px 0
}

.presta-p {
    text-align: center;
    font-size: 16px;
    letter-spacing: 1.2px;
    line-height: 1.3;
    padding: 10px 0 10px 0px;
}

.menus-vg .title {
    text-align: center;
    font-size: 35px;
}

.presta-h3 {
    font-size: 22px;
    padding-bottom: 8px;
    letter-spacing: 1px;
    text-align: center;
    line-height:1.2;
}

.presta-details {
    font-size: 18px;
    margin-top:-10px;
    font-weight: 600;
    letter-spacing: 1.1px;
}

/* ------------------------------- VIDEOS -------------------------- */

.custom-shape-divider-bottom-1615459795 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1615459795 svg {
    position: relative;
    display: block;
    width: calc(124% + 1.3px);
    height: 59px;
}

.custom-shape-divider-bottom-1615459795 .shape-fill {
    fill: #ddc3a5;
}

.title-vid {
    color:#e0a96d;
}

.or-cookie {
    position: absolute;
    top: -170px;
    width: 220px;
    height: auto;
    z-index: 5;
}

.video {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 120px 20px 140px 20px;
    width: 100%;
    height: auto;
    background: #ddc3a5;
    z-index: 2;
}

.bloc-videos {
    position: relative;
    width: 90%;
    height: auto;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.bloc-txt-video {
    position: relative;
    margin-top: 20px;
    width: 40%;
    height: 275px;
    border: 7px solid #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 15px;
    font: 48px 'Niconne';
    font-weight: 600;
    letter-spacing: 6px;
    text-align: center;
    background: no-repeat center/cover url(../img/tableau2.jpg);
}

.title-vid:hover {
    font-size: 0;
} 

.title-vid:hover::after{
    content:attr(data-hover);
    font: 52px 'Niconne';
    font-weight: 600;
    display: flex;
    padding: 0 30px;
}

.frame-yt {
    width:40%;
    position: relative;
    display: flex;
    justify-content: center;
    margin: 10px 15px;
    border: 7px solid #f1f1f1;
}

.frame-yt iframe {
    width: 100%;
    height: 260px;
}

.cat {
    position: absolute;
    width: 110px;
    height: auto;
    bottom: 130px;
}

.cat-debout {   
    position: absolute;
    left: -110px;
    bottom: -8px;
}

.cat-debout2 {
    position: absolute;
    right: -110px;
    bottom: -3px;
}

/* -------------------------------- PLATS ------------------------------- */

.custom-shape-divider-top-1615459670 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1615459670 svg {
    position: relative;
    display: block;
    width: calc(124% + 1.3px);
    height: 59px;
}

.custom-shape-divider-top-1615459670 .shape-fill {fill: #ddc3a5;}

.contain-plats {
    position: relative;
    width: 100%;
    height: auto;
    background:no-repeat top left url(../img/bord-aventures.jpg), #ad8355;
    padding: 220px 0 100px 0;
}

.bloc-section {
    max-width:1800px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.container-menu {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 30px;
}

.bloc-img-m {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    min-width: 380px;
    height: 680px;
    background-color: #201E20;
}

.gallery-img-m {
    width: 350px;
    height: 500px;
    transition-duration: 0.6s;
    padding-top: 10px;
    border-radius: 10% 0% 10% 0%;
}

.gallery-img-m:hover {border-radius: 30% 0% 30% 0%;}

.lorem {font-size: 10px;line-height: 10px;}

.bloc-text-m {
    position: absolute;
    font-size: 35px;
    color:#f1f1f1;
    bottom: 18px;
    letter-spacing: 2px;
}

.bloc-text-mup {
    position: absolute;
    font-size: 35px;
    color:#f1f1f1;
    top: 11px;
    letter-spacing: 2px;
    text-align: center;
    padding: 0 40px;
    line-height: 1.2;
}

.bloc-text-mdown {
    position: absolute;
    font-size: 22px;
    color:#f1f1f1;
    top: 55px;
    letter-spacing: 2px;
    text-align: center;
    padding: 0 10px;
    line-height: 1.2;
}

.link-plat {
    color: #F1F1F1;
    transition-duration: 0.8s;
}

.link-plat:hover {
    color: #e0a96d;
}

.thecat {
    width: 250px;
}

/* ------------------------------- QUESTIONS ------------------------------- */

.ask {
    position: relative;
    width:100%;
    height:auto;
    background: #ddc3a5;
    padding:70px 15em 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-ask {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container-ask hr {background-color: #1c1c1e;}

.block-ask {padding:30px 0;}

.block-ask li {padding-left:40px;}

.h2-ask {
    text-align: center;
    font-size:35px;
    text-transform: uppercase;
    padding:0 0 10px 0;
}


/* ------------------------------- FOOTER ------------------------------- */

footer {
    flex-shrink: 0;
    width:100%;
    background-color: #201E20;
    color: #e0a96d;  
    padding-bottom:30px;
}

.container-footer {
    width: 100%;
    display : flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0px 20px 0px;  
    font-size: 15px;
}

.bloc {
    width:290px;
    margin: 20px 20px;
}

.titre-liste {
    padding-bottom: 15px;
    font-size: 20px;
}

.horaires {
    list-style-type: none;
}

.bloc p {
    text-align: justify;  
    letter-spacing: 1.9;
}

.ban-reseaux {
    display: flex;
    justify-content: center;
    padding:40px 0 10px 0;  
}

.ban-reseaux a {
    padding: 0 10px;
}

.social-footer {
    width: 35px;
    transition: all 0.4s ease-in;
}

.social-footer:hover {
    transform: scale(1.2);
}

.copy {
    text-align: center;
    padding-bottom: 10px;
    font-size: 15px;
    color: #e0a96d;
}

.copy a{
    color: #ddc3a5;
    transition: all 0.4s ease-in;
}

.copy a:hover{
    color: #e0a96d;
    transform: scale(1);
}

.maj {
    text-align: center;
    padding-bottom:7px;
    font-size: 15px;
}

.maj a {
    color: #e0a96d;
}

.maj a:hover {
    color:aqua
}

.txt-foot {
    padding-right: 70px;
}

 /* ----------------------------------------------------------------------------- 
 -------------------------------- MEDIA QUERIES ------------------------------ 
 -----------------------------------------------------------------------------  */


@media (max-width: 1200px){

    .header {padding: 7px 30px;} 

    .container-btn {bottom:100px}
    
    .container-btn a {width: 280px;}

    .btn-index {
        width: 280px;
        font: bold 19px "Poppins";
        padding:11px 0px;
    }

    .bloc-txt-video {width:66%;}
    
    .container-plats {max-width: 730px;}
    
    .bloc-img {
        width: 330px;
        min-width: 330px;
        height: 480px;
    }

    .toque-img {
        width: 50px;
        height: auto;
        padding-bottom: 10px;
    }
    
    .gallery-img {width: 330px;height: 480px;}
    
    .gallery-img-m {
        width: 350px;
        height: 500px;
        border-radius: 30% 0% 30% 0%;     
    }
    
    .bloc-text {
        width: 350px;
        height: 480px;
        font-size: 15px;
    }

    .frame-yt {width:66%;}

    .btn-commande {margin:20px 0 0px 0;}

    .contain-plats {background: #ad8355;}
    
    .ask {
        padding:70px 8em 0px;
    }
    
    .thecat {width: 200px;}
}

@media all and (max-width:1060px) {

    .container-bg {
        height: 100vh;
    }

    .ban-title {top:0px;}

    .ban-text {top:40px;}

    .container-btn {bottom:100px;margin-bottom:15px;}

    .bandeau {height:32px;}

    .bandeau-txt {font-size: 14px;line-height: 1.2;}

    header {opacity:1;}

    .header {
        display: flex;
        justify-content: space-between;
        background-color: #1c1c1e;
        padding: 7px 30px;
        z-index:1000;
    }

    .header .logo a img {width: 4em;}

    .header .nav-link {font-size: 16px;display: flex;} 

    .hamburger-menu-container{display: flex;color: white;}

    #check{display: block;}

    .nav-btn{
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-y: hidden;
        overflow-x: hidden;
        transform: translateX(100%);
        background-color: #1c1c1e;
    
    }
    
    .nav-links ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: 100%;
        margin-top: 110px;
    }

    .nav-links ul > nav{flex-direction: column;}

    #check:checked ~ .nav-btn{transform: translateX(0);}

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn {
        animation: animation .5s ease forwards var(--i);
    }

    .nav-link{
        width: 420%;
        background-color: #1c1c1e;;
        display: flex;
        justify-content: center;
        opacity:0;
    }

    .nav-link > a{
        width: 250%;
        line-height: 1rem;
        padding: 0.5rem 1rem;
        font-size: 1.2rem;
        color: #ffffff;
    }

    .nav-link:hover > a{
        width: 250%;
        transform: scale(1);
    }

    .container-bg {
        background: no-repeat center/cover url(../img/ban-mob-malcolm.jpg), #ddc3a5 ;
    }

}

@media all and (max-width:720px) {

.logo span {display: none;}

.bandeau {
    width: 100%;
    height:20px;
}

}


@media all and (max-width:560px) {
    .container-bg {
        background: no-repeat center/170% url(../img/ban-mob-malcolm.jpg), #ddc3a5 ;
        height: 100vh;
        }

    .container-btn {margin:20px 0;bottom:90px;}

    .bandeau-txt {font-size: 14px;}

    .logo a span {display:none;}

    .header {padding: 7px 15px;}

    .ban {
        top: 8rem;
        text-align: center;
        font:25px "FjallaOne-Regular";
        padding: 0;
    }

    .ban-title {
        padding: 0 10px 0 10px;
        line-height: 1.2;
        letter-spacing:1.2px;
    }
    
    .ban-text {
        font-size: 23px;
        font-weight: 600;
        line-height: 1.2;
    }
            
    .or-home {width:120px;bottom:-120px;}

    .or-cookie {width: 120px;top: -110px;}
    
    .container-btn a {width: 230px;}

    .btn-index {
        width: 230px;
        font: bold 16px "Poppins";
        padding: 5px 0px;
    }

    .menus-vg {padding: 150px 0 150px 0;}

    .presta-bloc {height:445px;padding: 7px 20px;}

    .presta-img {
        width: 60px;
        height: auto;
        margin:10px 0 10px 0
    }
    
    .presta-p {font-size: 15px;letter-spacing: 1.1px;}

    .presta-h3 {font-size: 22px;}

    .presta-details {font-size: 16px;}

    .video {padding: 40px 0 50px 0;}

    .bloc-videos {
        width: 95%;
    }

    .frame-yt {width:100%;height: 272px;margin: 15px 0;}

    .bloc-txt-video {
        margin: 15px 0;
        width: 100%;
        height: 255px;
        border: 7px solid #f1f1f1;
        padding: 0 10px;
        font-size: 30px;
    }

    .title-h2 {
        color: #f1f1f1;
        font-size: 25px;
        text-align: center;
    }

    .title-vid:hover::after{
        content:attr(data-hover);
        font-size: 38px;
        font-family: Niconne;
        letter-spacing: 5px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
    }

    .contain-plats {
        padding:160px 0 40px;
    }

    .bloc-section {
        margin-top: 40px;
    }

    .container-menu {
        width: 320px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 10px;
        padding-bottom:60px;
    }
    
    .bloc-img-m {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 290px;
        min-width: 290px;
        height: 480px;
        overflow: hidden;
        z-index: 2;
        background-color: #201E20;
        padding-top:20px;
    }
    
    .gallery-img-m {
        width: 260px;
        height: 340px;
        transition-duration: 0.6s;
    }
    
    .bloc-text-m {
        position: absolute;
        font-size: 28px;
        color:#f1f1f1;
        bottom: 8px;
        letter-spacing: 2px;
    }
    
    .bloc-text-mup {
        font-size: 28px;
        color:#f1f1f1;
        top: 8px;
        letter-spacing: 2px;
        padding: 0 0px;
        line-height: 1.5;
    }
    
    .bloc-text-mdown {
        font-size: 18px;
        top: 45px;
        letter-spacing: 2px;
        padding: 0 10px;
        line-height: 1.1;
    }

    .container-footer {
        padding: 10px 20px 10px 20px;
        font-size: 14px;
    }     

    .titre-liste {
        font-size: 16px;
    }

    .h2-ask {
        font-size:25px;
    }

    .ask {padding:50px 2em 0px;}

    .container-ask p {font-size: 15px;}

    .thecat {
        width: 150px;
    }

    .copy, .maj {
        font-size: 14px;
        padding: 0 38px 7px 38px;  
    }
}

@media all and (max-width:380px) {
    .ban {
        top: 17%;
        text-align: center;
        font:25px "FjallaOne-Regular";
        padding: 0;
    }
}
