/* Global */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f8f9fa;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

/* Hero */
.hero {
    height: 80vh;
    background: url('/images/hero-food.jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    color: #ddd;
    font-size: 20px;
    margin-bottom: 25px;
}

/* Buttons */
.btn-primary {
    padding: 12px 30px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #d35400;
    }

.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #27ae60;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

    .btn-secondary:hover {
        background: #219150;
    }

/* Products */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .product-card:hover {
        transform: translateY(-8px);
    }

    .product-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 10px;
    }

.price {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    color: #e67e22;
}

/* About */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    text-align: center;
}

.about-text p {
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.6;
}

/* Contact */
.contact-section {
    padding: 60px 0;
    background: #2c3e50;
    color: #fff;
    text-align: center;
}

/* Responsive */
@media(max-width:768px) {
    .hero-content h1 {
        font-size: 32px;
    }
}
/* NAVBAR */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: #2c3e50;
}

.brand-main {
    color: #e67e22;
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: 0.3s;
}

    .nav-links a:hover {
        color: #e67e22;
    }

.call-btn {
    background: #27ae60;
    padding: 8px 15px;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* FOOTER */
.footer {
    background: #2c3e50;
    color: #ddd;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.footer h3, .footer h4 {
    color: #fff;
}

.footer ul {
    list-style: none;
    padding: 0;
}

    .footer ul li {
        margin-bottom: 8px;
    }

.footer a {
    color: #ddd;
    text-decoration: none;
}

    .footer a:hover {
        color: #e67e22;
    }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 22px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Mobile */
@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

        .nav-links.active {
            display: flex;
        }

    .menu-toggle {
        display: block;
    }

    .nav-contact {
        display: none;
    }
}
