/*#fbdb7a*/
.navbar-toggler {
    border-color: #fbdb7a;
}

.navbar-toggler-icon {
    background-color: #fbdb7a;
}

.navbar-custom .navbar-nav .nav-link {
    color: #FFFFFF !important;
}

.navbar-custom .navbar-brand {
    color: /*#fbdb7a*/ #FFFFFF !important;
}


.sabai-color {
    color: #FFFFFF; /*#fbdb7a*/
}

.sabai-border {
    border: 1px solid #4b3621;
}

.text-justify {
    text-align: justify;
}


/* Custom background for text block */
.lightgray-bg {
    background-color: #f0e6d2;  /* #f5f5f5;Light gray */
}


/* Custom button style */
.btn-sabai {
    /*background-color: #fbdb7a;*/ /*#d7d3c7#fbdb7a*/
    /*color: black;*/ /* Ensure text is readable */
    /*border: none;*/
    background-color: #8b7355;
    /*background: linear-gradient(120deg, #8b7355, #f0e6d2);*/ /*#fce693, #f7cc5c*/
    color: #FFFFFF; /* Ensure text is readable */
    border: none;
    transition: 0.3s;
}

.btn-sabai:hover {
    background-color: #8b7355; /* #d4af37 Darker gold on hover */
}

.img-max {
    max-width: 500px;
    width: 100%;
}

.image-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 8px; /* Adds spacing between the two images */
}

.image {
    flex: 1 1 0;
    max-width: calc(50% - 4px); /* Adjust for gap */
    height: auto;
    object-fit: cover;
    display: block;
}

/* Rounded corners only on outer sides */
.imageLeft {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.imageRight {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.sabai-color-beige {
    color: #8b7355; /* ou ajuste si besoin */
}

.card {
    background-color: #fdfaf5;
}

ul li {
    margin-bottom: 0.5em;
}


/****Achat bons****/
.containerBon {
    background: #fff;
    max-width: 420px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
}

label {
    display: block;
    margin: 1em 0 0.3em;
    font-weight: bold;
    color: #262626;
}

input[type="text"], input[type="email"] {
    width: 100%;
    padding: 0.6em;
    font: 1em Arial, Helvetica, sans-serif;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    box-sizing: border-box;
}

/*button {
    display: block;
    width: 100%;
    margin-top: 1.5em;
    padding: 0.7em;
    background-color: #c24050;
    color: #fff;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    button:hover {
        background-color: #a12f3f;
    }*/

.honeypot {
    display: none;
}

/*So Si Ha*/
.table-sabai-header {
    background-color: #214539; /* vert profond Sabai */
    color: #f0e6d2; /* beige clair */
    font-weight: 600;
}


.table-sabai-header td {
    font-weight: bold;
    text-transform: uppercase; /* optionnel : pour un style plus marqué */
    letter-spacing: 0.5px; /* optionnel : aère un peu le texte */
}


/* ===== Slideshow container ===== */
.slideshow {
    position: relative;
    max-width: 900px; /* adjust to your layout */
    height: 500px; /* adjust height as needed */
    margin: 40px auto; /* center on the page */
    overflow: hidden;
    border-radius: 12px; /* rounded corners (optional) */
}

/* Each slide */
.slide {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    opacity: 0;
    animation: fade 24s infinite;
}

    /* Make images fill the container nicely */
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* crop nicely while filling */
        display: block;
    }

    /* One animation per slide, just shifted in time with delay */
    .slide:nth-child(1) {
        animation-delay: 0s;
    }

    .slide:nth-child(2) {
        animation-delay: 6s;
    }

    .slide:nth-child(3) {
        animation-delay: 12s;
    }

    .slide:nth-child(4) {
        animation-delay: 18s;
    }

/* Fade keyframes: visible for a while, then fade out */
@keyframes fade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Optional: small caption on images */
.caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
}

/* Make it responsive on small screens */
@media (max-width: 600px) {
    .slideshow {
        height: 250px;
    }

    .caption {
        font-size: 0.8rem;
        left: 10px;
        bottom: 10px;
        padding: 6px 10px;
    }
}