/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-primary-dark: #b8935f;
    --color-secondary: #2c3e50;
    --color-accent: #e74c3c;
    --color-success: #27ae60;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-border: #dee2e6;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-base: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

/* Base Styles */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

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

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

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

.btn--secondary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--block {
    display: block;
    width: 100%;
}

/* Layout Components */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.navbar__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-heading);
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar__link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

.navbar__link:hover::after,
.navbar__link--active::after {
    width: 100%;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 68px;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(212, 165, 116, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero__badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.hero__rating {
    font-size: 1.2rem;
    font-weight: 600;
}

.hero__reviews,
.hero__price {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.hero__nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero__nav--prev {
    left: 20px;
}

.hero__nav--next {
    right: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--color-background);
}

.about__text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.about__feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.about__feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.about__feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about__feature-title {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.about__feature-text {
    color: var(--color-text-light);
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: var(--color-background-alt);
}

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

.specialty-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.specialty-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.specialty-card__title {
    font-size: 1.25rem;
    color: var(--color-secondary);
}

.specialty-card__badge {
    background: var(--color-accent);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.badge--vegan {
    background: var(--color-success);
}

.badge--vegetarian {
    background: #3498db;
}

.specialty-card__description {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.specialty-card__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--color-background-alt);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-box__title {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.info-box__list {
    list-style: none;
}

.info-box__list li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--color-background);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.gallery__lightbox--active {
    display: flex;
}

.gallery__lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.gallery__close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    padding: 0 20px;
    cursor: pointer;
}

.gallery__nav--prev {
    left: 20px;
}

.gallery__nav--next {
    right: 20px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--color-background-alt);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.reviews__rating {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding-right: 2rem;
}

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.reviews__stars {
    margin-top: 0.5rem;
}

.reviews__stars .stars {
    font-size: 1.5rem;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-bar__track {
    flex: 1;
    height: 8px;
    background: var(--color-background-alt);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: var(--color-primary);
    transition: width 1s ease;
}

.reviews__tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.review-tag {
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--color-text-light);
}

.reviews__carousel {
    position: relative;
    min-height: 250px;
    margin-bottom: 2rem;
}

.review-card {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.review-card--active {
    display: block;
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-card__rating {
    font-size: 1.2rem;
}

.review-card__date {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.review-card__text {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-card__details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-badge {
    background: var(--color-primary);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.review-context {
    color: var(--color-text-light);
    font-size: 0.875rem;
    padding: 4px 0;
}

.reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.review-nav {
    background: var(--color-secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.review-nav:hover {
    background: var(--color-primary);
}

.review-dots {
    display: flex;
    gap: 0.5rem;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition-base);
}

.review-dot--active {
    background: var(--color-primary);
}

/* Hours Section */
.hours {
    padding: 80px 0;
    background: var(--color-background);
}

.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hours__schedule {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hours__subtitle {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

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

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.hours__item--sunday {
    color: var(--color-text-light);
}

.hours__day {
    font-weight: 500;
}

.hours__time {
    color: var(--color-text-light);
}

.hours__status {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--color-success);
    color: white;
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: 500;
}

.hours__status--closed {
    background: var(--color-accent);
}

.hours__busy {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.busy-chart {
    margin-bottom: 1.5rem;
}

.busy-chart__label {
    font-weight: 500;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 1rem;
}

.busy-chart__bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 120px;
}

.busy-bar {
    flex: 1;
    background: var(--color-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: var(--transition-base);
    position: relative;
}

.busy-bar:hover {
    opacity: 0.8;
}

.busy-bar::after {
    content: attr(data-hour);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.hours__note {
    color: var(--color-text-light);
    font-size: 0.875rem;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--color-background-alt);
}

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

.contact__info {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact__item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact__icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-background-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__details h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.contact__details p {
    color: var(--color-text-light);
}

.contact__neighborhood {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.contact__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact__suggestions {
    padding-top: 2rem;
}

.contact__subtitle {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.suggestion-card {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
}

.suggestion-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.suggestion-card h4 {
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.suggestion-card__rating {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer__badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.footer__subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    padding: 0.25rem 0;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__list a:hover {
    color: white;
}

.footer__hours p,
.footer__contact p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer__contact a {
    color: white;
    font-weight: 500;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Utilities */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

.scroll-top--visible {
    display: flex;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Media Queries */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }

    .navbar__menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-base);
    }

    .navbar__menu--active {
        left: 0;
    }

    .navbar__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .reviews__rating {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-right: 0;
        padding-bottom: 2rem;
    }

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

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

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

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

    .gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__badges {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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