/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

/* Top Bar */
.top-bar {
    background-color: #8B0000;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #5A0000;
    color: white;
}

.navbar .logo {
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.buttons .btn {
    background-color: #FFD700;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    margin-left: 10px;
    border-radius: 5px;
}

.buttons .primary {
    background-color: #FF4500;
    color: white;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    background-color: #5A0000;
    color: white;
}

.hero-text {
    max-width: 50%;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #FFD700;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn {
    background-color: #FFD700;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Food Menu */
.food-menu {
    text-align: center;
    padding: 40px 40px;
}

.food-menu h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.menu-item {
    background-color: #f3f3f3;  
}

.menu-item img {
    width: 100%;
}

.menu-item p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* About Section */
.about {
    padding: 50px 10%;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1;
    max-width: 50%;
}

.about-text h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-left {
    width: 30%;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.7;
}

.footer-menu,
.footer-contact {
    width: 30%;
}

.footer-menu h3,
.footer-contact h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-menu ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li,
.footer-contact ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.scroll-top {
    text-align: right;
    margin-top: 20px;
}

.scroll-top a {
    background-color: red;
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 15px;
}

/* Media Queries for Mobile Responsiveness */
/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .navbar .logo {
        margin-bottom: 20px;
    }

    /* Hide the menu links on mobile */
    .nav-links {
        display: none;
        margin-bottom: 20px;
    }


    .buttons {
        margin-top: 20px;
    }

    .hero .btn{
        display: none;
        margin-bottom: 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .food-menu {
        padding: 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-text,
    .about-image {
        max-width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-menu,
    .footer-contact {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-left p {
        font-size: 13px;
    }

    .footer-menu ul li,
    .footer-contact ul li {
        font-size: 12px;
    }
}
