:root {
    --primary-color: #6d4c41; /* Warm Chocolate Brown */
    --accent-color: #d7ccc8;  /* Creamy Beige */
    --light-bg: #fffbf5;      /* Warm Warm Cream */
    --text-dark: #3e2723;     /* Dark Cocoa */
    --text-light: #5d4037;
    --whatsapp-green: #25D366;
    --gold: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-whatsapp-header {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.btn-whatsapp-header:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(62, 39, 35, 0.6), rgba(62, 39, 35, 0.6)), url('images/hero-bg.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 15px 0;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.secondary-btn {
    background-color: var(--whatsapp-green);
    color: white;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Common Section Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    background-color: #fff;
    text-align: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.about-text .subtitle {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px auto;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    font-weight: 600;
    color: var(--primary-color);
}

/* Menu Section */
.category-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 40px 0 20px 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-info {
    padding: 18px;
    text-align: center;
}

.card-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card-info .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.order-btn {
    display: inline-block;
    background-color: var(--whatsapp-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s;
}

.gallery-item img:hover {
    opacity: 0.85;
}

/* Footer & Contact */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-box p {
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.delivery-badge {
    background-color: var(--gold);
    color: black;
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--whatsapp-green);
}

.whatsapp-btn-large {
    display: inline-block;
    background-color: var(--whatsapp-green);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        gap: 15px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}
/* Hero Section Layout */
.hero {
    min-height: 85vh;
    background-color: var(--light-bg); /* ya light gradient background */
    display: flex;
    align-items: center;
    padding: 40px 8%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content Styling */
.hero-content {
    flex: 1;
    text-align: left;
}

.sub-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Right Image Styling */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    /* Optional: drop-shadow for 3D look */
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

/* Responsive (Mobile View) */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse; /* Mobile par pehle image phir text ya normal stacking */
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
}
/* --- Reviews Section Styling (Fixed Overlap) --- */
.reviews {
    background-color: #fff8f6;
    text-align: center;
    padding: 70px 8%;
}

.reviews h2 {
    font-size: 2.2rem;
    color: var(--primary-color, #d63384);
    margin-bottom: 8px; /* Clean gap below heading */
}

.section-subheading {
    color: #666;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 1rem;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(214, 51, 132, 0.08);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(214, 51, 132, 0.12);
}

.stars {
    color: #ffc107;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 1rem;
    color: #3b2314;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: #888;
}