/* Change navigation links to yellow on hover */
.wp-block-navigation a:hover {
    color: #F2E205 !important; /* Yellow color */
    transition: color 0.3s ease-in-out; /* Smooth transition */
}
/* Change navigation links to yellow on hover (desktop) */
.wp-block-navigation a:hover {
    color: #F2E205 !important; /* Yellow */
    transition: color 0.3s ease-in-out;
}

/* Change navigation links to yellow when tapped/clicked on mobile */
.wp-block-navigation a:active,
.wp-block-navigation a:focus {
    color: #F2E205 !important; /* Yellow */
}
/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    background: url('your-hero-image-url.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.order-button {
    background: #ffcc00;
    padding: 15px 30px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.order-button:hover {
    background: #e6b800;
}

/* Menu Section */
.menu-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px;
    text-align: center;
    background: #fff;
}
.menu-item {
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
}
.menu-item:hover {
    transform: scale(1.05);
}
.menu-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.menu-item h2 {
    font-size: 1.5rem;
    margin-top: 15px;
}

/* Loyalty Section */
.loyalty-section {
    text-align: center;
    padding: 50px;
    background: #f4f4f4;
}
.loyalty-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .menu-section {
        flex-direction: column;
        align-items: center;
    }
}