/* ===================================
   Honest Restaurant - Main Styles
   Unified styling for all pages
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --saffron: #E85D04;
    --saffron-dark: #DC2F02;
    --chili-red: #DC2F02;
    --turmeric: #F7B32B;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE4;
    --brown-deep: #2D2A26;
    --brown-light: #5C5652;
    --green-leaf: #4A7C59;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-100: #F7F7F7;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --header-height: 90px;
    --container-width: 1280px;
    --container-padding: 2rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

/* ===================================
   Reset
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--brown-deep);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   Header
   =================================== */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 70px;
    width: auto;
    border-radius: 10px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brown-deep);
    transition: color var(--transition-fast);
    position: relative;
}

.header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width var(--transition-fast);
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
    color: var(--saffron);
}

.header-nav .nav-link:hover::after,
.header-nav .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--brown-deep);
    transition: all var(--transition-fast);
}

.header-cart:hover {
    background: var(--saffron);
    color: var(--white);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--chili-red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--chili-red) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.25);
}

.header-order-btn:hover {
    background: linear-gradient(135deg, var(--chili-red) 0%, #B52A12 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.35);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-deep);
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem var(--container-padding);
}

.mobile-nav-link {
    padding: 0.75rem 0;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-order-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--chili-red) 100%);
    color: var(--white) !important;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    border-bottom: none;
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .header-logo img {
        height: 48px;
    }

    .header-order-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    background: var(--brown-deep);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 48px;
    border-radius: 8px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--turmeric);
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hour {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-hour .day {
    color: var(--gray-300);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

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

.footer-social a:hover {
    background: var(--saffron);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-links a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   Page Hero
   =================================== */

.page-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(232, 93, 4, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--brown-deep);
    margin-bottom: 1rem;
}

.page-hero-title em {
    font-style: italic;
    color: var(--saffron);
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--chili-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--brown-deep);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--saffron);
    color: var(--saffron);
}

.btn-outline {
    background: transparent;
    color: var(--saffron);
    border: 2px solid var(--saffron);
}

.btn-outline:hover {
    background: var(--saffron);
    color: var(--white);
}

/* ===================================
   Utilities
   =================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--brown-deep);
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    color: var(--saffron);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ===================================
   Mobile Menu Toggle Script
   (handled in JavaScript)
   =================================== */
