:root {
    --bg-color: #f2f0e9;
    --header-bg: #a41e1e; /* Dark Red */
    --card-bg: #faf7ed;
    --border-color: #e0e0e0;
    --text-primary: #1c1c1c;
    --text-secondary: #555555;
    --accent-color: #dc2626; /* Vibrant red */
    --accent-hover: #b91c1c; /* Darker red on hover */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* --- General Reset & Body --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* --- Header & Navigation --- */
header {
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--accent-hover);
    padding: 16px 8px;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f2f0e9;
    text-decoration: none;
}

.logo span {
    color: #f0f0f0;
}

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

nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    cursor: pointer;
}

nav a:hover,
nav a.active {
    color: #f2f0e9;
    text-decoration: underline;
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #f2f0e9;
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(100vh - 70px);
    padding: 0 24px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("/images/o.jpg") no-repeat center center/cover;
    filter: blur(10px);
    transform: scale(1.05);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    text-align: center;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f2f0e9;
    margin-bottom: 16px;
    text-align: center;
}

.hero h2 span {
    color: #e8e8e8;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero p1 {
    font-size: 1.25rem;
    color: #e0dede;
    max-width: 600px;
    margin-bottom: 48px;
}

.cta-button {
    display: inline-block;
    text-align: center;
    background-color: #a41e1e;
    color: #fff;
    padding: 24px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

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

/* --- General Section Styling --- */
.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--text-primary);
    text-align: center;
    padding-bottom: 16px;
    position: relative;
}

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

/* --- About Us Section (Home Page) --- */
.about-home-section {
    background-color: #f9f9f9;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-us-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- Featured Dishes Section --- */
.pinned-dishes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.dish-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--card-bg);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.dish-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.dish-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.dish-card h3 svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
    margin-right: 8px;
    vertical-align: -2px;
}

.dish-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.dish-card h4 svg {
    width: 10px;
    height: 10px;
    fill: var(--accent-color);
    margin-right: 8px;
    vertical-align: -2px;
}

.dish-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 16px;
}

/* --- Menu Page --- */
.menu-category {
    margin-bottom: 24px;
}

.menu-category h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    padding: 8px 0;
    border-bottom: 2px solid var(--accent-color);
}

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

.menu-item {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

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

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: flex-start;
}

.contact-info {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.contact-details-list p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.contact-details-list p a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-details-list p a:hover {
    color: var(--accent-color);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.hours-grid div {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-grid .day {
    font-weight: 600;
    text-align: right;
}

.hours-grid .time {
    text-align: left;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 300px;
    width: 100%;
    margin-top: 32px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hours-grid {
        grid-template-columns: 1fr;
    }
    .hours-grid .day {
        text-align: left;
    }

    .map-container {
        height: 250px;
    }

    /* ✨ UPDATED: Added more left/right padding for nicer mobile spacing */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 69px;
        left: 0;
        width: 100%;
        background-color: var(--header-bg);
        border-bottom: 1px solid var(--accent-hover);
        padding: 16px 24px; /* ← changed from 16px 8px to 16px 24px */
        text-align: center;
        box-sizing: border-box;
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    /* Add padding to menu sections on mobile */
    .menu-category {
        padding: 0 8px;
    }

    .menu-grid {
        gap: 16px;
        padding: 0 4px;
    }

    .menu-item {
        padding: 12px 8px;
    }

    .menu-item-header {
        flex-wrap: wrap;
        gap: 4px;
    }
}

/* Ensure desktop navigation is always visible */
@media (min-width: 769px) {
    nav ul {
        display: flex !important;
    }
    .hamburger {
        display: none !important;
    }
}
