body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Hero section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/animation/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

/* Container et sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #ff8e53);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}

/* Grille des plats */
.plats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plat-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.plat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.plat-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.plat-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(255, 142, 83, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plat-content {
    padding: 2rem;
}

.plat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.plat-content p {
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
}

/* Section mise en avant */
.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-text h2 {
    color: white;
    margin-bottom: 2rem;
}

.highlight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    text-align: justify;
}

.highlight-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.highlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Section Tarifs */
.tarifs {
    background: #f8fafc;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tarif-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tarif-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.tarif-category h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff6b9d;
    padding-bottom: 0.5rem;
}

.tarif-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tarif-item:hover {
    background: #f1f5f9;
    border-color: #ff6b9d;
}

.tarif-item.pack-special {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
}

.tarif-item.pack-special span:first-child {
    color: #92400e;
    font-weight: 600;
}

.tarif-item span:first-child {
    color: #475569;
    font-weight: 500;
    flex-grow: 1;
}

.tarif-item small {
    color: #64748b;
    font-size: 0.8rem;
}

.prix {
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #ff8e53);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

.service-garde {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
}

.service-garde h3 {
    color: #065f46;
    border-bottom-color: #10b981;
}

.service-description {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-description p {
    color: #065f46;
    font-style: italic;
    font-weight: 500;
}

.devis-note {
    background: #34d399;
    color: #065f46;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Section contact */
.contact {
    background: #f8fafc;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-contact, .btn-reservation {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-contact {
    background: linear-gradient(135deg, #ff6b9d, #ff8e53);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff8e53, #ff6b9d);
}

.btn-reservation {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-reservation:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Footer moderne */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p, .footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section p {
    text-align: justify;
}

.footer-section a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive */
@media (max-width: 1000px) {
    .hero {
        padding-top: 120px;
    }
    
    .plats-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tarif-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .prix {
        align-self: flex-end;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-contact, .btn-reservation {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .tarif-category {
        padding: 1.5rem;
    }
}