

/* COLORS */

.bg-black{
    background-color: #000;
}
.bg-theme{
    background-color: #a2c899;
}
.text-color{
    color: #fbfbfb;
}


/* TYPOGRAPHIE */

@font-face {
    font-family: "Alegreya SC";
    src: url("../fonts/alegreya/AlegreyaSC-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.menu-title {
    font-family: "Alegreya SC", sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    line-height: 28px;
}
.menu-description{
    font-family: "Alegreya SC", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

header .nav-item a{
    font-family: "circe", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #fbfbfb !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

p{
    font-family: "circe", sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1.5px;
}
.p-body{
    font-family: "circe", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1.5px;
}

.title{
    font-family: "blackest", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #a2c899;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.title.text-black{
     color: #000 !important;
}

h1, .title-footer{
    font-size: 40px;
}
h2, .p-big{
    font-size: 32px;
    margin-bottom: 1.5rem;
}
h3{
    font-size: 28px;
}



/* STYLES */

.rounded-8{
    border-radius: 8px;
}
.rounded-8-left{
    border-radius: 8px 0px 0px 8px;
}


/* SECTIONS */

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.pt-80 {
    padding-top: 80px;
}
.pb-80 {
    padding-bottom: 80px;
}

.border-start-green{
    border-top: 4px solid #a2c899;
}
.border-end-green{
    border-bottom: 4px solid #a2c899;
}

.border-start-green-v2{
    border-top: 1px solid rgba(162, 200, 153, 0.4);
}
.border-end-green-v2{
    border-bottom: 1px solid rgba(162, 200, 153, 0.4);
}

.bg-footer-img{
    background-image: url(/images/accueil/footer-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: stretch;
}

.menu-logo{
    width: 250px;
    height: auto;
}

.section-menu {
    background-image:
        url("../images/accueil/leaf-right.png"),
        url("../images/accueil/leaf-left.png");
    background-position:
        80% 60px,
        103% 104%;
    background-repeat:
        no-repeat,
        no-repeat;
    background-size:
        300px,
        300px;
    position: relative;
}
.section-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); 
}
.section-menu > * {
    position: relative;
    z-index: 1;
}

/* HEADER */

.navbar-expand-lg .navbar-nav .nav-link{
    padding-right: 0.8125rem;
    padding-left: 0.8125rem;
}
.navbar{
    padding: 16px 0px;
}


.mobile-logo{
    display: block;
    width: auto;
    height: 100px;
}


/* RESPONSIVE */

.ps-mobile-normal{
    padding-right: 12px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 600px) {
    .gx-lg-mg-80{
        --bs-gutter-x: 80px;
    }
}

@media (max-width: 992px) {
    .title-footer{
        font-size: 28px;
    }
    .p-big{
        font-size: 20px;
    }

    .navbar-collapse{
        margin-top: 12px;
    }
}

@media (max-width: 600px) {
    .ptb-80{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .pt-80{
        padding-top: 50px;
    }
    .pb-80{
        padding-bottom: 50px;
    }
  
    .mobile-logo{
        height: 60px;
    }
}



