/* ************************** Styles généraux **************************************** */

@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body {
    font-family: 'Inria Serif', serif;
    background-color: #FFFDD0;
    color: #333;
    margin: 0;
    padding: 0;
}

/* ************************** Barre de navigation **************************************** */
.navbar {
    background-color: #D32F2F; 
    padding: 16px 32px;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(211, 47, 47, 0.7);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled .navbar-brand-subtitle {
    color: #ffffff; 
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); 
    font-weight: bold; 
}

.navbar-brand,
.nav-link {
    color: #FFFDD0 ;
}

.navbar-brand {
    font-weight: bold;
    font-size: 28px;
}

.navbar-brand-subtitle {
    font-size: 12px;
    font-weight: 200;
    color: #FFFDD0;
    text-align: center;
}

.navbar-brand:hover {
    color: #f0ad4e;
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    background-color: #FFD700;
    padding: 5px 10px;
    border-radius: 5px;
}

.navbar-toggler span.material-symbols-outlined {
    font-size: 32px;
    color: #4A4A4A;
}

/* ****************************** Menu Offcanvas **************************************** */

.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 90%;
    max-height: 100%;
    transform: translateX(100%);
    background-color: #D32F2F;
    border-radius: 10px 0 0 10px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease-in-out, background-color 0.3s ease;
    padding-top: 20px;
    z-index: 1050;
}

.offcanvas.show {
    transform: translateX(0);
    background-color: rgba(211, 47, 47, 0.8); 
}

/* Overlay avec transition fluide */
.offcanvas-overlay {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 1040;
    display: none;
    transition: opacity 0.3s ease;
}

.offcanvas.show + .offcanvas-overlay {
    display: block;
    opacity: 1;
}

/* Header du menu */
.offcanvas-header {
    border-bottom: 1px solid #FFFDD0;
    padding: 16px;
}

.btn-close {
    filter: invert(1);
    cursor: pointer;
    font-size: 24px;
}

/* Corps du menu (liens) */
.offcanvas-body {
    overflow-y: auto;
    max-height: 70%;
    padding: 16px;
}

/* ****************************** Liens dans la navbar et le menu Offcanvas ******************************/

/* Liens dans le menu */
.navbar .nav-link,
.offcanvas-body .nav-link {
    color: #FFFDD0;
    font-size: 16px;
    margin-bottom: 16px;
    position: relative;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 16px 24px;
    transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}

/* Effets hover et focus sur les liens */
.navbar .nav-link:hover,
.offcanvas-body .nav-link:hover,
.navbar .nav-link:focus,
.offcanvas-body .nav-link:focus {
    color: #FFD700;
    transform: scale(1.1);
    letter-spacing: 1px;
}

/* Effets visuels des liens (avant/après) */
.navbar .nav-link::before,
.offcanvas-body .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.navbar .nav-link:hover::before,
.offcanvas-body .nav-link:hover::before {
    border-color: #FFD700;
    box-shadow: 0 0 15px #FFD700;
    transform: scale(1.1);
}

/* Transitions consolidées */
.navbar .nav-link,
.offcanvas-body .nav-link {
    transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ************************** Responsivité **************************************** */

@media (max-width: 768px) {
    .offcanvas {
        width: 90%;
    }

    .offcanvas-body .nav-link {
        font-size: 14px;
        padding: 12px 20px;
    }

    .btn-close {
        font-size: 28px;
    }
}

.offcanvas-overlay {
    display: none;
}

.offcanvas-overlay.active {
    display: block;
}

.navbar.fixed-top {
    z-index: 1030;
}



/* ************************** Carrousel **************************************** */
.carousel-container {
    padding-top: 80px;
}

.carousel-caption {
    color: #fff; /* Texte en blanc */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%; 
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); 
    border-radius: 10px;
}

.carousel-caption h2 {
    font-size: 32px;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 19px;
}

.carousel-caption .btn {
    font-size: 19px;
    font-weight: bold;
    padding: 12px 32px;
    background-color: #ff5733; 
    color: #fff; 
    border: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
    height: 80vh;
    object-fit: cover;
}

.carousel-caption .btn:hover {
    background-color: #ff3b00; 
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); 
}

.carousel-caption .btn:focus,
.carousel-caption a:focus {
    outline: 3px solid #ff5733;
    outline-offset: 2px;
    box-shadow: 0 0 5px #ff5733;
}

.carousel-indicators button:focus {
    outline: 3px solid #ff5733;
    outline-offset: 2px;
    box-shadow: 0 0 5px #ff5733;
}

@media (max-width: 767px) {
    .btn-custom {
        font-size: 16px;
        padding: 8px 16px;
    }
}


/* ************************** Section À propos **************************************** */
.about-section .line {
    background: #ffc400;
}

.btn-more {
    background-color: #ffc400;
    color: rgb(0, 0, 0);
    transform: scale(1.03); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-more:hover {
    color: #ff0000;
    background-color: rgba(255, 255, 255, 0);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.address-box {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #333;  
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.329);
}

.address-icon {
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.address-box strong {
    color: #c0392b; 
    font-weight: bold;
}

.address-box br {
    margin-bottom: 8px;
}

.address-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.address-icon {
    border: 2px solid #333;  
    border-radius: 50%;
}

@media (max-width: 768px) {
    .about-section .line {
        height: 2px;
    }

    .btn-more {
        max-width: 200px;  
    }
}



/* ********************************* Menu Items ********************************* */

/* Menu Items - Visibility and Transition */
.menu-items.hidden {
    display: none;
}

.menu-items {
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.category {
    margin: 0 15px;
    cursor: pointer;
    font-size: 19.2px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s, text-decoration 0.3s;
}

.category:hover {
    color: #BEC100;
    text-decoration: underline;
}

/* Category Navigation */
.category-nav {
    text-align: center;
}

/* Active Category Title */
.active-category-title {
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .active-category-title {
        display: none;
    }
}

@media (max-width: 768px) {
    .category-nav {
        display: block;
    }

    .menu-categories {
        display: none;
    }

    .category.active {
        font-weight: normal;
    }

    .menu-content {
        display: block;
    }

    .category-nav .prev-category,
    .category-nav .next-category {
        cursor: pointer;
        font-size: 30px;
        color: #BEC100;
        margin: 0 15px;
    }
}

/* ************************** Menu Section **************************** */

/* Main Menu Section */
.menu-section {
    background: black;
    color: #F5F5F5;
    padding: 50px 20px 80px;
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.3);
    border-radius: 15px;


}

/* Menu Header */
.menu-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #F5F5F5;
    margin-bottom: 30px;
    position: relative;
}

.line {
    display: inline-block;
    height: 2px;
    width: 60px;
    background-color: #BEC100;
    margin-bottom: 10px;
}

.menu-description {
    font-size: 17.6px;
    margin-top: 10px;
    max-width: 600px;
    margin: 10px auto;
    color: #F5F5F5;
}

/* Download Button Styles */
.download-menu,
.btn-commander {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

.btn-download-main,
.btn-commander {
    padding: 10px 20px;
    background-color: #BEC100;
    text-decoration: none;
    color: #333;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    display: inline-block;
    text-align: center;
}


.btn-download-main:hover,
.btn-commander:hover {
    background-color: #FFD700;
}

/* Dropdown Options */
.download-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    border-radius: 5px;
    margin-top: 5px;
    z-index: 1;
}

.download-options a {
    color: #FFF;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    background-color: #333;
    border-bottom: 1px solid #BEC100;
    transition: background-color 0.3s;
}

.download-options a:hover {
    background-color: #444;
}

.download-options a:last-child {
    border-bottom: none;
}
.category-nav .prev-category,
.category-nav .next-category {
    background: none; 
    border: none;
    padding: 0; 
    cursor: pointer; 
}

.category-nav .prev-category .material-symbols-outlined,
.category-nav .next-category .material-symbols-outlined {
    font-size: 18px; 
    color: rgb(255, 255, 0); 
}


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Menu Categories */
.menu-categories {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 19.2px;
}

.menu-categories .category {
    color: #f5f5f5;
    font-weight: bold;
    transition: color 0.3s;
}

.menu-categories .category.active,
.menu-categories .category:hover {
    color: #BEC100;
    text-decoration: underline;
}

.menu-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.dots {
    display: inline-block;
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.dots::before {
    content: "   ...................................................";
    display: inline-block;
}

.price {
    margin-left: 5px;
    font-weight: bold;
    color: #BEC100;
}

/* Image Styling */
.menu-image-left,
.menu-image-right {
    width: 15%;
    max-width: 200px;
    height: auto;
}

.menu-image-left {
    margin-right: 10px;
}

.menu-image-right {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .menu-content {
        flex-direction: column;
    }

    .menu-items {
        width: 90%;
    }

    .menu-image-left,
    .menu-image-right {
        display: none;
    }

    .menu-items h3 {
        font-size: 16px;
    }

    .menu-description {
        font-size: 16px;
        max-width: 90%;
    }
}

/* Menu Item Titles */
.menu-items h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 23px;
    margin: 10px 0;
    padding-right: 20px;
    cursor: pointer;
    color: #eed612;
    transition: color 0.3s, transform 0.3s;
}

.menu-items p {
    font-size: 14px;
    color: #777;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .menu-items h3 {
        font-size: 16px;
    }
}

/* ************************** Section Galerie **************************************** */

.image-item {
    display: inline-block;
    text-align: center;
    margin: 10px;
}

.image-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

figcaption {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.combined-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.burst-gallery,
.tray-gallery {
    flex: 0 1 32%;
    text-align: center;
}

.burst-container {
    position: relative;
    display: inline-block;
}

.burst-main {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
}

.burst-item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.burst-item:nth-child(2) {
    left: -40px;
}

.burst-item:nth-child(3) {
    right: -40px;
}

.burst-mini {
    width: 80px;
    border-radius: 50%;
}

.tray-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tray-item {
    flex: 1 1 45%;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tray-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tray-image {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tray-item:hover .tray-image {
    transform: scale(1.1);
}

.view-more-btne {
    margin-top: 30px;
    padding: 10px 30px;
    font-size: 18px;
    background-color: #A01308; 
    color: white; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.view-more-btne:hover {
    background-color: #000000; 
    color: #ffffff; 
}


.burst-mini {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px;
}

.burst-mini:nth-child(1) {
    animation-name: rotate-clockwise;
    animation-timing-function: linear;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.burst-mini:nth-child(2) {
    animation-name: rotate-counterclockwise;
    animation-timing-function: linear;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes rotate-clockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-counterclockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@media (max-width: 576px) {
    .burst-item {
        display: none;
    }

    .tray-item {
        margin-bottom: 8px;
    }

    .view-more-btne {
        font-size: 14px;
        padding: 8px 16px;
    }
}


/* ************************** Section Horaire d'ouverture **************************************** */


#horaireOuverture h1 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding: 10px 0;
}

#horaireOuverture h1:hover {
    color: #f39c12;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    background-color: #e74c3c;
    transform-origin: center;
    transition: transform 0.4s ease;
}

h1:hover::after {
    transform: translateX(-50%) scaleX(1);
}


.horaires {
    position: relative;
    padding: 20px;
    background-color: #FFFDD0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 10px; 
}

.horaires.center {
    background-color: #ffffff;
    z-index: 10;
    border: 2px solid #e74c3c;
   
}


.horaires.left,
.horaires.right {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    background-color: #fdfdfd;
    border: 2px solid #f39c12;
    margin: 0 10px; 
}


.horaires.center.open {
    margin-left: 20px;
    margin-right: 20px;
}


#horaireOuverture .row {
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    flex-wrap: wrap; 
}

.horaires.center {
    flex: 1 1 300px; 
    margin: 0 10px;
    max-width: 400px; 
}

.horaires.open.left,
.horaires.open.right {
    opacity: 1;
    transform: scaleX(1);
}

.horaires h2 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.horaires p {
    font-size: 14px;
    color: #333;
}

.horaires.center:hover {
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffebcc;
}

.horaires.left:hover,
.horaires.right:hover {
    background-color: #ffe5b4;
    border-color: #e67e22;
}

.content {
    position: relative;
    padding: 15px;
    background-color: #FFFDD0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cliquable-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.content:hover .cliquable-icon {
    transform: scale(1.2);
}

.content:hover {
    background-color: #ffebcc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.content h2 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.content p {
    font-size: 14px;
    color: #333;
}

.horaires.center.open .cliquable-icon {
    display: none;
}

@media (max-width: 767px) {

    .horaires.left,
    .horaires.right {
        transform: none;
        opacity: 1;
        border: none;
    }

    .horaires.center {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .cliquable-icon {
        display: none;
    }
}


/* ************************** Styles de la section des avis **************************************** */

.avisUtilisateurs_section {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 10px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
}
/* aucun commentaire  */
.avisUtilisateurs_comment-box {
    color: #fff; 
   
}


.avisUtilisateurs_logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #FFD700;
}

.avisUtilisateurs_titre {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Formulaire */
.avisUtilisateurs_formulaire {
    width: 350px;
    height: 250px;
    margin: 0 auto;
    background-color: rgba(255, 238, 0, 0.474);
    padding: 10px;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h2.text-avis {
    font-size: 26px;
    font-weight: bold;
    color: #ab9100;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Personnalisation du scroll */
.avisUtilisateurs_formulaire::-webkit-scrollbar {
    width: 8px;
}

.avisUtilisateurs_formulaire::-webkit-scrollbar-track {
    background-color: #333;
    border-radius: 10px;
}

.avisUtilisateurs_formulaire::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid #333;
}

.avisUtilisateurs_formulaire::-webkit-scrollbar-thumb:hover {
    background-color: #FFC107;
}

.avisUtilisateurs_formulaire h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.avisUtilisateurs_formulaire .form-control {
    font-size: 12px;
    padding: 6px;
}

.avisUtilisateurs_formulaire .avisUtilisateurs_etoiles-container {
    font-size: 12px;
    gap: 4px;
}

.avisUtilisateurs_formulaire .btn-warning {
    font-size: 10px;
    padding: 6px 10px;
    margin-top: 8px;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .avisUtilisateurs_formulaire {
        width: 90%;
        padding: 5px;
        height: 200px;
    }

    .avisUtilisateurs_formulaire .form-control {
        font-size: 10px;
        padding: 5px;
    }

    .avisUtilisateurs_formulaire .btn-warning {
        font-size: 8px;
        padding: 5px 8px;
    }
}

/* Section des commentaires */
.avisUtilisateurs_carousel-item {
    padding: 80px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.avisUtilisateurs_comment-box {
    text-align: center;
}

.avisUtilisateurs_comment-box .lead {
    font-style: italic;
    color: #666;
}

.avisUtilisateurs_comment-box .avisUtilisateurs_etoiles {
    font-size: 14px;
    color: #FFD700;

}

/* Pour le titre des commentaires */
.avisUtilisateurs_comment-box h5 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.retour_les_espaces_etre_les_etoiles_.avisUtilisateurs_etoiles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 10px;
    border-radius: 5px;
}

.avisUtilisateurs_etoile {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
    transition: color 0.3s ease;
    margin: 0; 
}

.avisUtilisateurs_etoile.filled {
    color: #FFD700;
}

.avisUtilisateurs_etoile:hover,
.avisUtilisateurs_etoile[aria-pressed="true"] {
    color: #FFD700;
}

.avisUtilisateurs_etoile:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 576px) {
    .avisUtilisateurs_etoile {
        font-size: 12px; 
    }
}


/********************** Style Section nos specialite du moment "specialitesImages" ****************/

#specialitesImages {
    padding: 50px 0;
}

#specialitesImages h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #FF5722; 
    text-transform: uppercase;
    font-weight: bold;
}

.specialite-image-container {
    position: relative;
    margin-bottom: 30px;
}

.specialite-image-container img {
    width: 100%;        
    height: auto;       
    max-width: 100%;    
    max-height: 250px;  
    object-fit: cover;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.specialite-description {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333; 
    color: white; 
    padding: 15px;
    width: 80%;
    text-align: center;
    border-radius: 5px;
    opacity: 1;
    transition: opacity 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

.specialite-image-container:hover .specialite-description {
    opacity: 0;
}

.specialite-hover-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.437); 
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.specialite-image-container:hover .specialite-hover-description {
    opacity: 1;
}

.specialite-hover-description a {
    margin-top: auto;
    padding: 10px 25px;
    background-color: #B30000; 
    color: white; 
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
}

.specialite-hover-description a:hover {
    background-color: #e64a19; 
}

.view-more-btn {
    margin-top: 30px;
    padding: 10px 30px;
    font-size: 18px;
    background-color: #f44336; 
    color: white; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background-color: #d32f2f; 
}

.btn-specialite {
    margin-top: 30px;
    padding: 10px 30px;
    font-size: 18px;
    background-color: #f44336; 
    color: white; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    display: inline-block;
}

.btn-specialite:hover {
    background-color: #d32f2f; 
}

.col {
    padding-left: 10px;
    padding-right: 10px;
}

/* Pour les petits écrans */
@media (max-width: 767px) {
    .specialite-description {
        bottom: -25px;
        width: 90%;
        font-size: 12px;
    }

    .specialite-image-container img {
        height: auto;
        object-fit: contain; 
    }

    .col {
        margin: 10px;
    }
}

/* Pour les écrans moyens */
@media (max-width: 991px) {
    .specialite-description {
        bottom: -30px;
        width: 85%;
        font-size: 13px;
    }

    .specialite-image-container img {
        height: auto;
    }

    .col {
        margin: 10px;
    }
}



/********************** Style général pour la section du footer ****************/

.footer {
    background-color: #000000;
    color: #fff;
    padding: 40px 0;
    margin-top: 30px;
    position: relative;
    min-height: 200px;
    background-image: radial-gradient(circle, transparent 95%, rgba(255, 166, 0, 0.6) 96%, transparent 98%);
    background-size: 40px 40px;
}

.footer-title,
.footer-title_icone {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #FFD700;
}

.footer-title_icone {

    text-align: center;
}

/* Image du logo dans le footer */
.footer-logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Description et bouton */
.footer p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

.footer .btn-warning {
    background-color: #FFD700;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.footer .btn-warning:hover {
    background-color: #ffcc00;
}

/* Icônes sociales */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    text-align: center;
}

.social-icon {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #FFD700;
}



/* Responsivité pour les petits écrans */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }

    .footer-title {
        font-size: 18px;
    }

    .social-icons {
        gap: 10px;
    }

    .footer-logo {
        width: 100px;
        height: 100px;
    }
}

/* Icônes sociales */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    text-align: center;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.social-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.social-icon-img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .social-icons {
        gap: 10px;
    }
}