:root {
    --primary-color: #FF4500;
    /* Orange Red - Passionate */
    --secondary-color: #FF8C00;
    /* Dark Orange - Energetic */
    --bg-color: #F8F9FA;
    /* Very Light Gray/White - Clean */
    --card-bg: #FFFFFF;
    /* White Cards */
    --text-main: #2D2D2D;
    /* Dark Gray - Readable */
    --text-muted: #666666;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
    color: #1A1A1A;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.logo span {
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 600;
    color: var(--text-main);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4)), url('assets/hero_bright_celery.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 1rem;
    color: var(--text-main);
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #111;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.6);
}

.hero-content p {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Status Indicator */
.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.open .status-dot {
    background-color: #00C853;
    box-shadow: 0 0 5px #00C853;
}

.closed .status-dot {
    background-color: #FF3D00;
    box-shadow: 0 0 5px #FF3D00;
}

/* Call In / Order Section */
.call-in-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 6rem 5% 2rem;
    background-color: var(--bg-color);
    flex-wrap: wrap;
}

.order-option {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.order-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.option-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: #FFF0E6;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    display: inline-block;
}

.option-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.option-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.phone-large {
    font-size: 2rem;
    font-weight: 800;
    /* box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3); */
    color: var(--primary-color);
    display: block;
}

.btn-order {
    display: inline-block;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    transition: var(--transition);
}

.btn-order:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

/* Why Us Section */
.why-us {
    padding: 6rem 5%;
    text-align: center;
    background: var(--bg-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 10px;
    background: #FFF0E6;
    /* Light Orange Bg */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 60px;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Menu Section */
.menu-section {
    padding: 6rem 5%;
    background: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
}

/* Crop the rice menu board to only show the plate (right side) */
.rice-img {
    object-position: 85% center;
}

.menu-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.menu-info h3 {
    margin-bottom: 0.5rem;
    font-size: 2.0rem;
    color: burlywood;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-info p {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Info Section */
.info-section {
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    background: #F2F4F8;
    background-image: radial-gradient(#FF4500 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-color: #F8F9FA;
}

.info-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.hours-grid div:nth-child(odd) {
    color: var(--text-main);
    font-weight: 700;
}

.contact-details p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-details a {
    color: var(--text-main);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: white;
    padding: 3rem 5%;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid #eee;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        display: flex;
        /* Show links on mobile */
        margin-top: 1rem;
        gap: 1.2rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
        /* Allow wrapping if needed */
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
        /* Prevent text touching edges */
    }

    .hero {
        background-attachment: scroll;
        /* Fix for mobile parallax */
    }

    /* Adjust Order Blocks for Mobile */
    .call-in-section {
        padding: 3rem 1rem 1rem;
        gap: 1.5rem;
    }

    .order-option {
        min-width: 100%;
        /* Full width cards */
        padding: 2rem 1rem;
    }

    .option-title {
        font-size: 1.5rem;
    }

    .phone-large {
        font-size: 1.8rem;
        /* Fit phone number on small screens */
    }

    .menu-item {
        height: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Ensure padding is comfortable on mobile */
    .why-us,
    .menu-section,
    .info-section {
        padding: 4rem 1rem;
    }
}