/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #333;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: #f8a100;
    margin: 15px auto 30px;
}

/* Header Styles */
header {
    background-color: #222;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

nav ul li a:hover {
    color: #f8a100;
}

.order-btn {
    background-color: #f8a100;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #e59000;
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/Banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #f8a100;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e59000;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.welcome h2 {
    font-size: 2.5rem;
    color: #222;
}

.welcome p {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.features h2 {
    font-size: 2.5rem;
    color: #222;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #f8a100;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #222;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonial-item {
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #f8a100;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    margin-top: 15px;
}

/* Menu Section */
.menu-highlights {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.menu-highlights h2 {
    font-size: 2.5rem;
    color: #222;
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.menu-category {
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s;
}

.menu-category:hover {
    transform: translateY(-10px);
}

.menu-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.menu-category h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.menu-btn {
    display: inline-block;
    background-color: #f8a100;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.menu-btn:hover {
    background-color: #e59000;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 2.5rem;
    color: #222;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.contact-info {
    padding: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #f8a100;
    margin-right: 15px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f8a100;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #e59000;
}

.map {
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    color: #f8a100;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #f8a100;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact p i {
    color: #f8a100;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom a {
    color: #f8a100;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.popup h3 {
    color: #f8a100;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.popup p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.popup-btn {
    display: inline-block;
    background-color: #f8a100;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.popup-btn:hover {
    background-color: #e59000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #222;
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
    }
    
    .feature-grid, .testimonial-grid, .menu-category-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}
