        
        /* Ajout des styles pour mobile */
        @media (max-width: 768px) {
            .hero{
                height:100vh;
                overflow-x: hidden;
                overflow-y: hidden;
            }
            /* Section principale */
            .about-section {
                margin-top: 5vh;
                margin-bottom: 5vh;
            }
            
            .about-section h1 {
                font-size: 1.8rem;
                line-height: 1.3;
            }
            
            /* Section images et texte */
            .image-container {
                height: auto;
                overflow-x: hidden;
                /* margin-bottom: 2rem; */
            }
            
            .image-st {
                position: relative;
                width: 90%;
                height: auto;
                left: 0;
                margin-bottom: 1rem;
            }
            
            .image-nd {
                position: relative;
                top: 0;
                left: 0;
                width: 100%;
                height: auto;
            }
            
            .text-container {
                height: auto;
                padding: 0;
            }
            
            .orange-background {
                /* display: none; */
                margin-left: 5vh;
                 top: 100%;
            }
            
            .text-detail {
                position: relative;
                top: 0;
                left: 0;
                width: 100%;
                margin-top: -2vh;
                margin-left: 6vh;
                padding: 1.5rem;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }
            
            /* Section offres */
            .card-container {
                flex-direction:row;
                max-height: none;
                gap: 1rem;
            }
            
            .card {
                width: 100%;
                margin: 0.5rem 0;
            }
            
            .card-img video {
                height: 15vh;
            }
            
            /* Section nourriture */
            .food-section {
                padding: 2rem 1rem;
            }
            
            .food-section h2 {
                font-size: 1.5rem;
            }
            
            .food-section .row {
                max-height: none;
                height: auto;
            }
            
            .food-section img {
                width: 20vh;
                height: 20vh;
                margin: 0.5rem auto;
            }
            
            /* Section événements spéciaux */
            .special-events {
                padding: 2rem 0;
            }
            
            .header-section h2 {
                font-size: 1.8rem;
            }
            
            .gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            /* Section marque */
            .brand-statement {
                padding: 2rem 1rem;
            }
            
            .lead {
                font-size: 1.5rem;
            }
            
            .sub {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            .food-section img {
                width: 15vh;
                height: 15vh;
            }
            
            .gallery {
                grid-template-columns: 1fr;
            }
        }
        
        /* Styles existants */
        :root {
            --primary-color: #04699D;
            --secondary-color: #EF8635;
            --accent-color: #7EB5EE;
            --dark-color: #52482C;
            --light-color: #f8f9fa;
            --text-color: #333;
            --transition: all 0.3s ease;
        }
        
        .special-events {
            padding: 5rem 0;
            background-color: var(--light-color);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-section {
            margin-bottom: 3rem;
        }
        
        .header-section h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        
        .icon-ring {
            display: block;
            font-size: 2.5rem;
            color: var(--secondary-color);
        }
        
        .divider {
            width: 80px;
            height: 3px;
            background: var(--accent-color);
            margin: 1.5rem auto;
        }
        
        .description {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .description p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            aspect-ratio: 4/3;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        /* Nosy be magic*/
        .brand-statement {
            padding: 4rem 1rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .brand-statement::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--secondary-color);
        }
        
        .brand-statement .container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .statement-content {
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.15),
                inset 0 0 15px rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }
        
        .statement-content:hover {
            transform: translateY(-5px);
            box-shadow:
                0 15px 40px rgba(0, 0, 0, 0.25),
                inset 0 0 20px rgba(255, 255, 255, 0.15);
        }
        
        .lead {
            font-size: 2rem;
            /* font-family: 'Poppins', sans-serif; */
            font-weight: 700;
            margin-bottom: 0.8rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            position: relative;
            display: inline-block;
        }
        
        .lead::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .sub {
            font-size: 1.2rem;
            line-height: 1.7;
            max-width: 600px;
            margin: 2rem auto 0;
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        /* Animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
        
            50% {
                transform: translateY(-8px);
            }
        
            100% {
                transform: translateY(0px);
            }
        }
        
        .statement-content:hover .lead::after {
            animation: float 1.5s ease-in-out infinite;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .brand-statement {
                padding: 2.5rem 1rem;
            }
        
            .statement-content {
                padding: 1.8rem;
            }
        
            .lead {
                font-size: 1.8rem;
            }
        
            .sub {
                font-size: 1.1rem;
            }
        } 
        
        :root {
          --primary-color: #04699D;
          --secondary-color: #EF8635;
          --accent-color: #7EB5EE;
          --dark-color: #52482C;
        }
        
        body {
          /* font-family: 'Comic Sans MS', cursive, sans-serif; */
        }
        
        .about-section {
            text-align: center;
        }
        
        /* images details  */
        .image-container {
            position: relative;
            height: 80vh;
        }
        
        .image-st {
            position: absolute;
            width: 80%;
            height: 85%;
            display: block;
            left: 25%;
        }
        
        .image-nd {
            position: absolute;
            top: 40%;
            left: 10%;
            width: 50%;
            height: 60%;
        }
        
        /* text details */
        .text-container {
            position: relative;
            height: 80vh;
            padding: 2rem;
        }
        
        .orange-background {
            position: absolute;
            top: 18%;
            left: 5%;
            width: 70%;
            height: 50%;
            color: white;
            font-size: 1.2rem;
            line-height: 1.5;
            background-color: #EF8635;
        }
        
        .text-detail {
            text-align: left;
            padding: 2rem;
            position: absolute;
            top: 20%;
            left: -10%;
            width: 80%;
            min-height: 60%;
            height: fit-content;
            color: rgb(0, 0, 0);
            line-height: 1.5;
            background-color: rgb(255, 255, 255);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* OFFRES */
        .card-container {
            position: relative;
            max-height: 25vh;
            height: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem;
        }
        
        .card {
            height: fit-content;
            width: 25%;
            margin: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border:none;
        }
        
        .card-img video {
            width: 100%;
            height: 10vh;
            object-fit: contain;
            display: block;
        }
        
        .card-img,
        .card-text {
            width: 50%;
            height: 100%;
            object-fit: cover;
            overflow: hidden;
        }
        
        /* food  */
        .food-section{
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-color);
            height: fit-content;
            padding: 4rem 2rem;
            position: relative;
            flex-wrap: wrap;
        }
        
        .food-section img {
            width: 30vh;
            height:30vh;
            border-radius: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .food-section img:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        
        /* tablette :vertical */
        @media (max-width: 768px) {
            .image-container {
                height: 50vh;
            }
        
            .image-st {
                width: 80%;
                height: 80%;
                left: 30%;
            }
        
            .image-nd {
                top: 30%;
                left: 10%;
                width: 50%;
                height: 60%;
            }
        
            .text-detail {
                top: 0%;
            }
        
            .image-container {
                margin-top: 10vh;
            }
        
            .orange-background {
                top: 25%;
            }
        
            .food-section img {
                width: 30vh;
                height:20vh;
            }
        }
        
        @media (max-width: 480px) {
            .card-text {
                font-size: xx-small;
            }
        
            .card-container {
                height: fit-content;
            }
        }