/* CSS Variables */
:root {
    --primary-color: #d4691f;
    --primary-dark: #b85315;
    --primary-light: #f08a3d;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #fff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --font-serif: 'Georgia', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 80px 0;
}

.section--dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section--dark .section-title {
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section--dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav.scrolled {
    background-color: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--order {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 50px;
}

.nav__link--order::after {
    display: none;
}

.nav__link--order:hover {
    background-color: var(--primary-dark);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(212,105,31,0.4));
    z-index: -1;
}

.hero__content {
    text-align: center;
    color: var(--text-white);
    z-index: 1;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 1.25rem;
    color: #ddd;
}

.star.filled {
    color: #ffd700;
}

.star.half {
    background: linear-gradient(90deg, #ffd700 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__rating-text {
    font-size: 1rem;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

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

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll a {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 25px;
    position: relative;
}

.hero__scroll span {
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--text-white);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* About Section */
.about__content {
    max-width: 900px;
    margin: 0 auto;
}

.about__description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-light);
}

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

.feature {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

/* Highlights Section */
.highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.highlight-card {
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.highlight-card:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-8px);
}

.highlight-card__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.highlight-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-card__text {
    color: rgba(255,255,255,0.8);
}

/* Menu Section */
.menu__content {
    max-width: 900px;
    margin: 0 auto;
}

.menu__category {
    margin-bottom: 48px;
}

.menu__category-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

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

.menu-item {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.menu-item__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.menu-item__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-item__description {
    color: var(--text-light);
    margin-bottom: 12px;
}

.menu-item__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge--green {
    background-color: #27ae60;
}

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

.menu__options {
    margin-top: 48px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.menu__options-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.menu__badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.menu__cta {
    text-align: center;
    margin-top: 48px;
}

/* Reviews Section */
.reviews__summary {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.reviews__summary-rating {
    text-align: center;
}

.reviews__summary-score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 8px;
}

.reviews__summary-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.reviews__summary-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 300px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-bar__label {
    font-size: 0.875rem;
    width: 30px;
}

.rating-bar__bg {
    flex: 1;
    height: 8px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-bar__count {
    font-size: 0.875rem;
    width: 40px;
    text-align: right;
}

.reviews__slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 0;
}

.reviews__track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(50% - 12px);
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 12px;
    scroll-snap-align: start;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.review-card__stars {
    display: flex;
    gap: 4px;
}

.review-card__date {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.review-card__text {
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.9);
}

.review-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.review-card__detail {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.review-card__ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-rating {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.2);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
    z-index: 10;
}

.reviews__arrow:hover {
    background-color: rgba(255,255,255,0.3);
}

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

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

/* Gallery Section */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery__item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 300;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__close:hover {
    transform: scale(1.2);
}

.lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-white);
    font-size: 4rem;
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__arrow:hover {
    background-color: rgba(255,255,255,0.2);
}

.lightbox__arrow--prev {
    left: 40px;
}

.lightbox__arrow--next {
    right: 40px;
}

/* Contact Section */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.contact__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact__card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.contact__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.contact__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact__text {
    color: var(--text-light);
    line-height: 1.6;
}

.contact__text a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact__text a:hover {
    text-decoration: underline;
}

.contact__link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.contact__link:hover {
    text-decoration: underline;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opening-hours__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.875rem;
}

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

.opening-hours__time {
    font-weight: 600;
    color: var(--text-dark);
}

.contact__map {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.contact__payment {
    text-align: center;
}

.contact__payment-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-method {
    padding: 12px 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
}

/* Order Section */
.order__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.order__title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.order__text {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
}

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--text-white);
    padding: 60px 0 24px;
}

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

.footer__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.footer__text {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer__subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__links li {
    color: rgba(255,255,255,0.7);
}

.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);
}

/* Responsive */
@media (max-width: 1023px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

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

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

    .review-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .section {
        padding: 60px 0;
    }

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

    .about__features,
    .highlights__grid {
        grid-template-columns: 1fr;
    }

    .reviews__summary {
        flex-direction: column;
        gap: 24px;
    }

    .reviews__arrow {
        display: none;
    }

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

    .order__buttons {
        flex-direction: column;
    }

    .lightbox__arrow {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox__arrow--prev {
        left: 10px;
    }

    .lightbox__arrow--next {
        right: 10px;
    }
}