/* General Styles */
body {
    font-family: 'Arial', sans-serif;
}

.hero-section {
    background-color: #f7f3e9;
    padding: 60px 0;
}

.animated-image {
    width: 100%;
    max-width: 600px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.dialogue-box {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dish-reveal-section {
    background-color: #fff3e1;
}

.btn-instagram {
    background-color: #E1306C;
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-instagram:hover, .btn-whatsapp:hover {
    opacity: 0.8;
}
