body {
    font-family: "Mona Sans", sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #4D4D4D;
}
header {
    border-top: 20px solid #1B2835;
}
/* État initial caché */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}
.fade-in.from-right {    
  transform: translateX(30px);
}

/* Quand visible */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.from-right.show  {    
  transform: translateY(0px);
}
.titre-h1{
    font-size: 64px;
    color: #1B2835;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2.6px;
    margin-bottom: 30px;
}
.titre-h2{
    font-size: 54px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2.6px;
    text-transform: uppercase;
}
.titre-h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.4px;
}
.titre-h4{
    font-size: 54px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2.6px;
    text-transform: uppercase;
}
.btn-savoir-plus {
    display: inline-block;
    padding: 20px 76px;
    font-size: 16px;
    color: #fff;
    background-color: #D1A286;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s all ease;
} 
.btn-savoir-plus:hover {
    background-color: #af724d;
    transition: 0.3s all ease;
}
.btn-savoir-plus.dark-btn{
    background-color: #1B2035;
    color: white;
} 
.btn-savoir-plus.dark-btn:hover {
    background-color: #1a213a;
    transition: 0.3s all ease;
}
.btn-savoir-plus::after{
  content: url('/img/svg/arrow.svg');
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 50px;  
  transform: translateX(0px);
  transition: 0.3s all ease;
}

.btn-savoir-plus:hover::after{
  transform: translateX(10px);
    transition: 0.3s all ease;
}
.img-top-section{
    border-radius: 32px 0 32px 32px;
}
section#hero-section {
    padding-top: 90px;
    position: relative;
}
section#hero-section:after {
    display: block !important;
    content: "";
    position: absolute;
    top:0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #FBF9F7;
    z-index: -1;
}
section#offre{
    padding-top: 200px;
    padding-bottom: 100px;
    margin-top: -100px;
    background: url('../img/offre-bg.png') bottom right no-repeat #FBF9F7;
    background-size: contain;
}
#offre .d-flex {
    gap: 140px;
}
.text-beige { color: #D1A286; }
.text-white { color: #F4F4F5; }
.text-black { color: #4D4D4D;}
.beige-bg {background-color: #FDF2EB;}
#caracteristiques {
    padding: 100px 20px 400px;
    background: #1B2035;
    border-radius: 0 0 64px 64px;
    overflow: hidden;
}
#caracteristiques .btn-savoir-plus, #havre-labelle .btn-savoir-plus {
    border-radius: 0 0 16px 0;
}
.grid-caract, .block-beige-carac {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    padding: 65px 0 90px;
}
.block-beige-carac:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100vw;
    background: #FDF2EB;
    right: 0;
    z-index: 1;

}
.block-beige-carac > div {
    z-index: 2;
}
.top-lined {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    text-transform: uppercase;
}
.top-lined:before {
    content: "";
    width: 90px;
    height: 4px;
    display: inline-block;
    background: #D1A286;
}
.line-black:before {
    background: #1B2035
}

img.carac-img {
    border-radius: 16px 16px 16px 0;
}
#havre-labelle{
    margin-top: -260px;
    padding-bottom: 115px;
}
#havre-labelle .image-container{
    background: url('../img/ProjetLabelle_camera1_v2_.jpg') no-repeat center;
    background-size: cover;
    min-height: 743px;
    border-radius: 32px;
    display: flex;
    align-items: flex-end;
    padding: 0;
}
#havre-labelle .image-container .hl-content {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    transform: translateY(64px);
}
#havre-labelle .image-container .hl-content .hl-text {
    background-color:#D1A286;
    max-width: 730px;
    padding: 50px;
}
#havre-labelle .image-container .sur-titre {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: #1B2835;
}
section#havre-labelle li {
    list-style: none;
    position: relative;
}

section#havre-labelle li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #312e2e;
    border-radius: 5px;
    list-style: none;
    left: -5px;
    top: 10px;
}
#form-section {
    background: url(../img/form-bg.jpg) no-repeat center;
    background-size: cover;
    min-height: 600px;
}
footer {
    background-color: #1B2835;
}
.sub-footer {
    background-color: #121A23;
    border-bottom: solid 30px rgba(0, 0, 0, 0.575);
}
.error-404{
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.link-svg{
    width: 30px;
    height: 30px;
}

.top-menu-mobile{
    padding: 10px 0;
    background-color: #1B2835;
    width: 100%;
    color: white;
}
.sous-titre{
    font-family:"Mona Sans", sans-serif;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.6px;
    margin-bottom: 30px;
    color: #D1A286;
}
@media screen and (max-width: 1399px) {
    .titre-h1 {
        font-size: 55px;
    }
    .titre-h2 {
        font-size: 47px;
    }
    .titre-h3 {
        font-size: 23px;
    }
    .titre-h4 {
        font-size: 48px;
    }
    .block-beige-carac {
        padding-bottom: 138px !important;
    }
    #havre-labelle .image-container .hl-content .hl-text {
        max-width: 550px;
    }
}
@media screen and (max-width: 1200px) {
    .block-beige-carac {
     padding-bottom: 113px !important;
    }
}

@media screen and (max-width: 1024px) {
    .titre-h4 {
        font-size: 35px;
    }
    #offre .d-flex {
        gap: 50px;
    }
    #caracteristiques {
        padding-bottom: 300px;
    }
    .sous-titre {
        font-size: 2rem;
    }
}

@media screen and (max-width: 991px) {
    #havre-labelle .image-container .hl-content {
        transform: translateY(44px);
    }
    .btn-savoir-plus {
        padding: 10px 25px;
    }
    .btn-savoir-plus::after {
        margin-left: 15px;
    }
    .titre-h1 {
        font-size: 38px;
    }
    .titre-h2 {
        font-size: 35px;
    }
    .container{
        max-width: 100% !important;
    }
    #caracteristiques .w-50:first-child{width: 60% !important;}
    #caracteristiques .w-50:last-child{width: 40% !important;}
    
    .content-cadre {
        flex-direction: column;
    }   
    .content-cadre > div {
        width: 100% !important;
    }   
    #caracteristiques {
        border-radius: 0 0 20px 20px;
    }
    #havre-labelle {
        padding: 20px;
        padding-bottom: 50px;
    }
    #havre-labelle .image-container .hl-content .hl-text {
        padding: 30px;
    }
    .container .contact-form {
        margin-top: -95px !important;
    }
}
@media screen and (max-width: 767px) {    
    .titre-h1, .titre-h2, .titre-h3, .titre-h4 {
        letter-spacing: 0;
    }    
    
    .titre-h4 {
        font-size: 25px;
    }
    #caracteristiques .d-flex {
        display: flex;
        flex-direction: column;
    }
    #caracteristiques .w-50:first-child{width: 100% !important;}
    #caracteristiques .w-50:last-child{        
        width: 100% !important;
        margin-top: -75px;
        z-index: 2;
    }
    #havre-labelle .image-container .hl-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .grid-caract, .block-beige-carac {
        padding: 40px 0 40px;
    }
    
    .block-beige-carac:before {
        right: -20px;
    }
    #caracteristiques .container {
        padding: 0;
    }
    img.carac-img {
        border-radius: 16px 16px 16px 0;
        height: 500px;
        width: 100%;
        object-fit : cover;
    }
    #caracteristiques {
        padding: 50px 20px 400px;
    }
    .br-desktop {
        display: none;
    }
    .logo-footer {
        max-width: 300px;
    }
    #offre .d-flex {
        flex-direction: column;
    }
    #offre .d-flex .w-50{
        width: 100% !important;
    }
    section#offre {
        padding-top: 150px;
    }
    #havre-labelle .image-container  {
        min-height: 610px;
    }
    .sub-footer .container {
        display: flex    ;
        align-items: start;
        gap: 10px;
        font-size: 12px;
    }
    #offre .d-flex {
        gap: 10px;
    }
    .sous-titre {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 640px) {
    #havre-labelle .image-container{
        border-radius: 12px;
    }
    img.carac-img {
        height: 350px;
    }
    .sub-footer p {
        width: 100%;
        text-align: center;
    }
    .sub-footer ul.list-unstyled.d-flex.m-0 {
        display: flex    ;
        width: 100%;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    .titre-h2 {
        font-size: 29px;
    }
    .sub-footer li.ms-3 {
        margin-left: 0 !important;
    }
    section#havre-labelle .container {
        padding: 0;
    }
    section#havre-labelle  .content-cadre ul {
        padding-left: 20px;
    }
    section#hero-section {
        padding-top: 5px;
    }
    section#hero-section  .hero-text {
        flex-direction: column;
    }
    .hero-text > div:first-child{
       display: flex;
       width: 100%;
       align-items: start;
    }
    #caracteristiques {
        padding-bottom: 300px;
        border-radius: 0 0 20px 20px;
    }
    .grid-caract, .block-beige-carac {
        display: grid;
        grid-template-columns: 1fr;
    }
    .w-50, .w-75{
        width: 100% !important;
    }
    header{
        border-top: 0;
    }
}