
body {
    margin: 0;
    font-family: 'Kalam', cursive;
    background: #111;
    color: #eee;
}

header {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 140px;
}

.title {
    font-family: 'Fredoka One', cursive;
    font-size: 45px;
    margin-top: 10px;
    color: #ff7f2a;
}

.hero-img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid #ff7f2a;
}

h2 {
    font-family: 'Fredoka One', cursive;
    color: #ff7f2a;
    font-size: 32px;
}

.about, .menu, .info {
    padding: 25px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #222;
    padding: 10px;
    border-radius: 12px;
    transition: transform .3s;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card:hover {
    transform: scale(1.05);
}

.maps-btn, .whatsapp-btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    background: #ff7f2a;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
}

footer {
    background: #000;
    padding: 15px;
    text-align: center;
    color: #777;
}

/* Animations */
.fade-in { animation: fadeIn 1.5s ease; }
.fade-up { animation: fadeUp 1.5s ease; }
.fade-down { animation: fadeDown 1.5s ease; }

@keyframes fadeIn { from {opacity: 0;} to {opacity:1;} }
@keyframes fadeUp { from {opacity:0; transform: translateY(20px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeDown { from {opacity:0; transform: translateY(-20px);} to {opacity:1; transform:translateY(0);} }
