@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.heading-font {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #E53935 0%, #FB8C00 50%, #FBC02D 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #FBC02D 0%, #FB8C00 100%);
    box-shadow: 0 10px 30px rgba(251, 192, 45, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 192, 45, 0.6);
}

/* Feature Cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #FB8C00;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Stats Counter */
.stat-card {
    background: linear-gradient(135deg, #F5F5DC 0%, #FFFFFF 100%);
    border-left: 4px solid #E53935;
}

/* Section Decorations */
.section-decoration {
    position: relative;
}

.section-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E53935, #FB8C00);
    transform: translateY(-50%);
}

/* Steps Timeline */
.step-line {
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FB8C00 0%, #FBC02D 100%);
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .step-line::after {
        display: none;
    }
}

/* Header Gradient */
.header-gradient {
    background: linear-gradient(135deg, #6D4C41 0%, #4E342E 100%);
    position: relative;
    overflow: hidden;
}

.header-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(251, 140, 0, 0.1);
    border-radius: 50%;
}

/* Annexe Card */
.annexe-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.annexe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #FB8C00;
}

.annexe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251,140,0,0.1), transparent);
    transition: left 0.5s;
}

.annexe-card:hover::before { left: 100%; }

/* Type Badges */
.type-badge-restaurant {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    box-shadow: 0 4px 15px rgba(229,57,53,0.3);
}

.type-badge-bar {
    background: linear-gradient(135deg, #7C4DFF 0%, #651FFF 100%);
    box-shadow: 0 4px 15px rgba(124,77,255,0.3);
}

/* Filter Buttons */
.filter-btn {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.filter-btn.active {
    background: linear-gradient(135deg, #FB8C00 0%, #F57C00 100%);
    color: white;
    border-color: #FB8C00;
    box-shadow: 0 6px 20px rgba(251,140,0,0.4);
}

/* Search Box */
.search-box {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Status Dot */
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100%{opacity:1}
    50%{opacity:0.5}
}

/* Empty State */
.empty-state {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Styles */
.hero-section {
    background: linear-gradient(135deg, #6D4C41 0%, #4E342E 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FB8C00, #F57C00);
    border-radius: 2px;
}

.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #FB8C00;
}

.menu-formule-card {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border: 2px solid #FFB300;
    position: relative;
    overflow: hidden;
}

.menu-formule-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 140, 0, 0.1) 0%, transparent 70%);
}

.product-image {
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.image-wrapper {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.badge-economie {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-section {
    scroll-margin-top: 150px;
}

.filter-plat-btn, .filter-boisson-btn {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.filter-plat-btn.active {
    background: linear-gradient(135deg, #FB8C00 0%, #F57C00 100%);
    color: white;
    border-color: #FB8C00;
    box-shadow: 0 6px 20px rgba(251, 140, 0, 0.4);
}

.filter-boisson-btn.active {
    background: linear-gradient(135deg, #7C4DFF 0%, #651FFF 100%);
    color: white;
    border-color: #7C4DFF;
    box-shadow: 0 6px 20px rgba(124, 77, 255, 0.4);
}

.price-tag {
    background: linear-gradient(135deg, #FB8C00 0%, #F57C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
