/* Base Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #FFFFFF;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1F1F1F;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.nav-menu ul {
    list-style: none;
    display: inline-flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FFD700; /* Gold color for hover effect */
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    width: 50px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px ;
    
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    background-blend-mode: overlay;
}

nav ul li a::after{
    content: '';
    width: 0%;
    height: 3px;
    background:#FFD700;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 250ms;
}

nav ul li a:hover::after{
    width: 100%;
}

.cta-button a {
    text-decoration: none;
    color: #1F1F1F;
    background-color: #FFD700; /* Gold color for button */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button a:hover {
    background-color: #FFC107; /* Lighter gold for hover effect */
}

/* Hero Section Styles */
.hero {
    background: url('burger-hero-bg.jpeg') no-repeat center center/cover; /* Replace with your image */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin: 0 0 20px;
}

.hero p {
    font-size: 1.5rem;
    margin: 0 0 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #FFD700; /* Gold color */
    color: #1F1F1F;
}

.btn-primary:hover {
    background-color: #FFC107; /* Lighter gold for hover effect */
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #1F1F1F;
}

/* About Us Section Styles */
.about-us {
    background-color: #1F1F1F;
    padding: 60px 20px;
    text-align: center;
}

.about-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for heading */
}

.about-us p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #BBBBBB; /* Light grey color for text */
}

.about-us-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-us-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.about-us-images img:hover {
    transform: scale(1.09); /* Slight zoom effect on hover */
}

/* Featured Items Section Styles */
.featured-items {
    background-color: #1F1F1F;
    padding: 60px 20px;
    text-align: center;
}

.featured-items .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-items h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for heading */
}

.items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.item {
    background-color: #2C2C2C;
    padding: 20px;
    border-radius: 10px;
    width: calc(25% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFD700; /* Gold color for item title */
}

.item p {
    font-size: 1rem;
    color: #BBBBBB; /* Light grey color for text */
}

.item:hover {
    transform: translateY(-10px);
    background-color: #3A3A3A;
}
/* Special Offers Section Styles */
.special-offers {
    background-color: #1F1F1F;
    padding: 60px 20px;
    text-align: center;
}

.special-offers .container {
    max-width: 1200px;
    margin: 0 auto;
}

.special-offers h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for heading */
}

.offers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.offer {
    background-color: #2C2C2C;
    padding: 20px;
    border-radius: 10px;
    width: calc(25% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.offer img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.offer h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFD700; /* Gold color for offer title */
}

.offer p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #BBBBBB; /* Light grey color for text */
}

.btn-offer {
    text-decoration: none;
    color: #1F1F1F;
    background-color: #FFD700; /* Gold color for button */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-offer:hover {
    background-color: #FFC107; /* Lighter gold for hover effect */
    color: #1F1F1F;
}

.offer:hover {
    transform: translateY(-10px);
    background-color: #3A3A3A;
}
/* Testimonials Section Styles */
.testimonials {
    background-color: #1F1F1F;
    padding: 60px 20px;
    text-align: center;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #FFD700; /* Gold color for heading */
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial {
    background-color: #2C2C2C;
    padding: 20px;
    border-radius: 10px;
    width: calc(25% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.testimonial p {
    font-size: 1rem;
    color: #BBBBBB; /* Light grey color for text */
    margin-bottom: 20px;
}

.testimonial h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: #FFD700; /* Gold color for name */
}

.testimonial span {
    display: block;
    font-size: 0.875rem;
    color: #CCCCCC; /* Lighter grey for designation */
}

.testimonial:hover {
    transform: translateY(-10px);
    background-color: #3A3A3A;
}
/* Locations Section Styles */
.locations {
    background-color: #1F1F1F;
    padding: 60px 20px;
    text-align: center;
}

.locations .container {
    max-width: 1200px;
    margin: 0 auto;
}

.locations h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #FFD700; /* Gold color for heading */
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.location {
    background-color: #2C2C2C;
    padding: 20px;
    border-radius: 10px;
    width: calc(25% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.location h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFD700; /* Gold color for location name */
}

.location p {
    font-size: 1rem;
    color: #BBBBBB; /* Light grey color for address */
    margin: 10px 0;
}

.location-link {
    text-decoration: none;
    color: #FFD700; /* Gold color for link */
    font-weight: bold;
    transition: color 0.3s;
}

.location-link:hover {
    color: #FFC107; /* Lighter gold for hover effect */
}
/* Social Media Section Styles */
.social-media {
    background-color: #1F1F1F;
    padding: 60px 20px;
    text-align: center;
}

.social-media .container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-media h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #FFD700; /* Gold color for heading */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon{
    text-decoration: none;
    color: #FFFFFF;
    background-color: #2C2C2C;
    padding: 15px;
    border-radius: 25%;
    font-size: 2rem;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #FFD700; /* Gold color for hover */
    color: #1F1F1F; /* Dark color for icon on hover */
}

/* Specific colors for social media icons */
.social-icon.facebook:hover {
    color: #ffffff; /* Facebook color */
}

.social-icon.twitter:hover {
    color: #ffffff; /* Twitter color */
}

.social-icon.instagram:hover {
    color: #ffffff; /* Instagram color */
}

.social-icon.linkedin:hover {
    color: #ffffff; /* LinkedIn color */
}
/* Newsletter Signup Section Styles */
.newsletter {
    background-color: #1F1F1F;
    padding: 60px 20px;
    text-align: center;
}

.newsletter .container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for heading */
}

.newsletter p {
    font-size: 1.25rem;
    color: #BBBBBB; /* Light grey color for description */
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.signup-form input[type="email"] {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #1F1F1F; /* Dark color for input text */
    background-color: #2C2C2C; /* Dark background for input field */
    width: 100%;
    max-width: 400px;
}

.signup-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #1F1F1F; /* Dark color for button text */
    background-color: #FFD700; /* Gold color for button */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.signup-form button:hover {
    background-color: #FFC107; /* Lighter gold for hover effect */
    color: #1F1F1F; /* Dark color for button text on hover */
}
/* Footer Section Styles */
.footer {
    background-color: #1F1F1F;
    color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    flex: 1;
    margin: 0 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFD700; /* Gold color for headings */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #BBBBBB; /* Light grey color for links */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #FFD700; /* Gold color for link hover */
}

.footer-contact p {
    font-size: 1rem;
    margin: 10px 0;
}

.footer-contact a {
    color: #FFD700; /* Gold color for email link */
    text-decoration: none;
}

.footer-contact a:hover {
    color: #FFC107; /* Lighter gold for hover effect */
}

.footer-bottom {
    border-top: 1px solid #2C2C2C;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #BBBBBB; /* Light grey color for footer text */
    margin: 0;
}
