:root {
    --navy: #1a365d;
    --sea-green: #2d6a4f;
    --sand: #faf5e8;
    --cream: #f5efe4;
    --coral: #e63946;
    --coral-dark: #c62833;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #999;
    --white: #ffffff;
    
    --font-heading: 'Bitter', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
    
    --container: 1200px;
    --section-padding: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--sand);
    overflow-x: hidden;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--sand);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#loader-bar {
    height: 100%;
    background: var(--coral);
    width: 0%;
    transition: width 0.8s ease;
}

#loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

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

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--coral) !important;
    background: rgba(230, 57, 70, 0.08);
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-phone:hover {
    background: rgba(230, 57, 70, 0.15);
}

.nav-order {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.2s ease !important;
}

.nav-order:hover {
    background: var(--coral-dark) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../img/pexels-1155579-2410602.jpg') center/cover no-repeat;
    padding: 120px 24px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26, 54, 93, 0.7), rgba(26, 54, 93, 0.85));
}

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

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--coral-dark);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: #0f2442;
    border-color: #0f2442;
}

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

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

.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats span {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats i {
    color: var(--coral);
}

/* Section Tags */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--coral);
    margin-bottom: 16px;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--sand);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--coral);
}

.feature-card i {
    font-size: 1.5rem;
    color: var(--coral);
    margin-bottom: 12px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

/* Menu Section */
.menu {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.menu h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
}

.menu-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 56px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.menu-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.menu-item-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

.menu-item-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--coral);
    background: rgba(230, 57, 70, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.menu-item-highlight {
    background: var(--navy);
}

.menu-item-highlight h3,
.menu-item-highlight .menu-item-desc {
    color: var(--white);
}

.menu-item-highlight .menu-item-tag {
    color: var(--sand);
    background: rgba(250, 245, 232, 0.2);
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--navy);
}

.reviews h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 56px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.review-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.review-featured {
    grid-column: span 2;
    background: rgba(255,255,255,0.1);
    text-align: center;
    padding: 56px 40px;
}

.review-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--coral);
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: -8px;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card cite {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Location Section */
.location {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.location h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 48px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.address-block h3,
.hours-block h3,
.contact-block h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-block h3 i {
    color: var(--coral);
}

.address-block p {
    color: var(--gray);
}

.location-note {
    font-size: 0.9rem;
    color: var(--light-gray) !important;
    margin-top: 8px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--cream);
    color: var(--gray);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .closed {
    color: var(--coral);
    font-weight: 600;
}

.phone-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--coral);
}

.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* Order Online Section */
.order-online {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0f2442 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.order-online::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1559847844-5315695dadae?w=800&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.order-online .container {
    position: relative;
    z-index: 1;
}

.order-intro {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.order-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-order i {
    font-size: 1.25rem;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* DoorDash */
.btn-order.doordash {
    background: #ff3008;
    color: white;
}

.btn-order.doordash:hover {
    background: #e02a07;
}

/* Grubhub */
.btn-order.grubhub {
    background: #f63440;
    color: white;
}

.btn-order.grubhub:hover {
    background: #e12b38;
}

/* Postmates */
.btn-order.postmates {
    background: #000000;
    color: white;
    border: 2px solid #8200fc;
}

.btn-order.postmates:hover {
    background: #8200fc;
    border-color: #8200fc;
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 64px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
}

.footer-contact {
    color: rgba(255,255,255,0.8);
}

.footer-contact a {
    color: var(--coral);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s ease;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
        order: -1;
    }
    
    .order-links {
        flex-direction: column;
    }
    
    .order-btn {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-sub {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
}
