* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

header {
    background-color: #000;
    padding: 1rem;
    border-bottom: 2px solid #ff0000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #ff0000;
}

.hero, .content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.content h1 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.content h2 {
    font-size: 1.5rem;
    color: #ff0000;
    margin: 1rem 0 0.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-card {
    background-color: #1a1a1a;
    border: 2px solid #ff0000;
    border-radius: 5px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-list {
    list-style: none;
    margin: 1rem 0;
    flex: 1;
}

.menu-list li {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.menu-note {
    color: #fff;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.menu-notice {
    background-color: yellow;
    color: black;
    padding: 0.75rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-weight: bold;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    max-height: 70vh; /* limit how tall it gets on screen */
    width: auto;
    height: auto;
    margin: 1rem auto;
    display: block;
    border: 2px solid #ff0000;
    border-radius: 5px;
}

.contact-map {
    max-width: 100%;
    width: 100%;
    height: 400px;
    margin: 1rem auto;
    display: block;
    border: 2px solid #ff0000;
    border-radius: 5px;
}

.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #cc0000;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #000;
    border-top: 2px solid #ff0000;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        min-height: auto;
    }

    .contact-map {
        height: 300px;
    }
}
.qr-code {
    display: block;
    margin: 1rem auto;
    max-width: 200px; /* Adjust for web display */
    border: 5px solid #ff0000; /* Red border to match theme */
    border-radius: 5px;
}
.qr-caption {
    text-align: center;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 1rem;
}

.phone-link {
    color: #ff0000; /* Red to match theme */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    transition: color 0.3s ease;
}
.phone-link:hover {
    color: #cc0000; /* Darker red on hover */
    text-decoration: underline;
}

/*
Food images inside menu
*/
.food-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}
.food-images img {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Crop to fit */
    border: 2px solid #ff0000; /* Red border like .qr-code */
    border-radius: 5px;
}
@media (max-width: 768px) {
    .food-images img {
        width: 80px;
        height: 80px;
    }
}