/* Restaurant Pages - Styles spécifiques pour les pages de listing restaurant */

/* Hero Section */
.restaurant-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    padding: 6rem 0 4rem 0 !important;
    margin-top: 80px !important;
    color: white !important;
    text-align: center !important;
}

.restaurant-hero h1 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.restaurant-hero p {
    font-size: 1.25rem !important;
    opacity: 0.9 !important;
    margin: 0 !important;
    color: #6b7280 !important
}


/* Featured Section */
.restaurant-featured-section {
    padding: 4rem 0 !important;
    background: #f8fafc !important;
}

/* Responsive pour Hero */
@media (max-width: 768px) {
    .restaurant-hero {
        padding: 4rem 0 3rem 0 !important;
    }
    
    .restaurant-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .restaurant-hero p {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 480px) {
    .restaurant-hero h1 {
        font-size: 2rem !important;
    }
    
    .restaurant-hero p {
        font-size: 1rem !important;
    }
}
