/* KFC-style theme for Tasty Menu */
body {
    background: url('images/foodmenu.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.main-header {
    position: sticky;
    top: 0;
    background: linear-gradient(90deg, #a10000 60%, #d32f2f 100%);
    color: #fff;
    z-index: 100;
    box-shadow: 0 2px 12px #a1000030;
}

.logo {
    font-family: 'Pacifico', cursive;
    color: #fff;
    letter-spacing: 2px;
    font-size: 2.2rem;
    text-shadow: 0 2px 8px #a1000020;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 18px;
    transition: background 0.2s;
}

.main-nav a:hover {
    background: #fff;
    color: #a10000;
}

.hero-section {
    background: url('images/foodmenu.jpg') center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(161, 0, 0, 0.72);
    padding: 48px 24px 32px 24px;
    border-radius: 24px;
    box-shadow: 0 4px 32px #a1000030;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    color: #fff;
    font-family: 'Pacifico', cursive;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px #a1000020;
}

.hero-desc {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 18px;
}

.hero-btn {
    background: #fff;
    color: #a10000;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 22px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px #a1000020;
    transition: background 0.2s, color 0.2s;
}

.hero-btn:hover {
    background: #a10000;
    color: #fff;
}

.menu-section {
    background: #fff;
    padding: 48px 0 32px 0;
}

.menu-title {
    text-align: center;
    font-size: 2rem;
    color: #a10000;
    font-family: 'Pacifico', cursive;
    margin-bottom: 32px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px #a1000020;
    padding: 18px 12px 22px 12px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.menu-item:hover {
    box-shadow: 0 6px 24px #a1000030;
    transform: translateY(-4px) scale(1.03);
}

.menu-item img {
    width: 100%;
    max-width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px #a1000020;
    cursor: pointer;
}

.menu-item h3 {
    color: #a10000;
    font-size: 1.18rem;
    margin: 8px 0 4px 0;
}

.menu-item p {
    color: #222;
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.add-to-cart {
    background: #a10000;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px #a1000020;
    transition: background 0.2s;
}

.add-to-cart:hover {
    background: #d32f2f;
}

#floating-cart {
    /* Already styled inline for demo, but you can move here if needed */
}

#cart-modal {
    /* Already styled inline for demo, but you can move here if needed */
}

.whatsapp-button {
    position: fixed;
    bottom: 16px;
    left: 16px;
    background: #25d366;
    color: #fff;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 22px;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px #25d36630;
    z-index: 9999;
    transition: background 0.2s;
}

.whatsapp-button:hover {
    background: #128c7e;
}


footer {
    background: #a10000;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 1rem;
    margin-top: 32px;
    box-shadow: 0 -2px 12px #a1000030;
}