
/* Custom Styles for Sabor & Arte - Restaurante Popular Edition */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #334155; /* Slate 700 */
}

/* Hero Background - Comida Fresca e Colorida */
.vintage-overlay {
    background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.6)), url('https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Navbar */
#navbar {
    transition: all 0.4s ease;
}

.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f97316; /* Orange 500 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #f97316;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.service-icon {
    background-color: #fff7ed;
    color: #f97316;
}

.service-card:hover .service-icon {
    background-color: #f97316;
    color: #ffffff;
}

/* Buttons */
.cta-button-primary {
    background-color: #f97316;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.cta-button-primary:hover {
    background-color: #ea580c;
    transform: scale(1.05);
}

.gallery-img-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

@media (max-width: 640px) {
    .vintage-overlay {
        background-attachment: scroll;
    }
}
