/* ================================
   CSS VARIABLES
   ================================ */
:root {
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ef5350;
    --secondary-color: #fbc02d;
    --secondary-dark: #f9a825;
    --text-dark: #212121;
    --text-light: #757575;
    --text-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1140px;
}

/* ================================
   RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ================================
   LAYOUT COMPONENTS
   ================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

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

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

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

/* ================================
   NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.navbar__brand {
    display: flex;
    flex-direction: column;
}

.navbar__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.navbar__subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.navbar__menu {
    display: flex;
    gap: 32px;
}

.navbar__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

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

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

/* ================================
   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;
    width: 100%;
    height: 100%;
    background-image: url('https://lh3.googleusercontent.com/p/AF1QipO1Ud94OPrT9DdK6Q2T9cWk4ksZaxXia9YXSjK5=w1920-h1080-k-no');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.85) 0%, rgba(183, 28, 28, 0.7) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-white);
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 32px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

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

.star {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.3);
}

.star.filled {
    color: var(--secondary-color);
}

.stars--small .star {
    font-size: 1rem;
}

.stars--large .star {
    font-size: 2rem;
}

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

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

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-white);
    animation: bounce 2s infinite;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about__content {
    display: grid;
    gap: 60px;
}

.about__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

.feature-card {
    padding: 40px 32px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: var(--text-white);
}

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

.feature-card__text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
}

.service-item__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

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

/* ================================
   MENU HIGHLIGHTS SECTION
   ================================ */
.menu-highlights {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.menu-highlight__info {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

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

.price-range {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.price-range__label {
    font-weight: 600;
    color: var(--text-dark);
}

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

.menu-highlight__offerings {
    max-width: 600px;
    margin: 48px auto 0;
}

.menu-highlight__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.offerings-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--text-dark);
}

.offerings-list__item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

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

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

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

.gallery__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__expand {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* ================================
   REVIEWS SECTION
   ================================ */
.reviews {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.reviews__summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.reviews__score {
    text-align: center;
}

.reviews__score-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 16px;
}

.reviews__score-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 12px;
}

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

.review-bar {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 12px;
}

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

.review-bar__track {
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.review-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.review-bar__count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
}

.reviews__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 100%;
    padding: 32px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

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

.review-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-style: italic;
}

.review-card__translation {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.review-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.badge {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--bg-light);
    border-radius: 16px;
    color: var(--text-dark);
}

.badge--recommended {
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--primary-color);
}

.review-card__ratings {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.review-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-rating__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.review-card__owner-response {
    padding: 16px;
    background-color: rgba(211, 47, 47, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    z-index: 10;
}

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

.carousel__btn--prev {
    left: -24px;
}

.carousel__btn--next {
    right: -24px;
}

/* ================================
   INFO SECTION
   ================================ */
.info-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

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

.info-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

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

.info-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.info-list__item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

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

.contact__item {
    display: flex;
    gap: 20px;
}

.contact__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.contact__text {
    flex: 1;
}

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

.contact__text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

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

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-day {
    font-weight: 500;
    color: var(--text-dark);
}

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

.hours-item--closed .hours-time {
    color: var(--primary-color);
    font-weight: 600;
}

.contact__note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background-color: rgba(251, 192, 45, 0.1);
    border-left: 3px solid var(--secondary-color);
    border-radius: 4px;
}

.contact__note svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.contact__note p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--bg-light);
}

.map__link {
    display: block;
    width: 100%;
    height: 100%;
}

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

.map__fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    color: var(--primary-color);
    font-weight: 600;
}

.map__fallback svg {
    margin-bottom: 16px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    padding: 60px 0 32px;
    background-color: var(--text-dark);
    color: var(--text-white);
}

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

.footer__brand {
    max-width: 400px;
}

.footer__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.footer__description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.footer__heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-white);
}

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

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

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

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

.footer__bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.footer__note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* ================================
   LIGHTBOX
   ================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

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

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

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

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

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ================================
   MEDIA QUERIES
   ================================ */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

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

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

    .carousel__btn--prev {
        left: 8px;
    }

    .carousel__btn--next {
        right: 8px;
    }
}

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .navbar__menu.active {
        max-height: 400px;
    }

    .navbar__link {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

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

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

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

    .review-card__ratings {
        flex-direction: column;
        gap: 12px;
    }

    .contact__grid {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

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

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

    .review-card {
        padding: 20px;
    }
}