/* Color Palette */
:root {
    --dark-navy: #0D1321;
    --blue-gray: #1D2D44;
    --medium-blue: #3E5C76;
    --light-blue: #748CAB;
    --cream: #F0EBD8;
    --teal: #008EB3;
}

.highlight-teal {
    color: var(--teal);
}

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--dark-navy);
    background-color: var(--cream);
}

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

/* Header (Combined Banner + Navigation) */
.navbar {
    width: 100%;
    background-color: #231F20;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 2px solid var(--teal);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.banner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.banner-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* SAVED FOR LATER - Order Online & Facebook */
/*
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}
*/

.nav-left a,
.nav-right a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, transform 0.2s;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-blue);
    transition: width 0.3s;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

/* SAVED FOR LATER - Social Link & CTA Button Styles */
/*
.social-link {
    padding: 0.5rem !important;
    display: flex !important;
    align-items: center;
    transition: all 0.3s ease;
}

.social-link img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.15);
}

.social-link::after {
    display: none !important;
}

.cta-button {
    background: linear-gradient(135deg, var(--teal) 0%, #007A9A 100%);
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: bold;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 142, 179, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00A5D1 0%, var(--teal) 100%);
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 142, 179, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button::before {
    content: 'COMING SOON';
    position: absolute;
    top: -8px;
    right: -12px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: white;
    font-size: 0.55rem;
    padding: 3px 6px;
    border-radius: 10px;
    font-weight: bold;
    animation: pulse 2s infinite;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(255, 82, 82, 0.5);
    letter-spacing: 0.5px;
}

.cta-button::after {
    display: none !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
*/

.nav-contact-info {
    display: none;
}

.nav-cta {
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--cream);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(13, 19, 33, 0.5), rgba(13, 19, 33, 0.6)), url('images/interior/interior_01.jpeg');
    background-size: cover;
    background-position: center 15%;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 10rem 2rem;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0,0,0,0.9),
                 0 0 40px rgba(0,0,0,0.8),
                 2px 2px 8px rgba(0,0,0,0.9),
                 -2px -2px 8px rgba(0,0,0,0.7);
    letter-spacing: 1px;
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--cream);
    text-shadow: 0 0 15px rgba(0,0,0,0.9),
                 0 0 30px rgba(0,0,0,0.8),
                 2px 2px 6px rgba(0,0,0,0.9);
}

.hero-button {
    display: inline-block;
    background-color: var(--cream);
    color: var(--dark-navy);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}

.hero-button:hover {
    transform: translateY(-3px);
    background-color: var(--light-blue);
}

/* Hours Section */
.hours-section {
    background-color: var(--blue-gray);
    color: var(--cream);
    padding: 3rem 0;
    text-align: center;
}

.hours-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--dark-navy);
    border-radius: 10px;
}

.day {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.time {
    font-size: 1.5rem;
    color: var(--light-blue);
}

.hours-note {
    font-style: italic;
    color: var(--cream);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Overview Section */
.overview-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.overview-item h3 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.overview-item p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Menu Preview */
.menu-preview {
    background-color: var(--medium-blue);
    padding: 4rem 0;
    color: var(--cream);
}

.menu-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.menu-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-card {
    background-color: var(--cream);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--dark-navy);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

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

.menu-card h3 {
    font-size: 1.8rem;
    padding: 1rem 1.5rem 0.5rem;
}

.menu-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-blue);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: var(--light-blue);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.customer-name {
    font-weight: bold;
    color: var(--medium-blue);
}

.review-summary {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-navy);
}

/* News Section */
.news-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--medium-blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.news-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.read-more {
    color: var(--medium-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--light-blue);
}

/* Footer */
.footer {
    background-color: #1C1A1B;
    color: var(--cream);
    padding: 1.5rem 0 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-left {
    text-align: left;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-center img {
    width: 150px;
    height: auto;
}

.footer-right {
    text-align: right;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-blue);
}

.footer-section p {
    line-height: 1.8;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--blue-gray);
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-toggle {
        display: flex;
    }

    .nav-container {
        grid-template-columns: 1fr auto auto;
    }

    .nav-left,
    .nav-right {
        position: fixed;
        left: -100%;
        flex-direction: column;
        background-color: #231F20;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1.5rem 0;
        gap: 1.5rem;
        justify-content: center;
        z-index: 999;
    }

    .nav-left {
        top: 140px;
        border-top: 2px solid var(--teal);
    }

    .nav-right {
        top: 320px;
        border-top: 1px solid var(--medium-blue);
    }

    .nav-left.active,
    .nav-right.active {
        left: 0;
    }

    .banner-logo img {
        height: 80px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .hero {
        padding: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .banner-logo img {
        height: 70px;
    }

    .nav-left {
        top: 120px;
    }

    .nav-right {
        top: 290px;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 1.5rem;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Hours Section */
    .hours-section {
        padding: 2rem 0;
    }

    .hours-section h2 {
        font-size: 2rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hours-note {
        font-size: 1rem;
    }

    /* Overview Section */
    .overview-section {
        padding: 3rem 0;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-item h3 {
        font-size: 1.8rem;
    }

    .overview-item p {
        font-size: 1rem;
    }

    /* Menu Preview */
    .menu-preview {
        padding: 3rem 0;
    }

    .menu-preview h2 {
        font-size: 2rem;
    }

    .menu-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-card h3 {
        font-size: 1.6rem;
    }

    /* News Section */
    .news-section {
        padding: 3rem 0;
    }

    .news-section h2 {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card h3 {
        font-size: 1.3rem;
    }

    /* Testimonials / Loyalty Section */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-center img {
        width: 120px;
    }

    /* Container Padding */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .banner-logo img {
        height: 60px;
    }

    .nav-left {
        top: 105px;
    }

    .nav-right {
        top: 265px;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Section Headings */
    .hours-section h2,
    .menu-preview h2,
    .news-section h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }

    .overview-item h3 {
        font-size: 1.5rem;
    }

    /* Menu Cards */
    .menu-card img {
        height: 200px;
    }

    .menu-card h3 {
        font-size: 1.4rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 0.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* Mobile Touch Targets & Images */
@media (max-width: 768px) {
    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Larger touch targets for mobile */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Menu toggle larger on mobile */
    .menu-toggle {
        padding: 10px;
    }

    .menu-toggle span {
        width: 30px;
        height: 3px;
    }
}
