/* Authentic Maharashtrian Color Palette */
:root {
    --bhagwa: #E65100;        /* Deep Traditional Saffron */
    --mati: #5D4037;          /* Earthy Clay/Brown */
    --cream: #FFF8EE;         /* Warm Off-White for background */
    --white: #FFFFFF;
    --text-dark: #3E2723;     /* Very dark brown instead of harsh black */
    --text-light: #6D4C41;
    
    --font-heading: 'Yatra One', cursive;
    --font-body: 'Mukta', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Typography Enhancements */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* Header & Nav */
header {
    background-color: var(--white);
    padding: 15px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--bhagwa);
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    color: var(--bhagwa);
}

.logo span {
    color: var(--mati);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--bhagwa);
}

/* Hero Section */
.hero {
    height: 90vh;
    margin-top: 70px;
    /* You can add an image URL here later, but a deep color works beautifully too */
    background: linear-gradient(rgba(62, 39, 35, 0.8), rgba(62, 39, 35, 0.8)), url('https://images.unsplash.com/photo-1606525437679-037fa74ae18c?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.badge {
    background-color: var(--bhagwa);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.4rem;
    color: #FFD180;
    margin-bottom: 35px;
    font-weight: 400;
}

.btn {
    display: inline-block;
    background-color: var(--bhagwa);
    color: var(--white);
    padding: 12px 40px;
    font-size: 1.3rem;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid var(--bhagwa);
    transition: 0.3s;
    font-family: var(--font-heading);
}

.btn:hover {
    background-color: transparent;
    color: var(--bhagwa);
}

/* Story Section */
.story-section {
    padding: 80px 8%;
    background-color: var(--cream);
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: var(--mati);
}

.divider {
    width: 100px;
    height: 4px;
    background-color: var(--bhagwa);
    margin: 15px auto 40px auto;
    border-radius: 2px;
}

.story-text {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--bhagwa);
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.08);
}

.pillar-card h3 {
    font-size: 1.8rem;
    color: var(--bhagwa);
    margin-bottom: 15px;
}

/* Menu Section */
.menu-section {
    padding: 80px 8%;
    background-color: var(--white);
}

.menu-section .section-title {
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.menu-category {
    background-color: var(--cream);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #EFEBE9;
}

.category-title {
    font-size: 2.2rem;
    color: var(--mati);
    margin-bottom: 5px;
    border-bottom: 2px dashed var(--bhagwa);
    padding-bottom: 10px;
}

.category-note {
    font-size: 0.95rem;
    color: var(--bhagwa);
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 600;
}

.menu-item {
    margin-bottom: 25px;
}

.item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5px;
    border-bottom: 1px dotted #BCAAA4;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.item-price {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--bhagwa);
}

.item-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Contact Section */
.contact-section {
    padding: 80px 8%;
    background-color: var(--mati);
    display: flex;
    justify-content: center;
}

.contact-card {
    background-color: var(--bhagwa);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-card h2 {
    font-size: 3rem;
}

.divider-white {
    width: 80px;
    height: 3px;
    background-color: var(--white);
    margin: 15px auto 30px auto;
}

.address, .timing {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.phone {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-top: 25px;
    color: #FFF3E8;
}

/* Footer */
footer {
    background-color: #3E2723;
    color: #D7CCC8;
    text-align: center;
    padding: 25px;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .logo { font-size: 1.8rem; }
}