/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
    margin-top: 80px; /* Ensure content starts below fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: rgba(0, 0, 0, 0.8); /* Slightly transparent background */
    color: #fff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure navbar is above other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Shadow effect */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
}

.header nav {
    display: flex;
    align-items: center;
}

.header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header nav ul li {
    margin-left: 20px;
}

.header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.header nav ul li a:hover {
    color: #ff8c00; /* Highlight color */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(0, 0, 0, 0.9);
    }

    .header nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


/* Hero section styles */
.hero {
    height: 100vh; /* Adjust as needed */
    background-image: url('burger-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem; /* Increased font size for better visibility */
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff6f00;
}

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

/* Menu Section styles */
.menu {
    padding: 80px 0;
}

.menu h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff; /* Text color for heading */
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.menu-item {
    background-color: #333; /* Dark background color */
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.menu-item-info {
    flex-grow: 1;
}

.menu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff8c00; /* Accent color */
}

.menu-item p {
    color: #ccc; /* Text color for description */
    margin-bottom: 10px;
}

.menu-item .price {
    font-weight: bold;
    color: #ff8c00; /* Price color */
}

/* About Us Section styles */
.about {
    padding: 80px 0;
}

.grey-theme {
    background-color: #333; /* Grey background color */
    color: #fff; /* Light text color */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff; /* Text color for heading */
}

.about-text p {
    margin-bottom: 15px;
    color: #ccc; /* Text color for paragraphs */
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); /* White shadow effect */
}

/* Special Offers Section styles */
.special-offers {
    padding: 80px 0;
    background-color: #333; /* Dark grey background color */
    color: #fff; /* Light text color */
}

.special-offers h2 {
    text-align: center;
    margin-bottom: 40px;
}

.offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #444; /* Darker grey background color */
    border-radius: 5px;
    margin-bottom: 20px;
}

.offer img {
    max-width: 40%;
    height: auto;
    border-radius: 5px;
}

.offer-details {
    flex: 1;
    padding: 0 20px;
}

.offer-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-details p {
    color: #ccc; /* Text color for description */
    margin-bottom: 15px;
}

/* Customer Testimonials Section styles */
.testimonials {
    padding: 80px 0;
    background-color: #050505; /* Dark grey background color */
    color: #fff; /* Light text color */
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
    color: #fff; /* Light text color */
}

.testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #0b0b0b; /* Darker grey background color */
    border-radius: 5px;
}

.testimonial-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
    color: #fff; /* Light text color */
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-text span {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.testimonial-image img {
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
    border-radius: 50%; /* Round image */
    object-fit: cover; /* Maintain aspect ratio */
    border: 4px solid #fff; /* White border */
}

/* Gallery Section styles */
.gallery {
    padding: 80px 0;
    background-color: #444444; /* Dark background color */
    color: #fff; /* Light text color */
    text-align: center;
}

.gallery h2 {
    margin-bottom: 40px;
    color: #fff; /* Light text color */
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 20px; /* Gap between items */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Contact Information Section styles */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info-item {
    flex: 1 1 300px; /* Flexbox properties */
    max-width: 300px; /* Max width for responsiveness */
    padding: 20px;
    margin: 20px;
    background-color: #222; /* Dark grey background */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.info-item i {
    font-size: 2rem;
    color: #ff8c00; /* Icon color */
    margin-bottom: 10px;
}

.info-item h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff; /* Text color */
}

.info-item p {
    color: #ccc; /* Text color */
}

/* Social Media Integration Section styles */
.social-media {
    padding: 80px 0;
    background-color: #444; /* Grey background color */
    color: #fff; /* Light text color */
    text-align: center;
}

.social-media h2 {
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #333; /* Dark grey background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff8c00; /* Highlight color on hover */
}

.social-icons i {
    font-size: 1.5rem;
    color: #fff; /* Light text color */
}

/* Media queries */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .header nav ul {
        margin-top: 10px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .special-offers h2,
    .testimonials h2,
    .gallery h2,
    .contact h2,
    .social-media h2 {
        font-size: 2rem;
    }

    .offer {
        flex-direction: column;
        text-align: center;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-text {
        padding: 0;
    }

    .gallery-items {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .info-item {
        margin: 20px 0;
    }

    .social-icons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2rem;
    }

    .header nav ul li {
        margin-left: 10px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-image img {
        max-width: 100%;
    }

    .special-offers h2,
    .testimonials h2,
    .gallery h2,
    .contact h2,
    .social-media h2 {
        font-size: 1.5rem;
    }

    .offer img {
        max-width: 100%;
    }

    .testimonial-image img {
        width: 60px;
        height: 60px;
    }
}





/* Footer styles */
.footer {
    background-color: #000;
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left h3 {
    color: #f1c40f;
    margin-bottom: 20px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.8;
}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    font-size: 24px;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #f1c40f;
}

.footer-right {
    flex: 1;
    text-align: left;
}

.footer-right h3 {
    color: #f1c40f;
    margin-bottom: 20px;
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    gap: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f1c40f;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 12px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links li {
        margin-bottom: 10px;
    }
}
