/* FONT-SIZE*/

body{
    font-size: 16px;
}

.button{
    font-size: 14px;
}

h1{
    font-size: 55px;
    padding-bottom: 20px;
    padding-right: 30px;
    padding-left: 30px;
}

h2{
    font-size: 3rem;
    padding-right: 30px;
    padding-left: 30px;
}

p{
    padding-right: 30px;
    padding-left: 30px;
}

.text-small{
    font-size:12px;
}

@media(min-width:768px){
    form,.form-control,label{
        font-size: 14px;
    }
}

@media(min-width:1600px){
    body,.nav-link,form,.form-control,label {
        font-size: 20px;
    }
    
    h1{
        font-size: 90px;
    }

    .button{
        font-size: 24px;
    }
    
    .text-small{
        font-size:16px;
    }
}


/* COLORS */

.bg-white{
    background-color: white;
}

.bg-reige{
    background-color: #e7af8a!important;
}

.bg-grose{
    background-color: #c19c86!important;
}

.bg-griolet{
    background-color: #c89777!important;
}

.bg-marron{
    background-color: #af7153!important;
}

.text-reige{
    color: #e7af8a!important;
}

.text-grose{
    color: #c19c86!important;
}

.text-griolet{
    color: #c89777!important;
}

.text-marron{
    color: #af7153!important;
}


/* MARGIN */
.ml-2{
    margin-left: .5rem;
}

.mr-2{
    margin-right: .5rem;
}



/* PADDING */

.pl-1{
    padding-left: .25rem;
}

.pr-1{
    padding-right: .25rem;
}


/* MENU */

.navbar-custom{
    display: flex;
    flex-direction: row;
}

.nav-link{
    text-align: right;
    color: white;
    font-size: 22px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-wrapper {
    position: absolute;
    top:0;
    width: 100%;
    max-width: 1920px;
    z-index: 1;
    padding : 1rem;
}

.nav-item.active a{
    color: #af7153!important;
}

.nav-item a:hover{
    color: #e7af8a !important;
}

.navbar-btn{
    position: absolute!important;
    right:.75rem;
}

@media(min-width:993px){
    .container-menu{
        max-width: 65%;
    }

    .navbar-wrapper{
        padding: 2rem 3rem 0 3rem!important;
    }
    
    .navbar-custom{
        margin-right: 2rem!important;
        margin-left: 2rem!important;
    }
    
    .navbar-nav {
        flex-direction: row !important;
    }

    .navbar-nav li{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .navbar-nav li:first-child{
        padding-left: 0;
    }

    .navbar-nav li:last-child{
        padding-right: 0;
    }
    
    .nav-link{
        font-size: 16px!important;
        text-align: center !important;
    }

    .nav-item.active a{
        color: #e7af8a !important;
    }

    .nav-item a{
        --bs-nav-link-color : #af7153!important;
    }
}


/* MENU MOBILE */

#btn-menu-burger{
    background: 0 0;
    border: 1px solid transparent;
    float: right;
    height: 100%;
    font-size: 24px;
    padding: 0!important;
}

.menu-burger{
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")!important;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: no-repeat center center;
}

.btn-close-white{
    float: right;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 24px;
    opacity: var(--bs-btn-close-focus-opacity)!important;
}

.slide-in {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}

.slide-out {
    animation: slide-out 0.5s forwards;
    -webkit-animation: slide-out 0.5s forwards;
}
    
@keyframes slide-in {
    100% { transform: translateX(0%); }
}

@-webkit-keyframes slide-in {
    100% { -webkit-transform: translateX(0%); }
}
    
@keyframes slide-out {
    0% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

@-webkit-keyframes slide-out {
    0% { -webkit-transform: translateX(0%); }
    100% { -webkit-transform: translateX(100%); }
}

@media(max-width:992px){
    #menu{
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: #e7af8a!important;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        padding-right: 1rem;
    }
}

@media(min-width:993px){
    #btn-menu-burger,.btn-close{
        display: none;
    }
}


/* MAIN */

body {
    font-family: 'Garet', sans-serif;
    line-height: 1.42857143;
    color: black;
    background-color: #fff;
    max-width: 100vw;
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6{
    font-family: 'Librebaskerville';
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
} 
p{
    margin: 0;
}
a{
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}
input, textarea {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
label{
    margin:0;
}
input:focus,
textarea:focus,
button:focus{
    outline: none;
    box-shadow: none !important;
}
.form-control:focus{
    border:1px solid rgba(0,0,0,.15);
}
::-webkit-input-placeholder {
    color: #424e59;
}
::-moz-placeholder {
    color: #424e59;
}
:-ms-input-placeholder {
    color: #424e59;
}
:-moz-placeholder {
    color: #424e59;
}
.logo_banner{
    z-index: 9999;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.logos_rs{
  height: 30px;
}

.shadow-20{
    background-color: rgba(0,0,0,.2);
}

.shadow-50{
    background-color: rgba(0,0,0,.5);
}

.titre{
    color: white;
    text-align: center;
}

.titre h1{
    padding-bottom: 1rem;
}

.Librebaskerville{
    font-family: 'Librebaskerville';
}

.bloc{
    display: flex;
    flex-flow: column;
    overflow: hidden;
}

.centered-bloc{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.half-bloc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.w-fit-content{
  width : fit-content;
}

@media(min-width:576px){

    .bloc{
        flex-flow: inherit;
        flex-wrap: wrap!important;
    }
    
    .half-bloc>div{
        width: 50%!important;
    }

    .p-sm-6{
        padding:6rem!important;
    }

    .py-sm-6{
        padding-top:6rem!important;
        padding-bottom:6rem!important;
    }

    .double-bloc{
        width: calc(50% - 2px)!important;
        height: 100%!important;
        text-align: start;
    }

    .pr-sm-5{
        padding-right: 3rem !important;
    }

    .pl-sm-1{
        padding-left: 0.25rem !important;
    }

    .pr-sm-1{
        padding-right: 0.25rem !important;
    }

    .pl-sm-5{
        padding-left: 3rem !important;
    }

    .pr-sm-0{
        padding-right: 0 !important;
    }

    .pl-sm-0{
        padding-left: 0 !important;
    }

    .my-sm-0{
        margin-top: 0!important;
        margin-bottom: 0!important;
    }

    .my-sm-8{
        margin-top: 10rem;
        margin-bottom: 8rem;
    }

    .vh-sm-100{
        height: 100vh!important;
    }

    .mr-sm-5{
        margin-right: 3rem !important;
    }

    .ml-sm-5{
        margin-left: 3rem !important;
    }

    .bg-corporate-banner,.bg-corporate-party,.bg-private-banner,.bg-private-party,.bg-home-banner,.bg-about-banner{
        background-position: center!important;
    }

    .bg-about-banner{
        background-image: url('../assets/img/about_banner.webp')!important;
    }

    .p-titre{
        padding-top: 65vh!important;
    }

    .p-about-titre{
        padding-top: 65vh!important;
    }

    .button{
        padding: 15px 50px 15px 50px!important;
    }
}

@media(min-width:1600px){
    .py-xxl-10{
        padding-top: 10rem!important;
        padding-bottom: 10rem!important;
    }

    .form-container{
        padding: 2rem!important;
        position: absolute;
    }
}

@media(max-width:1599px){
    .button-contact{
        padding: 5px 40px 5px 40px!important;
    }
}

.button{
    padding: 6px 20px 6px 20px;
    width: fit-content;
    font-weight: 500;
    margin: 0 auto 0 auto;
}

.zoom{
    transition: transform .2s;
}

.zoom:hover{
    cursor: pointer;
    transform: scale(1.06);
}

.round{
    border-radius: 50px;
}

.index-1{
    z-index: 1;
}

.separator{
    background-color: white;
}

.separator>*{
    width: 4px;
}

.pr-5{
    padding-right: 3rem;
}

img{
    max-width: 100%;
}

.double-bloc{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.scroller {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}
  
.scroller .bloc {
    scroll-snap-align: start;
}

.bg-dark{
    background-color: black!important;
}

.footer a{
    text-decoration: none;
    color: white!important;
}

.footer a:hover{
    
    color: #e7af8a!important;
}

.footer{
    color: white!important;
}

.main{
    position: relative;
}

.p-titre{
    padding-top: 65vh;
}

.p-about-titre{
    padding-top: 15vh;
}

label{
    width: 100%;
}

.form-group{
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.form-container{
    background-color: white;
    padding: 1rem 2rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 12%;

}

.btn-contact{
    text-decoration: none;
    color: inherit;
}

.flex-auto{
    flex: auto;
}

textarea{
    /*height: calc(100% - 1.125rem);*/
}


/* BLOCS */

.bg-corporate-party{
    background-image: url('../assets/img/fete_entreprise_corporate_events.webp');
    background-position:-880px;
}

.bg-corporate-banner{
    background-image: url('../assets/img/home_corporate_events.webp');
    background-position:-477px;
}

.bg-private-party{
    background-image: url('../assets/img/fete_famille.webp'); 
    background-position:-880px;
}

.bg-private-banner{
    background-image: url('../assets/img/table_pique-nique.webp');
    background-position:-500px;
}

.bg-home-banner{
    background-image: url('../assets/img/home.webp');
    background-position:center bottom;
}

.bg-about-banner{
    background-image: url('../assets/img/about_banner_mobile.webp'); 
    background-position:center bottom;
}

.bg-contact{
    background-image: url('../assets/img/contact_bg.webp');

}

@media(min-width:576px){
    .img-bg{
        background-position:center!important;
    }

    .form-container{
        position: absolute;
        top: 20%!important;
        height: 75vh!important;
    }
}

@media(max-width:575px){    
    .about-contact{
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .bloc-contact{
        overflow: visible!important;
    }

    .form-container{
        margin: 8rem 0 3rem 0!important;
    }
}

.vh-50{
    height: 50vh;
}
