/* --- CSS Variables & Reset --- */
:root {
    --primary-color: #5D4037; /* Rich Brown from logo */
    --primary-dark: #3E2723;
    --secondary-color: #D7CCC8; /* Light warm cream */
    --accent-color: #D4AF37; /* Subtle Gold */
    --bg-color: #FFF8F0; /* Off-white warm background */
    --text-color: #2D2D2D;
    --text-light: #555555;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #FDF9F5;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: 15px;
}

.btn-text:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

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

.nav-links li a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.nav-links li a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-dark);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('assets/images/hero_mandhi.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(62, 39, 35, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btns .btn-secondary {
    color: white;
    border-color: white;
}

.hero-btns .btn-secondary:hover {
    background-color: white;
    color: var(--primary-dark);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
}

.feature-item span {
    font-weight: 500;
}

.about-image {
    height: 100%;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: url('assets/images/hero_mandhi.jpg') center/cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.2);
}

/* --- Menu Section --- */
.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-category {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: fit-content;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-name {
    font-weight: 500;
    flex: 1;
}

.item-price {
    font-weight: 600;
    color: var(--primary-dark);
    margin-left: 15px;
    white-space: nowrap;
}

.mt-2 {
    margin-top: 30px;
}

.menu-column-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* --- Social Proof Section --- */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.reviews-container, .ig-container {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.google-badge i {
    font-size: 2rem;
    color: #4285F4;
}

.google-badge .stars {
    color: #FBBC05;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.google-badge .score {
    font-weight: 500;
    margin-left: 10px;
    color: var(--text-light);
}

.review-card {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.reviewer h4 {
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-body);
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-card p {
    font-style: italic;
    color: var(--text-color);
}

.ig-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ig-header i {
    font-size: 1.5rem;
    color: #E1306C;
}

.ig-image-placeholder {
    width: 100%;
    height: 350px;
    background: url('assets/images/hero_mandhi.jpg') center/cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ig-image-placeholder .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.ig-image-placeholder:hover .overlay {
    opacity: 1;
}

.ig-caption {
    margin-top: 15px;
    font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: white;
}

.footer h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cccccc;
}

.footer p i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 0.9rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .social-grid, .footer-grid { grid-template-columns: 1fr; }
    .menu-categories { grid-template-columns: 1fr 1fr; }
    .image-placeholder { height: 400px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-btn { display: block; }
    
    .menu-categories { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
}
