/* CSS Variables */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffc107;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #6c757d;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;

    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;

    --transition-speed: 0.3s;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light-color);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: transform var(--transition-speed);
}

.nav.nav--hidden {
    transform: translateY(-100%);
}

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

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

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

.nav__toggle-bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition-speed);
}

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

.nav__link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    overflow: hidden;
}

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

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

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.7));
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero__rating {
    margin-bottom: 2rem;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.rating__stars {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.rating__value {
    font-size: 1.3rem;
    font-weight: bold;
}

.rating__count {
    opacity: 0.9;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed);
    display: inline-block;
}

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

.btn--primary:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

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

.btn--secondary:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.scroll-down {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-color);
    border-radius: 20px;
    position: relative;
}

.scroll-down__arrow {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--light-color);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 20% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.feature {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.feature:hover {
    transform: translateY(-10px);
}

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

.feature__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature__text {
    color: var(--gray-color);
}

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

.menu-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    border-left: 4px solid var(--primary-color);
}

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

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.menu-item__name {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-family: var(--font-secondary);
}

.menu-item__price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    white-space: nowrap;
}

.menu-item__description {
    color: var(--gray-color);
    line-height: 1.6;
}

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

.info-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.info-box__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-box__text {
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    background: var(--light-gray);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--light-color);
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

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

.gallery__icon {
    color: var(--light-color);
    font-size: 3rem;
}

/* Reviews Section */
.reviews__summary {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.rating-summary {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.rating-summary__score {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-summary__value {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.rating-summary__stars {
    color: var(--accent-color);
    font-size: 2rem;
}

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

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

.rating-bar__track {
    flex: 1;
    height: 10px;
    background: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 1s ease-out;
}

.rating-bar__count {
    width: 30px;
    text-align: right;
    color: var(--gray-color);
}

.reviews__list {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.review {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

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

.review__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review__rating {
    display: flex;
    gap: 0.5rem;
}

.review__stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.review__date {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.review__text {
    color: var(--dark-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review__translated {
    color: var(--gray-color);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.review__response {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 3px solid var(--primary-color);
}

.review__response-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.review__response-text {
    color: var(--dark-color);
}

.review__images {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.review__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform var(--transition-speed);
}

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

.review__details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.review__detail {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Hours Section */
.hours {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
}

.hours .section-title {
    color: var(--light-color);
}

.hours__content {
    max-width: 700px;
    margin: 0 auto;
}

.hours__list {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours__item:last-child {
    border-bottom: none;
}

.hours__day {
    font-weight: 600;
}

.hours__time {
    opacity: 0.9;
}

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

.badge {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

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

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact__label {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.contact__text--link {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact__map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    min-height: 400px;
}

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

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

.footer__logo {
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer__tagline {
    opacity: 0.8;
}

.footer__info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer__info a {
    color: var(--light-color);
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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: 90vh;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    color: var(--light-color);
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-speed);
}

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

.lightbox__close {
    top: 2rem;
    right: 2rem;
}

.lightbox__prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--box-shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed);
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__item {
        text-align: center;
    }

    .nav__link {
        display: block;
        padding: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .lightbox__close {
        top: 1rem;
        right: 1rem;
    }

    .lightbox__prev {
        left: 1rem;
    }

    .lightbox__next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .menu-item__header {
        flex-direction: column;
        align-items: start;
    }

    .review {
        padding: 1.5rem;
    }

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

/* Animations on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}