:root {
    --red: #8B0000;
    --gold: #FFD700;
}

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

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

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    background: var(--red);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: var(--gold);
    color: var(--red);
    border-radius: 5px;
}

/* HERO */
.hero {
    height: 60vh;
    background: url("../images/hero.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px black;
}

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

.hero p {
    font-size: 1.4rem;
}

/* ABOUT */
.about {
    padding: 50px 20px;
    background: #fff8e1;
    text-align: center;
}

.about h2 {
    color: var(--red);
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.about-img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.about-content p {
    max-width: 500px;
    font-size: 1.1rem;
    text-align: left;
}

/* MENU */
.menu {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
}

.menu h2 {
    color: var(--red);
    margin-bottom: 20px;
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    justify-items: center;
}

.menu-item {
    text-align: center;
    background: var(--red);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.menu-item img {
    width: 240px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-item img:hover {
    transform: scale(1.05);
}

.item-name {
    font-weight: bold;
    color: var(--gold);
    margin-top: 10px;
}

.item-desc {
    margin-top: 5px;
    color: white;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000;
}

.lightbox-img {
    max-width: 90%;
    max-height: 70%;
    margin-bottom: 10px;
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}

/* FADE-IN */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .menu-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
    }

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

    .hero p {
        font-size: 1rem;
    }
}
