/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Main Container */
#main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
#hero-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #ffcc00;
    padding: 50px 20px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.hero-buttons .btn:hover {
    background-color: #555;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* About Us Section */
#about-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #fff;
}

.about-us-content {
    flex: 1;
    padding-right: 20px;
}

.about-us-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.about-us-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-us-image {
    flex: 1;
    text-align: center;
}

.about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Featured Dishes Section */
#featured-dishes {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

#featured-dishes h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
}

.dishes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.dish-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    max-width: 300px;
    transition: transform 0.3s;
}

.dish-item img {
    width: 100%;
    border-radius: 8px;
}

.dish-item:hover {
    transform: scale(1.05);
}

.dish-item p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Special Offers Section */
#special-offers {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

#special-offers h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.offers-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.offers-content .btn {
    background-color: #ffcc00;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.offers-content .btn:hover {
    background-color: #ff9900;
}

/* Testimonials Section */
#testimonials {
    background-color: #f9f9f9;
    text-align: center;
    padding: 50px 20px;
}

#testimonials h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.testimonials {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
    max-width: 300px;
}

.testimonial-item p {
    font-style: italic;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-item span {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Contact Us Section */
#contact-us {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

#contact-us h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 18px;
    color: #555;
}

.contact-map iframe {
    border-radius: 8px;
    border: none;
    margin-top: 20px;
}

/* Social Media Links */
#social-media {
    text-align: center;
    padding: 30px 20px;
    background-color: #333;
    color: #fff;
}

#social-media h2 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ffcc00;
}

/* Footer Section */
#footer-container {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

#footer-container p {
    margin-bottom: 10px;
    font-size: 16px;
}

#footer-container a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 10px;
}

#footer-container a:hover {
    color: #ff9900;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 80%;
    height: 80%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #hero-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px; /* Adjust padding for better spacing on mobile */
    }

    .hero-content, .hero-image {
        flex: none;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px; /* Reduce heading size on mobile */
    }

    .hero-content p {
        font-size: 16px; /* Reduce text size on mobile */
    }

    .hero-buttons .btn {
        padding: 10px 20px; /* Make buttons smaller for mobile */
        font-size: 16px;
    }

    /* Dishes and Testimonials adjustments for mobile */
    .dishes, .testimonials {
        flex-direction: column;
    }

    .dish-item, .testimonial-item {
        margin: 10px auto; /* Center items in mobile */
        width: 90%; /* Ensure that items do not take full width */
    }

    /* Social Links adjustments for mobile */
    .social-links {
        flex-direction: column;
        align-items: center; /* Center links on mobile */
    }

    .social-link {
        margin-bottom: 10px;
    }

    /* Footer adjustments for mobile */
    #footer-container {
        padding: 20px 15px; /* Reduce padding for better fit */
    }
}
