 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: rgba(0, 0, 0, 0.637);
            text-align: center;
            background-image: url(../img/F1);
            background-size: cover;
            background-attachment: fixed;
            animation: scrollBackground 10s linear infinite;
            font-size: 16px;
            color: #f8f8f8;
            min-height: 100vh;
            position: relative;
        }

        /* Ajout d'un overlay plus sombre */
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.788);
            z-index: -1;
        }

        @keyframes scrollBackground {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 0 100%;
            }
        }

        /* Barre de navigation */
        .navbar {
            background: rgba(34, 114, 2, 0.733);
            position: fixed;
            top: 0;
            width: 100%;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-logo img {
            width: 50px;
            border-radius: 50%;
            animation: balayage 7s infinite ease-in-out;
        }

        .navbar-logo h1 {
            font-size: 1.5rem;
            color: #ffd700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            font-family: 'Georgia', serif;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: #f8f8f8;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: all 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 70%;
            left: 15%;
        }

        /* En-tête */
        header {
            padding-top: 120px;
            padding-bottom: 30px;
            background: linear-gradient(rgba(34, 114, 2, 0.733), transparent);
        }

        .header-title {
            font-size: 3.2rem;
            margin-bottom: 15px;
            color: #ffd700;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
        }

        .header-subtitle {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #f8f8f8;
            line-height: 1.6;
            padding: 0 20px;
        }

        /* Menu */
        .menu-section {
            padding: 20px 5% 80px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            margin: 40px 0 30px;
            color: #ffd700;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 20%;
            width: 60%;
            height: 3px;
            background: linear-gradient(to right, transparent, #ffd700, transparent);
        }

        .menu {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .item {
            position: relative;
            width: 300px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            background: rgba(58, 30, 30, 0.8);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease-in-out;
        }

        .item:hover .image-container img {
            transform: scale(1.1);
        }

        .item-details {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .item-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #ffd700;
            font-family: 'Georgia', serif;
        }

        .item-description {
            color: #ddd;
            margin-bottom: 15px;
            flex-grow: 1;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .item-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffd700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .add-to-cart {
            background: rgba(139, 0, 0, 0.8);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .add-to-cart:hover {
            background: #ffd700;
            color: #8b0000;
            transform: scale(1.05);
        }

        .badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ffd700;
            color: #8b0000;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.85rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.3);
        }

        /* Flèche de retour en haut */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(139, 0, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            z-index: 999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top i {
            color: #ffd700;
            font-size: 1.5rem;
        }

        .back-to-top:hover {
            background: #ffd700;
        }

        .back-to-top:hover i {
            color: #8b0000;
        }

        /* Pied de page */
        footer {
            background: rgba(34, 114, 2, 0.733);
            padding: 30px 0;
            margin-top: 50px;
            border-top: 2px solid #ffd700;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 40px;
            padding: 0 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }

        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #ffd700;
        }

        .footer-section p, .footer-section a {
            color: #ddd;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #ffd700;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: #ffd700;
            transform: translateY(-5px);
        }

        .social-icons a:hover i {
            color: #8b0000;
        }

        .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 40px 0;
                }

        .social-icons a {
         display: inline-block;
         transition: transform 0.3s ease, filter 0.3s ease;
            }

        .social-icons img {
        width: 40px;
        height: 40px;
        filter: brightness(0.9);
                }

        .social-icons a:hover {
        transform: scale(1.2);
        filter: brightness(1.2);
                }

        .copyright {
            text-align: center;
            padding-top: 30px;
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            margin-top: 30px;
            padding: 20px;
        }

        /* Animations */
        @keyframes balayage {
            0% {
                transform: translateX(-10px);
            }
            50% {
                transform: translateX(10px);
            }
            100% {
                transform: translateX(-10px);
            }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .slide-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in {
            opacity: 0;
            transition: opacity 1s ease-in;
        }

        .bounce {
            display: inline-block;
            animation: bounce 1.5s infinite;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .navbar {
                flex-direction: column;
                padding: 15px 20px;
            }
            
            .nav-links {
                margin-top: 15px;
                gap: 15px;
            }
            
            .header-title {
                font-size: 2.5rem;
            }
            
            .header-subtitle {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 600px) {
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links a {
                font-size: 0.9rem;
                padding: 6px 12px;
            }
            
            .header-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .item {
                width: 100%;
                max-width: 350px;
            }
        }