html, body {
    margin: 0;
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color:transparent;
    padding:20px 0 20px 0;
    transition: background-color 0.3s ease;
}

.fixed-header.scrolled {
    background-color: rgba(0, 0, 0, 0.3);
}

.fixed-header .ui.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.menu {
    color: white;
}

.menu .item {
    color: white !important;
}

.menu .ui.dropdown .menu {
    background-color: #000;
}

.background-image {
    position: relative;
    height: 100vh;
    background-size: cover; /* Assurez-vous que l'image couvre bien la zone */
    background-position: center; /* Centrer l'image */
    background-repeat: no-repeat; /* Empêche l'image de se répéter */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-bottom: 150px!important;
}


.background-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}


.container-content {
    text-align: left;
    padding-left: 20px;
}

.container-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.container-content h1 strong {
    font-weight: 900;
}

.container-content h2 {
    font-size: 2rem;
    margin: 10px 0 0 0;
    padding: 0;
    font-weight: 100;
    max-width:50%;
}


.header-button {
    background-color: #f2711c;
    color: white;
    border-radius: 20px;
    padding: 10px 15px;
    font-weight: 500;
}

.header-button:hover {
    background-color: #e64d0b;
}

h1, h2 {
    font-weight: 600;
}

h1 {
    margin-bottom: 10px;
}


.section {
    margin:90px 0 0 0!important;
    padding-bottom:45px;
}
.section h2 {
    font-size:3rem;
    font-weight:300;
}

.section h2 strong {
    font-size:3rem;
    font-weight:700;
}

p {
    font-size:1.2rem;
}


.content-body section {
  padding-bottom:40px;
}

.content-body {
    font-size:1.3rem;
    margin-bottom:80px;
}
.content-body p {
    font-size:1.3rem;
}


.content-body h2 {
    font-size:2.5rem;
    color: #b89366;
}


.content-body h3 {
    font-size:1.8rem;
    color: #b89366;
}


.content-body ul li, .content-body ol li {
    font-size:1.3rem;
    color: #000;
    margin-bottom:5px;
}
