   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Lexend", sans-serif;
          
            
        }

        html {
            scroll-behavior: smooth;
          
        }

        .navbar {
            background: rgba(175, 174, 174, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 2rem;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
           
        }

        .logo img {
            width: 100px;
           
        }

       

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
           
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: rgb(255, 255, 255);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.9rem;
            letter-spacing: 00;
            padding: 0.5rem 1rem;
            border: 1px solid transparent;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }



        .nav-link:hover {
            background: rgb(219, 154, 13);
            transform: translateY(-2px);
            color: rgb(0, 0, 0);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: rgb(255, 255, 255);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

       


        /* HERO */

        
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: white;
            padding: 60px 20px;
           
             
           
        }




      

        .slideshow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide.slide1 {
             background-image: linear-gradient( rgba(26, 24, 24, 0.5), rgba(0, 0, 0, 0.5)), url('images/background1.jpg');
        }

        .slide.slide2 {
             background-image: linear-gradient( rgba(26, 24, 24, 0.5), rgba(0, 0, 0, 0.5)), url('images/background2.jpg');
        }

        .slide.slide3 {
            background-image: linear-gradient( rgba(26, 24, 24, 0.5), rgba(0, 0, 0, 0.5)), url('images/background3.jpg');
        }

        .slide.slide4 {
             background-image: linear-gradient( rgba(26, 24, 24, 0.5), rgba(0, 0, 0, 0.5)), url('images/background4.jpg');
        }

        .slide.slide5 {
             background-image: linear-gradient( rgba(26, 24, 24, 0.5), rgba(0, 0, 0, 0.5)), url('images/background5.jpg'); 
        }

       

        .hero-content {
          
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            animation: fadeInUp 2s ease-out;
        }

        .hero-title {
            font-size: 10rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            color: rgb(132, 160, 77);
            animation: slideInDown 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
             color: rgb(219, 154, 13);
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .hero-cta {
            display: inline-flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: rgb(219, 154, 13);
            color: white;
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgb(219, 154, 13);
        }

        .btn-secondary:hover {
            background:  rgb(219, 154, 13);
            color: #333;
            transform: translateY(-2px);
        }

        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background:  rgb(219, 154, 13);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

         @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
      



        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 250px;
            }
        }



           @media screen and (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                 background: rgb(219, 154, 13);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: right 0.3s ease;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 1rem 0;
                width: 80%;
                text-align: center;
            }

            .nav-link {
                display: block;
                width: 100%;
                padding: 1rem;
                font-size: 1.1rem;
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.05);
            }

            .nav-link:hover {
                background: rgba(255, 255, 255, 0.15);
                transform: none;
            }

            .hamburger {
                display: flex;
            }

            .navbar {
                padding: 0 1rem;
            }

        }


        @media (max-width: 480px) {
            .hero {
                padding: 40px 15px;
            }

            .hero-content h1 {
                font-size: 4.5rem;
            }

            .hero-buttons {
                display: flex;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }

           
        }  



        




          .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
       

      

        .header .subtitle {
            font-size: 1.2em;
            font-weight: bold;
            color: #667;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #ad8411, #d4aa74);
            margin: 20px auto;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background:rgb(219, 154, 13);
            border-radius: 50%;
        }

       
        /* Story Section */
        .story {
            padding: 80px 0;
            background: #f8f8f8;
        }


        .story-title {
            text-align: center;
            font-size: 3em;
            color:rgb(219, 154, 13) ;
            font-family: 'Georgia', serif;
            font-style: italic;
            margin-bottom: 50px;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }



        .story-image {
            width: 100%;
            height: 400px;
            background: url('images/about.jpg') center/cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .story-text {
            padding: 0 20px;
        }

        .story-text h2 {
            font-size: 2.5em;
            color:rgb(219, 154, 13);
            font-family: 'Georgia', serif;
            font-style: italic;
            margin-bottom: 15px;
        }

        .story-text .subtitle {
            font-size: 1.1em;
            font-weight: bold;
            color: #666;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .story-text p {
            color: #666;
            font-size: 0.95em;
            line-height: 1.8;
            margin-bottom: 30px;
        }

       
       

        /* Menu Section */
        .menu {
           
            
            padding: 80px 0;
            background: rgb(255, 255, 255);
        }

        .menu-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .menu-header h2 {
            font-size: 2.5em;
            color: rgb(219, 154, 13);
            font-family: 'Georgia', serif;
            font-style: italic;
            margin-bottom: 15px;
        }

        .menu-header .subtitle {
            font-size: 1.1em;
            font-weight: bold;
            color: rgba(63, 90, 54, 0.74);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .menu-grid {
          
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
           
           
           
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item-info {
            flex: 1;
        }

        .menu-item img {
            width: 250px;
            height: 150px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .menu-item h3 {
            font-size: 1.3em;
            color: #c9a134;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .menu-item p {
            color: #666;
            font-size: 0.9em;
            line-height: 1.5;
        }

        .menu-item .price {
            color: #c85a54;
            font-size: 1.2em;
            font-weight: bold;
            margin-left: 20px;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .story-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .menu-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .header h1 {
                font-size: 2.5em;
            }
            
            .story-text h2, .menu-header h2 {
                font-size: 2em;
            }
        }
        @media (max-width: 480px) {
            .header h1 {
                font-size: 2em;
            }
            
            .header .subtitle {
                font-size: 1em;
            }
            
            .story-text h2, .menu-header h2 {
                font-size: 1.8em;
            }
            
            .menu-item h3 {
                font-size: 1.2em;
            }
        }






        /* Testimonial Section */

         .testimonials-section {
            position: relative;
            padding: 100px 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: rgb(14, 41, 18);
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            z-index: 10;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .section-title p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonials-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            height: 700px;
        }

        .testimonial-card {
            position: absolute;
            width: 320px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            z-index: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-15px) scale(1.1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.4);
            z-index: 100;
            background: rgba(255, 255, 255, 0.15);
        }

        .testimonial-card.card-1 {
            top: 80px;
            left: 0;
            animation: float1 6s ease-in-out infinite;
        }

        .testimonial-card.card-2 {
            top: 20px;
            left: 350px;
            animation: float2 6s ease-in-out infinite;
            animation-delay: -1s;
        }

        .testimonial-card.card-3 {
            top: 0;
            right: 350px;
            animation: float3 6s ease-in-out infinite;
            animation-delay: -2s;
        }

        .testimonial-card.card-4 {
            top: 60px;
            right: 0;
            animation: float1 6s ease-in-out infinite;
            animation-delay: -3s;
        }

        .testimonial-card.card-5 {
            bottom: 150px;
            left: 50px;
            animation: float2 6s ease-in-out infinite;
            animation-delay: -4s;
        }

        .testimonial-card.card-6 {
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            animation: float3 6s ease-in-out infinite;
            animation-delay: -5s;
        }

        .testimonial-card.card-7 {
            bottom: 120px;
            right: 80px;
            animation: float1 6s ease-in-out infinite;
            animation-delay: -2.5s;
        }

        @keyframes float1 {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        @keyframes float2 {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(-1deg); }
        }

        @keyframes float3 {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(0.5deg); }
        }

        .testimonial-card.card-6:hover {
            transform: translateX(-50%) translateY(-15px) scale(1.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .client-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, 0.3);
            margin-right: 15px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .client-photo {
            border-color: rgba(255, 255, 255, 0.6);
            transform: scale(1.1);
        }

        .testimonial-info h4 {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .testimonial-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .testimonial-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 20px;
        }

        .stars {
            display: flex;
            gap: 3px;
        }

        .star {
            color: #ffd700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .star {
            transform: scale(1.2);
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .quote-icon {
            color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        /* Effets de particules de fond */
        .background-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            animation: floatBackground 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 5%;
            left: 8%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 15%;
            right: 12%;
            animation-delay: -2s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 10%;
            left: 3%;
            animation-delay: -4s;
        }

        .floating-element:nth-child(4) {
            width: 40px;
            height: 40px;
            bottom: 25%;
            right: 5%;
            animation-delay: -6s;
        }

        .floating-element:nth-child(5) {
            width: 70px;
            height: 70px;
            top: 40%;
            left: 2%;
            animation-delay: -1s;
        }

        .floating-element:nth-child(6) {
            width: 50px;
            height: 50px;
            top: 60%;
            right: 8%;
            animation-delay: -3s;
        }

        @keyframes floatBackground {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.2; }
            50% { transform: translateY(-30px) scale(1.1); opacity: 0.4; }
        }

        /* Effet de blur sur les autres cartes quand une est en hover */
        .testimonials-container:hover .testimonial-card:not(:hover) {
            filter: blur(2px);
            opacity: 0.7;
            transform: scale(0.95);
        }

        .testimonials-container:hover .testimonial-card:hover {
            filter: blur(0px);
            opacity: 1;
        }

        @media (max-width: 1200px) {
            .testimonials-container {
                height: auto;
                position: static;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
                max-width: 1000px;
            }

            .testimonial-card {
                position: static;
                width: 100%;
                animation: none !important;
            }

            .testimonial-card.card-6 {
                transform: none;
            }

            .testimonial-card.card-6:hover {
                transform: translateY(-15px) scale(1.05);
            }

            .testimonials-container:hover .testimonial-card:not(:hover) {
                filter: none;
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .testimonial-card {
                padding: 20px;
            }
        }


        .gallerie {
           background-color: #ffffff;
            padding: 60px 20px;
        }



      .gallerie-container {
           
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
           
        }

        .gallerie-container h1 {
            font-size: 2.5rem;
            color: rgb(219, 154, 13);
            margin-bottom: 40px;
        }

        .gallerie-container p {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            margin-bottom: 40px;
     }
        

     

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(4, 200px);
            gap: 15px;
            width: 100%;
           
        }

        .bento-item {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .bento-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .bento-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .bento-item:hover img {
            transform: scale(1.05);
        }

        .bento-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .bento-item:hover .overlay {
            opacity: 1;
        }

        /* Dispositions spécifiques pour créer l'effet bento */
        .item-1 {
            grid-column: 1 / 3;
            grid-row: 1 / 2;
            background: linear-gradient(45deg, #ff9a9e, #fecfef);
        }

        .item-2 {
            grid-column: 3 / 4;
            grid-row: 1 / 3;
            background: linear-gradient(45deg, #a8edea, #fed6e3);
        }

        .item-3 {
            grid-column: 4 / 5;
            grid-row: 1 / 2;
            background: linear-gradient(45deg, #ffecd2, #fcb69f);
        }

        .item-4 {
            grid-column: 1 / 2;
            grid-row: 2 / 4;
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .item-5 {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
            background: linear-gradient(45deg, #f093fb, #f5576c);
        }

        .item-6 {
            grid-column: 4 / 5;
            grid-row: 2 / 4;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
        }

        .item-7 {
            grid-column: 2 / 4;
            grid-row: 3 / 4;
            background: linear-gradient(45deg, #43e97b, #38f9d7);
        }


       

        /* Responsive design */
        @media (max-width: 768px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(6, 150px);
            }

            .item-1 {
                grid-column: 1 / 3;
                grid-row: 1 / 2;
            }

            .item-2 {
                grid-column: 1 / 2;
                grid-row: 2 / 4;
            }

            .item-3 {
                grid-column: 2 / 3;
                grid-row: 2 / 3;
            }

            .item-4 {
                grid-column: 2 / 3;
                grid-row: 3 / 4;
            }

            .item-5 {
                grid-column: 1 / 2;
                grid-row: 4 / 5;
            }

            .item-6 {
                grid-column: 2 / 3;
                grid-row: 4 / 6;
            }

            .item-7 {
                grid-column: 1 / 2;
                grid-row: 5 / 7;
            }

         


            h1 {
                font-size: 2rem;
            }
        }

        /* Animation d'entrée */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bento-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .bento-item:nth-child(1) { animation-delay: 0.1s; }
        .bento-item:nth-child(2) { animation-delay: 0.2s; }
        .bento-item:nth-child(3) { animation-delay: 0.3s; }
        .bento-item:nth-child(4) { animation-delay: 0.4s; }
        .bento-item:nth-child(5) { animation-delay: 0.5s; }
        .bento-item:nth-child(6) { animation-delay: 0.6s; }
        .bento-item:nth-child(7) { animation-delay: 0.7s; }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .modal-image {
            width: 100%;
            height: auto;
            max-width: 80vw;
            max-height: 80vh;
            object-fit: contain;
            display: block;
        }

        .modal-info {
            padding: 20px;
            background: white;
            text-align: center;
        }

        .modal-info h3 {
            margin: 0 0 10px 0;
            color: #333;
            font-size: 1.5rem;
        }

        .modal-info p {
            margin: 0;
            color: #666;
            font-size: 1rem;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            background: rgba(0, 0, 0, 0.5);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 24px;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .nav-button:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .nav-button:disabled:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: translateY(-50%) scale(1);
        }

        .prev-button {
            left: 20px;
        }

        .next-button {
            right: 20px;
        }

        .modal-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            z-index: 1001;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes zoomIn {
            from { 
                opacity: 0;
                transform: scale(0.8);
            }
            to { 
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-content {
            animation: zoomIn 0.3s ease;
        }






        /* Footer */

          .footer {
            background: linear-gradient(135deg, #2d3e2d 0%, #1a251a 100%);
            color: #f5f5f5;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #d4af37;
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            font-weight: 700;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #ffd700);
            border-radius: 2px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            fill: #d4af37;
            flex-shrink: 0;
        }

        .contact-text {
            color: #e0e0e0;
            font-size: 1rem;
            line-height: 1.4;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            color: #d4af37;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            background: #d4af37;
            color: #1a251a;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .social-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .hours-list {
            list-style: none;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            color: #e0e0e0;
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 600;
            color: #d4af37;
        }

        .time {
            color: #b0b0b0;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        .brand-name {
            color: #d4af37;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-section h3 {
                font-size: 1.5rem;
                text-align: center;
            }
        }

 