
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color:yellow;
    text-align: center;
    font-style: italic;
    font-size: 20px;
}

h2, h3, h4, h5 {
    margin: 10px 0;
    padding-bottom: 20px;
    font-size: larger;
    color:greenyellow;
}


header {
    padding: 20px;
    background-color: black;
}

.tagline {
    color: white;
    font-size: larger;
    padding-top: 20px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.nav-menu li {
    margin: 15px;
}

.nav-menu a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
    font-style: normal;
}

.nav-menu a:hover {
    text-decoration: underline;
    color: red;
}


.menu-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    flex-wrap: wrap;
}

.menu-item {
    background-color: black;
    border: 1px solid yellow;
    padding: 20px;
    width: 240px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    padding-top: 20px;
}

.menu-item img {
    width: 110px;
    height: 120px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: white;
}
footer {
    background-color: black;
    color: greenyellow;
    padding: 20px;
    text-align: center;
    font-style: normal;
    font-size: medium;
    margin-top: 40px;
    border-top: 2px solid yellow;
}

.footer-content p {
    margin: 8px 0;
}

.footer-content a {
    color: yellow;
    text-decoration: none;
    margin: 5px;
}

.footer-content a:hover {
    color: red;
    text-decoration: underline;
}

.menu-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; 
}

.menu-item:hover {
    
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 255, 0, 0.3);
    background-color: #111; 
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: gold;
    color: black;
    font-size: 0.8rem;
    padding: 4px 6px;
    border-radius: 5px;
    display: block;
}


