body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff8f0;
    color: #333;
}

/* Header */
header {
    background-color: #8b0000;
    color: white;
    text-align: center;
    padding: 20px;
}

.moving-text {
    font-size: 18px;
    animation: slide 5s infinite alternate;
}

@keyframes slide {
    from { letter-spacing: 2px; }
    to { letter-spacing: 6px; }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 20px;
}

.hero img {
    width: 50%;
    border-radius: 10px;
}

.hero-text {
    padding: 20px;
}

/* Menu Section */
.menu {
    text-align: center;
    padding: 30px;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.item {
    background: white;
    padding: 10px;
    border-radius: 10px;
    width: 200px;
}

.item img {
    width: 100%;
    border-radius: 10px;
}

/* Offer */
.offer {
    background-color: #ffd700;
    font-size: 20px;
    padding: 10px;
}

/* Footer */
footer {
    background-color: #8b0000;
    color: white;
    text-align: center;
    padding: 15px;
}
