display: flex; flex-direction: column; gap: 3rem; } .menu-category { background: linear-gradient(135deg, var(--white), #f9f7f3); border-radius: 25px; padding: 3rem; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); border: 2px solid rgba(191, 152, 80, 0.1); transition: all 0.4s ease; position: relative; overflow: hidden; } .menu-category::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(191, 152, 80, 0.02), rgba(191, 152, 80, 0.05)); opacity: 0; transition: opacity 0.3s ease; } .menu-category:hover::before { opacity: 1; } .menu-category:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); border-color: rgba(191, 152, 80, 0.3); } .category-header { text-align: center; margin-bottom: 2.5rem; position: relative; z-index: 2; } .category-title { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--black); margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; } .category-icon { width: 50px; height: 50px; background-size: contain; background-repeat: no-repeat; background-position: center; filter: sepia(100%) saturate(200%) hue-rotate(25deg) brightness(0.9); transition: all 0.4s ease; animation: icon-float 3s ease-in-out infinite; } @keyframes icon-float { 0%, 100% { transform: translateY(0px) rotate(0deg); filter: sepia(100%) saturate(200%) hue-rotate(25deg) brightness(0.8); } 50% { transform: translateY(-8px) rotate(5deg); filter: sepia(100%) saturate(300%) hue-rotate(35deg) brightness(1.2); } } .menu-category:hover .category-icon { transform: scale(1.2) rotate(15deg); filter: sepia(100%) saturate(400%) hue-rotate(45deg) brightness(1.5); } .category-subtitle { font-size: 0.9rem; color: var(--gold-dark); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; } .menu-items { list-style: none; } .menu-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid rgba(191, 152, 80, 0.15); transition: all 0.4s ease; position: relative; } .menu-item::before { content: ''; position: absolute; left: -1.5rem; right: -1.5rem; top: 0; bottom: 0; background: linear-gradient(135deg, rgba(191, 152, 80, 0.05), rgba(191, 152, 80, 0.1)); border-radius: 15px; opacity: 0; transform: scaleX(0); transition: all 0.3s ease; z-index: -1; } .menu-item:last-child { border-bottom: none; } .menu-item:hover::before { opacity: 1; transform: scaleX(1); } .menu-item:hover { padding-left: 1.5rem; padding-right: 1.5rem; margin: 0 -1.5rem; } .item-details { flex: 1; margin-right: 1rem; } .item-name { font-weight: 600; color: var(--black); font-size: 1rem; margin-bottom: 0.3rem; line-height: 1.3; } .item-description { font-size: 0.9rem; color: var(--text-dark); opacity: 0.8; font-style: italic; } .item-price { font-weight: 700; color: var(--gold); font-size: 1.1rem; white-space: nowrap; } .back-to-home { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); text-decoration: none; padding: 1rem 2rem; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; margin: 2rem auto; box-shadow: 0 5px 15px rgba(191, 152, 80, 0.3); } .back-to-home:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(191, 152, 80, 0.4); } .menu-footer { text-align: center; padding: 4rem 2rem; background: linear-gradient(135deg, var(--black), #2d2d2d, var(--black)); color: var(--white); margin-top: 0; position: relative; overflow: hidden; } .menu-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('https://enfants-terribles.plesk.graphylabs.com/assets/monogramme-monstre/seul/Les-Enfants-Terribles-2025-MONSTRES_monstre-1-Blanc.png'); background-size: 50px 50px; background-repeat: repeat; opacity: 0.03; animation: footer-dance 20s linear infinite; } @keyframes footer-dance { 0% { transform: translateX(0) translateY(0); } 25% { transform: translateX(-10px) translateY(-5px); } 50% { transform: translateX(10px) translateY(10px); } 75% { transform: translateX(-5px) translateY(-10px); } 100% { transform: translateX(0) translateY(0); } } .menu-footer h3 { font-family: 'Impact', 'Anton', 'Oswald', sans-serif; font-size: 3rem; margin-bottom: 1rem; background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pulse-text 2s ease-in-out infinite; position: relative; z-index: 2; } @keyframes pulse-text { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } .menu-footer p { font-size: 1.3rem; opacity: 0.9; position: relative; z-index: 2; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); margin-bottom: 3rem; } .footer-links { display: flex; justify-content: center; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; } .footer-links a { color: var(--white); text-decoration: none; font-weight: 500; transition: all 0.3s ease; position: relative; z-index: 2; padding: 0.5rem 1rem; border-radius: 25px; background: rgba(191, 152, 80, 0.1); } .footer-links a:hover { color: var(--gold); background: rgba(191, 152, 80, 0.2); transform: translateY(-2px); } .footer-contact { margin-top: 2rem; opacity: 0.8; position: relative; z-index: 2; } /* Responsive Design */ @media (max-width: 768px) { .menu-hero { padding: 8rem 1rem 6rem; min-height: 80vh; } .hero-main-logo { max-width: 250px; } .menu-hero h1 { font-size: clamp(2rem, 5vw, 2.5rem); } .hero-features { grid-template-columns: 1fr; gap: 1.5rem; } .hero-feature { padding: 1.5rem; } .menu-sections { grid-template-columns: 1fr !important; gap: 2rem; } .left-column, .center-column, .right-column { gap: 2rem; } .menu-category { padding: 2rem; } /* Styles pour la nouvelle structure */ .plats-grid, .desserts-grid, .boissons-grid { grid-template-columns: 1fr !important; gap: 1.5rem; } .menu-category-section { padding: 2rem 1.5rem; margin-bottom: 3rem; } .plats-section, .desserts-section, .boissons-section { padding: 1rem; } .section-title { font-size: 1.2rem; } .nav-links { display: none; } .nav-cta { gap: 0.5rem; } .reserve-btn { padding: 0.6rem 1rem; font-size: 0.8rem; } }

Côté Marée

Grillades

Côté Santé

Côté Végé