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

body {
    background: linear-gradient(135deg, #f8f1e3, #f0e6d2);
    font-family: 'Roboto', sans-serif;
    color: #2c2c2c;
    min-height: 100vh;
    padding: 15px;
    position: relative;
    overflow-x: hidden;
}

/* Effet cuisine subtil en fond */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(183, 28, 28, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 184, 138, 0.08) 0%, transparent 50%);
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 8vw, 3.8rem);
    color: #1a1a1a;
    text-shadow: 3px 3px 0 #b71c1c;
}

.slogan {
    font-size: 1.3rem;
    font-style: italic;
    color: #b71c1c;
    margin-top: 8px;
}

/* IMAGE MENU */
.hero-image {
    text-align: center;
    margin: 20px 0 35px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.full-menu {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* LOADER */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #f8f1e3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.7s ease;
}

.loader-content {
    text-align: center;
}

.plate-svg {
    animation: rotatePlate 2.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes rotatePlate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader p {
    font-size: 1.25rem;
    color: #2c2c2c;
    font-style: italic;
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 28px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border: 2px solid #2c2c2c;
    text-align: center;
}

.card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: block;
    margin-top: 18px;
    background: #25D366;
    color: white;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* FOOTER */
footer {
    text-align: center;
    margin-top: 45px;
    padding: 20px;
    color: #555;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    body { padding: 10px; }
    .hero-image { margin: 15px 0 25px 0; }
    .card { padding: 22px 15px; }
}

/* ===================== MAINTENANCE PAGE ===================== */
.maintenance-content {
    text-align: center;
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
}

.maintenance-icon {
    font-size: 5.5rem;
    margin-bottom: 10px;
    animation: rotateIcon 12s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.maintenance-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #b71c1c;
    margin: 15px 0 25px 0;
}

.maintenance-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.contact-maintenance {
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 2px solid #2c2c2c;
    margin: 25px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-maintenance p {
    margin: 10px 0;
    font-size: 1.15rem;
}

.return-time {
    margin-top: 30px;
    font-style: italic;
    color: #b71c1c;
    font-size: 1.2rem;
}