* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    scroll-behavior: smooth;
}

p {
    font-weight: 300;
    color: #111;
}

header {
    position: fixed;
    top: 0%;
    left: 0%;
    padding: 20px 10px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.5s;
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    text-decoration: none;
}

.logo span {
    color: #fb911f;
}

.navbar {
    display: flex;
    position: relative;
}

.navbar li {
    list-style: none;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
}

.btn-reserve {
    padding: 10px 20px;
    background: #fb911f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-reserve:hover {
    background: #e9821a;
}

header.sticky {
    background: #fff;
    padding: 10px 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

header.sticky .logo,
header.sticky .navbar a {
    color: #111;
}

header.sticky .navbar a:hover {
    color: #fb911f;
}

.banniere {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(./images/kondre.jpg);
    background-size: cover;
}

.banniere .contenu {
    max-width: 900px;
    text-align: center;
}

.banniere .contenu h2 {
    font-size: 5em;
    color: #fff;
}

.banniere .contenu p {
    font-size: 1em;
    color: #fff;
}

.btn1 {
    font-size: 1em;
    color: #fff;
    background: #fb911f;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
    border-radius: 30px;
}

.btn1:hover {
    background: #e9821a;
}

section {
    padding: 100px;
}

.row {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.row .col50 {
    position: relative;
    width: 48%;
    height: 100%;
}

.row .col50 h2 {
    margin-bottom: 20px;
}

.titre-texte {
    color: #111;
    font-size: 2em;
    font-weight: 300;
}

.titre-texte span {
    color: #fb911f;
    font-weight: 700;
    font-size: 1.5em;
}

.row .col50 img {
    height: 400px;
    width: 600px;
    object-fit: cover;
}

.apropos .row .col50 .img-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu {
    margin-top: -100px; /* Adjust if needed to reduce space */
}

.titre {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.titre p {
    color: #111;
    text-align: center;
}

.menu .contenu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.menu .contenu .box {
    width: 340px;
    margin: 20px;
    border: 15px solid #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
}

.menu .contenu .box .imbox {
    position: relative;
    width: 100%;
    height: 300px;
}

.menu .contenu .box .imbox img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu .contenu .box .text {
    padding: 15px 0 5px;
}

.menu .contenu .box .text h3 {
    font-weight: 400;
    color: #111;
}

.menu .contenu .box .text h4 {
    font-weight: 400;
    color: #111;
}

.temoignage {
    background-image: url(./images/bg.jpg);
    background-size: cover;
    margin-top: -100px;
}

.temoignage .contenu {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.temoignage .contenu .box {
    width: 340px;
    margin: 20px;
    padding: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
}

.temoignage .contenu .box .imbox {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.temoignage .contenu .box .imbox img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.temoignage .contenu .box p {
    text-align: center;
    color: #111;
}

.temoignage .contenu .box h3 {
    color: #fb911f;
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: 600;
}

.contact {
    background-image: url(./images/snails.jpg);
    background-size: cover;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
}

.contactform {
    padding: 75px 50px;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
    width: 700px;
    margin-top: 50px;
}

.contactform .inputboite {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.contactform .inputboite input,
.contactform .inputboite textarea {
    width: 100%;
    border: 1px solid #555;
    padding: 10px;
    color: #111;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    resize: none;
}

.contactform .inputboite input[type="submit"] {
    font-size: 1em;
    color: #fff;
    background: #fb911f;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
    border-radius: 30px;
    max-width: 120px;
    cursor: pointer;
    border: none;
}

.copyright {
    padding: 20px 40px;
    text-align: center;
    background: #111;
}

.copyright p {
    color: #fff;
}

.copyright a {
    color: #fb911f;
}

.menuToggle {
    position: relative;
    width: 40px;
    height: 40px;
    display: none; /* Hidden by default, only shown in responsive view */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-image: url(./images/menu.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    filter: invert(1);
}

.menuToggle.active {
    background-image: url(./images/close.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
}

header.sticky .menuToggle {
    filter: invert(0);
}

/* Cart Icon Styles - NEW/ADJUSTED */
.cart-icon-container {
    position: relative;
    margin-left: 30px; /* Adjust spacing from other navbar items */
    cursor: pointer;
    display: flex; /* Use flex to align image and potential future count */
    align-items: center;
    justify-content: center; /* Center the icon */
    width: 25px; /* Define a fixed width for the container */
    height: 25px; /* Define a fixed height for the container */
}

.cart-icon-container img {
    width: 100%; /* Make image fill its container */
    height: 100%; /* Make image fill its container */
    object-fit: contain; /* Ensure the image fits within the container without cropping */
    filter: invert(1); /* To make it white on dark header */
    transition: 0.3s;
}

header.sticky .cart-icon-container img {
    filter: invert(0); /* To make it black on light sticky header */
}

/* Responsive Styles */
@media (max-width: 991px) {
    header,
    header.sticky {
        padding: 10px 20px;
    }

    header .navbar {
        display: none; /* Hide navbar by default on smaller screens */
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar.active {
        display: flex;
    }

    .navbar li a {
        color: #111;
        margin: 10px 0;
        font-size: 1.5em;
        font-weight: 500;
    }

    .menuToggle {
        display: flex; /* Show menu toggle button */
        /* Ensure cart icon doesn't overlap on mobile */
        margin-left: 20px; /* Adjust as needed for spacing from logo */
    }

    header.sticky .navbar li a {
        color: #111;
    }

    .banniere .contenu h2 {
        font-size: 3em;
        color: #fff;
    }

    .row {
        flex-direction: column;
    }

    .row .col50 {
        width: 100%;
    }

    .row .col50 .img-box {
        height: 300px;
        margin-top: 20px;
    }

    section {
        padding: 20px;
    }

    .menu .contenu {
        margin-top: 20px;
    }

    .menu .contenu .box {
        margin: 10px;
    }

    .temoignage .contenu .box {
        margin: 10px;
    }

    .contactform {
        margin: 0;
        padding: 30px 20px;
    }

    .row .col50 img {
        margin-left: 0;
        width: 100%;
        height: auto;
    }

    .contenu p:nth-child(2) {
        font-size: 1em;
    }

    .expert {
        margin-top: 20px;
    }

    .menu {
        margin-top: 20px;
    }

    .temoignage h2 {
        font-size: 1.5em;
        text-align: center;
    }

    .temoignage p {
        text-align: center;
    }

    .contactform {
        margin-left: 0%;
    }

    /* Adjust navbar spacing for mobile */
    .navbar {
        justify-content: flex-start;
        padding-top: 20px;
    }

    .navbar li {
        width: 100%;
        text-align: center;
    }

    .navbar a {
        margin-left: 0;
        display: block;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .banniere .contenu h2 {
        font-size: 2.2em;
    }
}