/* General Styles */
:root {
    --primary-color: #bb9677;
    --secondary-color: #4a4a4a;
    --bg-light: #f5f5f5;
    --bg-dark: #333;
    --text-dark: #333;
    --text-light: #fff;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Logo Styling */
.logo {
    margin-bottom: 20px;
}

/* Top Navigation Bar */
.top-nav {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-nav .container {
    display: flex;
    justify-content: flex-start; /* Aligns content to the left */
    align-items: center;
}

.top-nav .logo img {
    
    width: 140px;
}

/* Make sure the hero section adjusts for the new nav bar */
.hero {
    /* No changes needed here, as the new nav bar is sticky and doesn't push down the content. */
}

/* Remove previous logo styling */
.logo {
    margin-bottom: 0;
}
.logo img {
    max-width: none;
}
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
     background: url('images/babag.jpg') no-repeat center center/cover;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

/* Header & Hero Section */
.hero {
    background: url('images/food2.png') no-repeat center center/cover;
    color: var(--text-light);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #ff4747;
    transform: translateY(-3px);
}

/* Sections */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-img {
    max-width: 450px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-text li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--text-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item img {
    height: 60px;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background: var(--text-light);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta h2 {
    color: var(--text-light);
}

.price-box {
    background: var(--text-light);
    color: var(--primary-color);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.btn-cta {
    background-color: var(--bg-dark);
    font-size: 1.2rem;
    padding: 15px 35px;
}

.btn-cta:hover {
    background-color: #555;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #eaeaea;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff4747;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-img {
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}