* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    background-color: #fff8f0;
    color: #222;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/logo.png') center/contain no-repeat;
    background-color: #2b1a12;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 25px;
}

.cta-btn {
    background-color: #c9782b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #a65f20;
}

/* MENU */
.menu {
    padding: 60px 20px;
    text-align: center;
}

.menu h2 {
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.menu-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 320px;
}

/* Circular Image Container */
.menu-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #c9782b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ABOUT */
.about {
    background-color: #f4e2d8;
    padding: 60px 20px;
    text-align: center;
}

/* HOURS */
.hours {
    padding: 60px 20px;
    text-align: center;
}

/* MAP */
.map {
    padding: 60px 20px;
    text-align: center;
}

.map-container {
    margin-top: 20px;
}

/* FOOTER */
footer {
    background-color: #2b1a12;
    color: white;
    text-align: center;
    padding: 25px 15px;
}

/* Sticky WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}

/* Desktop */
@media(min-width:768px){
    .menu-grid {
        flex-direction: row;
        justify-content: center;
    }

    .menu-item {
        max-width: 300px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}