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

:root {
    --shack-green: rgb(0, 102, 73);
    --shack-green-hover: rgb(0, 85, 61);
    --shack-red: rgb(165, 8, 42);
    --text-dark: #2c3e50;
    --text-light: #6b7280;
    --bg-light: #fafafa;
    --bg-cream: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

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

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.nav-logo img {
    height: 48px;
    width: auto;
    animation: pulse-scale 3s ease-in-out infinite;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

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

.nav-phone {
    color: var(--white) !important;
}

.navbar.scrolled .nav-phone {
    color: var(--text-dark) !important;
}

.btn-order {
    background-color: var(--shack-green);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background-color: var(--shack-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 32px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-block;
    background-color: var(--shack-green);
    color: var(--white);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    background-color: var(--shack-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--shack-green);
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 48px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

/* Our Story Section */
.story-section {
    padding: 96px 24px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
    align-items: start;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 12px;
    font-size: 14px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--shack-red);
    font-weight: 500;
    margin-top: 16px;
}

/* Locals Love Section */
.locals-love {
    padding: 96px 24px;
    background-color: var(--white);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.dish-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dish-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-card h3 {
    font-size: 22px;
    color: var(--shack-green);
    padding: 20px 20px 12px;
    font-weight: 600;
}

.dish-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.btn-menu {
    display: block;
    background-color: var(--shack-green);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-menu:hover {
    background-color: var(--shack-green-hover);
}

/* Testimonials Section */
.testimonials {
    padding: 96px 24px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.quote-icon {
    font-size: 64px;
    line-height: 1;
    color: #93c5fd;
    font-family: Georgia, serif;
    margin-top: -10px;
}

.stars {
    color: #991b1b;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--shack-green);
    font-size: 15px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.google-review {
    color: var(--text-light);
    font-size: 12px;
}

.cta-box {
    text-align: center;
    margin-top: 64px;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    border-radius: 16px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cta-highlight {
    font-size: 28px;
    font-weight: 600;
    color: var(--shack-red);
}

/* Visit Us Section */
.visit-section {
    padding: 96px 24px;
    background-color: var(--white);
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    margin-top: 48px;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: #f9fafb;
    padding: 24px 24px 24px 48px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-left: 28px;
}

.info-icon {
    position: absolute;
    left: -28px;
    top: 24px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shack-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-card:nth-child(1) .info-icon {
    background-color: #dbeafe;
}

.info-card:nth-child(2) .info-icon {
    background-color: #d1fae5;
}

.info-card:nth-child(3) .info-icon {
    background-color: #fce7f3;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 8px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.hours-highlight {
    color: var(--shack-red);
    font-weight: 600;
}

.info-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.info-content a {
    color: var(--shack-green);
    text-decoration: none;
    font-weight: 600;
}

.info-content a:hover {
    text-decoration: underline;
}

.btn-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--shack-green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background-color: var(--shack-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.visit-map {
    background-color: var(--white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.visit-map iframe {
    border: 2px solid #7dd3fc !important;
    border-radius: 8px !important;
}

.map-note {
    text-align: center;
    margin-top: 12px;
    color: var(--text-dark);
    font-size: 14px;
}

/* Final CTA Section */
.final-cta {
    padding: 96px 24px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    color: var(--shack-green);
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--shack-green);
    color: var(--white);
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

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

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

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-lg);
        padding: 16px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 24px;
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-toggle {
        display: flex;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit-content {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 36px;
    }

    .final-cta p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .btn-hero {
        padding: 14px 32px;
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .story-quote {
        font-size: 20px;
    }

    .nav-logo img {
        height: 40px;
    }
}
