/* CSS Variables */
:root {
    --primary-color: #e63946;
    --primary-dark: #c5303d;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --dark-bg: #1a1a1a;
    --dark-surface: #2d2d2d;
    --light-bg: #ffffff;
    --light-surface: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1140px;
    --container-padding: 20px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: inherit;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

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

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

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

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

.btn--secondary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--container-padding);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.navbar__logo-icon {
    font-size: 2rem;
}

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

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

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

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

.navbar__link--cta {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
}

.navbar__link--cta::after {
    display: none;
}

.navbar__link--cta:hover {
    background-color: var(--primary-dark);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.navbar__toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-light);
    transition: all var(--transition-base);
}

/* Hero */
.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;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

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

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__rating {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
}

.rating__stars {
    color: #ffd700;
    font-size: 1.5rem;
}

.rating__score {
    font-size: 1.5rem;
    font-weight: 700;
}

.rating__count {
    opacity: 0.8;
}

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

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.hero__scroll-icon {
    font-size: 2rem;
    margin-top: 8px;
}

/* About */
.about__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about__text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about__text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
}

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

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

.feature p {
    color: var(--text-muted);
}

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

.stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    color: var(--text-light);
}

.stat__number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Menu */
.menu__categories {
    display: grid;
    gap: 40px;
}

.menu-category__title {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.menu-category__items {
    display: grid;
    gap: 24px;
}

.menu-item {
    background-color: var(--dark-surface);
    padding: 24px;
    border-radius: 12px;
    transition: transform var(--transition-base);
}

.menu-item:hover {
    transform: translateX(8px);
}

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

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

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

.menu-item__description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

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

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.875rem;
}

.tag--vegetarian {
    background-color: #2ecc71;
}

.menu__note {
    margin-top: 40px;
    padding: 24px;
    background-color: var(--dark-surface);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.menu__note p {
    margin-bottom: 12px;
}

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

/* Gallery */
.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__filter {
    padding: 10px 24px;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.gallery__filter:hover,
.gallery__filter--active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: transform var(--transition-base);
}

.gallery__item:hover {
    transform: scale(1.05);
}

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

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

.gallery__item.hidden {
    display: none;
}

/* Reviews */
.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--dark-surface);
    border-radius: 16px;
}

.reviews__overall {
    text-align: center;
}

.reviews__score {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 16px;
}

.reviews__stars {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 12px;
}

.reviews__count {
    opacity: 0.8;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.rating-bar__label {
    min-width: 40px;
    font-weight: 600;
}

.rating-bar__track {
    flex: 1;
    height: 12px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 6px;
    transition: width var(--transition-slow);
}

.rating-bar__count {
    min-width: 40px;
    text-align: right;
    opacity: 0.8;
}

.reviews__list {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background-color: var(--dark-surface);
    padding: 24px;
    border-radius: 12px;
}

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

.review-card__rating {
    color: #ffd700;
    font-size: 1.25rem;
}

.review-card__date {
    opacity: 0.7;
    font-size: 0.875rem;
}

.review-card__text {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.review-card__context {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.context-tag {
    padding: 6px 12px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.875rem;
}

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

.review-detail {
    font-size: 0.875rem;
    opacity: 0.9;
}

.review-card__meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.review-meta__badge {
    padding: 4px 10px;
    background-color: var(--primary-color);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.review-meta__reviews {
    opacity: 0.7;
    font-size: 0.875rem;
}

.reviews__tags {
    text-align: center;
}

.reviews__tags h3 {
    margin-bottom: 20px;
}

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

.tag-item {
    padding: 8px 16px;
    background-color: var(--dark-surface);
    border-radius: 20px;
    font-size: 0.95rem;
}

/* Order */
.order__platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.platform-card {
    background-color: var(--light-surface);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.platform-card__icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.platform-card__name {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.platform-card__description {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.platform-card__cta {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.order-feature {
    text-align: center;
    padding: 24px;
}

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

.order-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.order-feature p {
    color: var(--text-muted);
}

/* Hours */
.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.hours__day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: var(--dark-surface);
    border-radius: 8px;
}

.hours__day--closed {
    opacity: 0.6;
}

.hours__day-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.hours__day-time {
    color: var(--secondary-color);
    font-weight: 600;
}

.hours__chart h3 {
    margin-bottom: 12px;
}

.hours__chart-note {
    opacity: 0.7;
    margin-bottom: 30px;
}

.peak-hours {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.peak-hour {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    gap: 16px;
    align-items: center;
}

.peak-hour__day {
    font-weight: 600;
}

.peak-hour__bar {
    height: 24px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.peak-hour__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    transition: width var(--transition-slow);
}

.peak-hour__label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

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

.contact__card {
    padding: 24px;
    background-color: var(--light-surface);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact__card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact__card p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

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

.contact__map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact__actions {
    margin-top: 24px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.footer__col p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.footer__col h4 {
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.footer__links a {
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.footer__bottom p {
    margin-bottom: 8px;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

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

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

.lightbox.active {
    display: flex;
}

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

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background-color: rgba(255,255,255,0.1);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background-color: rgba(255,255,255,0.2);
}

.lightbox__close {
    top: 30px;
    right: 30px;
}

.lightbox__prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

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

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

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

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

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

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

@media (max-width: 767px) {
    :root {
        --container-padding: 16px;
    }

    .section {
        padding: 60px 0;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Navbar Mobile */
    .navbar__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }

    .navbar__menu.active {
        transform: translateX(0);
    }

    .navbar__menu li {
        width: 100%;
    }

    .navbar__link {
        display: block;
        padding: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .navbar__link::after {
        display: none;
    }

    .navbar__toggle {
        display: flex;
    }

    /* Hero Mobile */
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    /* Gallery Mobile */
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer__content {
        grid-template-columns: 1fr;
    }

    .lightbox__close,
    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox__close {
        top: 20px;
        right: 20px;
    }

    .lightbox__prev {
        left: 20px;
    }

    .lightbox__next {
        right: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero__scroll,
    .scroll-top,
    .lightbox {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}