/* Variables de couleurs améliorées */
:root {
    --primary-color: #FFCC05; /* Jaune Batman */
    --secondary-color: #1A1A1A; /* Noir Batman */
    --accent-color: #FFCC05; /* Alias pour primary-color */
    --dark-color: #111111; /* Noir plus profond */
    --text-color: #F2F2F2;
    --darker-bg: #1A1A1A; /* Noir Batman */
    --shadow-color: rgba(0, 0, 0, 0.7);
    --highlight-color: #FBD500; /* Jaune plus vif */
    --text-dark: #333; /* Texte foncé */
    --font-main: 'Poppins', sans-serif;
    --font-title: 'Bangers', cursive;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* Animations personnalisées */
@keyframes batSignalGlow {
    0% { filter: drop-shadow(0 0 2px var(--primary-color)); }
    50% { filter: drop-shadow(0 0 15px var(--primary-color)); }
    100% { filter: drop-shadow(0 0 2px var(--primary-color)); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 20px var(--primary-color)); }
    100% { transform: scale(1); }
}

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

/* Styles généraux améliorés */
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-color);
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--darker-bg);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.header-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.header-title {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    position: relative;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    flex: 1;
    max-width: 200px;
}

.divider-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    color: var(--accent-color);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.header-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.bat-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.bat-divider::before,
.bat-divider::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    top: -5px;
    border-radius: 50%;
}

.bat-divider::before {
    left: -8px;
}

.bat-divider::after {
    right: -8px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--darker-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 204, 5, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 204, 5, 0.2);
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

/* Styles de base pour la navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    height: 80px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 55px;
    transition: all 0.3s ease;
}

/* Navigation menu pour desktop */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 10px;
}

.nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a:active {
    color: var(--primary-color);
}

/* Toggle button pour mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-color);
    z-index: 1001;
}

.menu-toggle i {
    transition: all 0.3s ease;
}

/* Styles pour mobile */
@media screen and (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        padding: 50px 0;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        display: block;
        font-size: 1.1rem;
    }
    
    .order-btn {
        margin-top: 20px;
    }
    
    .order-btn a {
        background-color: var(--primary-color);
        color: black;
        border-radius: 30px;
        padding: 10px 20px;
        margin: 0 20px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Pour s'assurer que le bouton menu est bien visible et cliquable */
.menu-toggle {
    background: none;
    border: none;
    padding: 10px;
    outline: none;
    color: var(--primary-color);
}

.logo-text {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 0.5rem;
    letter-spacing: 1px;
}

.order-btn a {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.order-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background-color: #e6b800;
}

/* Hero section modernisée et professionnelle */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--darker-bg);
    color: var(--text-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=2070&auto=format&fit=crop') center/cover;
    z-index: 1;
    opacity: 0.9;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    position: relative;
    z-index: 3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-color);
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title .highlight {
    color: var(--accent-color);
    display: inline;
    text-shadow: 0 0 15px rgba(255, 204, 5, 0.3);
}

.hero-divider {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.divider-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.divider-line-hero {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    max-width: 200px;
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--darker-bg);
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 204, 5, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 204, 5, 0.1);
    box-shadow: 0 5px 15px rgba(255, 204, 5, 0.1);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
    border-radius: 20px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-logo-img {
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--accent-color);
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.scroll-icon i {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 1100px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-divider {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 350px;
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-title .highlight {
        font-size: 4rem;
    }
    
    .hero-image-container {
        width: 300px;
        height: 300px;
    }
    
    .stat-separator {
        margin: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .highlight {
        font-size: 3rem;
    }
    
    .hero-image-container {
        width: 250px;
        height: 250px;
        margin-bottom: 50px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-separator {
        display: none;
    }
}

/* Améliorations de la Section Spécialités */
.specialites {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
 overflow: hidden; 
}

.specialites-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.special-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.special-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.special-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--darker-bg);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.special-badge.bestseller {
    background: var(--highlight-color);
}

.special-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.special-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-item:hover .special-img img {
    transform: scale(1.1);
}

.special-info {
    padding: 25px;
}

.special-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.special-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.special-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.special-footer .price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.special-btn {
    background: var(--accent-color);
    color: var(--darker-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.special-btn:hover {
    background: var(--highlight-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .specialites-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }

    .special-img {
        height: 200px;
    }

    .special-info h3 {
        font-size: 1.3rem;
    }

    .special-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .specialites {
        padding: 60px 0;
    }

    .specialites-container {
        grid-template-columns: 1fr;
    }

    .special-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Styles pour la section menu réorganisée */
.menu {
    padding: 6rem 0;
}

.menu .section-header {
    margin-bottom: 3rem;
}

.menu-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 50px;
    border-radius: 10px;
    margin-bottom: 3rem;
    padding: 2rem;

}

.menu-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-image:hover img {
    transform: scale(1.05);
}

.menu-text {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.menu-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature:hover {
    background-color: rgba(251, 191, 36, 0.1);
    transform: translateY(-3px);
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.menu-category-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.menu-category-header h3 {
    display: block;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.small-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    flex: 1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.menu-item-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.menu-item-header .price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    background: none;
    padding: 0;
    box-shadow: none;
}

.menu-item-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--darker-bg);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }

    .menu-item-img {
        height: 200px;
    }

    .menu-item-header h3 {
        font-size: 1.3rem;
    }

    .menu-item-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Amélioration visuelle pour les items cache/affichés */
.hidden-item {
    display: none;
}

.show-item {
    animation: fadeIn 0.5s forwards;
}

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

/* Style pour la section des catégories spéciales du menu */
.pizza-speciale {
    position: relative;
    padding: 2rem;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.pizza-speciale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.8)), url('https://tb-static.uber.com/prod/image-proc/processed_images/174d4f950e035edfb7c981bc0ac47741/dfe73df3a8123af1971eabf3eeff9ac1.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

.pizza-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.pizza-item:hover {
    border-left: 3px solid var(--primary-color);
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

.pizza-item-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pizza-item-desc {
    color: #ddd;
    font-size: 0.9rem;
    max-width: 70%;
}

.pizza-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Horaires Section */
.horaires {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden; 

}

.horaires-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.horaires-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.horaires-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.horaires-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.horaires-item h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-color);
}

.time-slot i {
    color: var(--accent-color);
}

.horaires-cta {
    text-align: center;
    margin-top: 50px;
}

/* À Propos Section */
.a-propos {
    padding: 6rem 5%;
    background-color: #1a1a1a;
    overflow: hidden; 
}

.a-propos-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.a-propos-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.a-propos-img img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.a-propos-img:hover img {
    transform: scale(1.05);
}

.a-propos-text {
    flex: 1;
}

.a-propos-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-title);
    letter-spacing: 1px;
}

.a-propos-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.a-propos-text .btn {
    margin-top: 1rem;
}

.a-propos-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--card-bg);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    color: var(--accent-color);
    font-size: 2rem;
    background: transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon {
    transform: rotate(15deg);
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.feature-text p {
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .a-propos-content {
        flex-direction: column;
    }
    
    .a-propos-img, .a-propos-text {
        width: 100%;
    }
    
    .about-feature {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}


/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--darker-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.phone-link:hover {
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-item div {
    flex: 1;
}

.info-item h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-color);
    margin-bottom: 5px;
}

.ubereats-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: black;
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.ubereats-logo-img {
    height: 28px;
    width: auto;
}

.ubereats-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.ubereats-btn span {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-social {
    text-align: center;
}

.footer-social h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.delivery-partners {
    margin-top: 20px;
}

.delivery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--darker-bg);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.delivery-btn:hover {
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 5, 0.3);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

@media (max-width: 992px) {
    .horaires-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .horaires-container {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        margin-bottom: 10px;
    }
}

/* Bat Signal amélioré */
.bat-signal {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.bat-signal img {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.bat-signal:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: rgba(26, 26, 26, 0.9);
}

.bat-signal img.pulse {
    animation: pulse 1s ease-in-out;
}

.bat-signal:hover img {
    animation: batSignalGlow 2s infinite;
}

/* Animation pour les éléments AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Média queries améliorées */
@media screen and (max-width: 992px) {
    .hero {
        flex-direction: column;
        height: auto;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .specialites-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .menu-category {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 50px;
        padding: 50px 0;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        display: block;
        font-size: 1.1rem;
    }
    
    .order-btn {
        margin-top: 20px;
    }
    
    .order-btn a {
        background-color: var(--primary-color);
        color: black;
        border-radius: 30px;
        padding: 10px 20px;
        margin: 0 20px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media screen and (max-width: 768px) {
    .category-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 15px;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .special-img img {
        height: 200px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info h3::after, .footer-hours h3::after, .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-info, .footer-hours, .footer-social {
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .menu-item {
        padding: 15px;
    }
    
    .menu-item h3 {
        font-size: 1.1rem;
    }
    
    .bat-signal {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .bat-signal img {
        width: 30px;
        height: 30px;
    }
}

/* Style amélioré pour les boutons de catégories du menu */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-color);
    border: 2px solid transparent;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 204, 5, 0.1);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    left: 0;
}

.tab-btn:hover, 
.tab-btn.active {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 5, 0.3);
}

/* Style amélioré pour les conteneurs de menu */
.desserts-container,
.boissons-container,
.tex-mex-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .desserts-container,
    .boissons-container,
    .tex-mex-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .desserts-container,
    .boissons-container,
    .tex-mex-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .desserts-container,
    .boissons-container,
    .tex-mex-container {
        grid-template-columns: 1fr;
    }
}

/* Suppression des styles en conflit */
.pizza-container, .pizza-speciale, .desserts-container, .boissons-container, .tex-mex-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .pizza-container, .pizza-speciale, .desserts-container, .boissons-container, .tex-mex-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .pizza-container, .pizza-speciale, .desserts-container, .boissons-container, .tex-mex-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pizza-container, .pizza-speciale, .desserts-container, .boissons-container, .tex-mex-container {
        grid-template-columns: 1fr;
    }
}

/* Style amélioré pour les éléments de menu */
.menu-item-row {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 204, 5, 0.1);
}

.menu-item-row:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 204, 5, 0.3);
}

.menu-item-row .item-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-item-row .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item-row:hover .item-img img {
    transform: scale(1.1);
}

.menu-item-row .item-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item-row .item-name {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.menu-item-row .item-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.menu-item-row .item-price {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: auto;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

/* Style amélioré pour le bouton voir plus/voir moins */
.view-more-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.view-more-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.view-more-btn:hover {
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 5, 0.3);
}

.view-more-btn:hover::before {
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-item-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        padding: 20px;
    }

    .item-img {
        width: 100%;
        height: 180px;
        margin: 0 auto 15px;
    }

    .item-price {
        margin-top: 10px;
        margin-left: 0;
        align-self: center;
    }

    .item-info {
        width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .popular-badge {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .menu-category-header h3 {
        font-size: 1.8rem;
    }
}

/* Styles pour les logos en arrière-plan entre les sections */
.menu, .specialites, .a-propos, .horaires, .contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    right: -200px;
    transform: translateY(-30%) rotate(8deg);
    width: 800px;
    height: 800px;
    background-image: url(./img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.specialites::before {
    content: '';
    position: absolute;
    left: -200px;
    transform: translateY(-30%) rotate(-8deg);
    width: 800px;
    height: 800px;
    background-image: url(./img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.specialites.second::before {
    content: '';
    position: absolute;
    right: -200px;
    left:auto;
    transform: translateY(-30%) rotate(8deg);
    width: 800px;
    height: 800px;
    background-image: url(./img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.a-propos::before {
    content: '';
    position: absolute;
    left: -200px;
    transform: translateY(-25%) rotate(-8deg);
    width: 800px;
    height: 800px;
    background-image: url(./img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.horaires::before {
    content: '';
    position: absolute;
    right: -200px;
    transform: translateY(-30%) rotate(8deg);
    width: 800px;
    height: 800px;
    background-image: url(./img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.contact::before {
    content: '';
    position: absolute;
    left: -200px;
    transform: translateY(-30%) rotate(-8deg);
    width: 800px;
    height: 800px;
    background-image: url(./img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}
 