/* CSS Variables */
:root {
    --color-primary: #ff6b35;
    --color-primary-dark: #e55a2b;
    --color-secondary: #2d3436;
    --color-accent: #fdcb6e;
    --color-background: #ffffff;
    --color-surface: #f8f9fa;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-border: #e1e4e8;
    --color-success: #00b894;
    --color-warning: #fdcb6e;
    --color-error: #d63031;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: 'Georgia', serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    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;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

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

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn__icon {
    fill: currentColor;
    flex-shrink: 0;
}

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

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

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

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

.btn--large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

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

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

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

.navbar__brand {
    display: flex;
    align-items: center;
}

.navbar__title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-primary);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

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

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

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

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

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__image.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero__content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.hero__badge-icon {
    fill: var(--color-accent);
}

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

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    position: relative;
}

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

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--color-surface);
}

.about__container {
    display: grid;
    gap: 3rem;
}

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

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

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

.feature-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    fill: var(--color-primary);
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

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

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

.info-item__label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.info-item__value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: white;
}

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

.service-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.service-item:hover {
    background-color: var(--color-surface);
}

.service-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    fill: var(--color-primary);
}

.service-item__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--color-surface);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    aspect-ratio: 16/9;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery__item-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.gallery__load-more {
    display: block;
    margin: 0 auto;
    padding: 12px 32px;
    background-color: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery__load-more:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: white;
}

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

.reviews__rating {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.reviews__stars {
    margin: 0.5rem 0;
}

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

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

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

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

.rating-bar {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 1rem;
}

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

.rating-bar__track {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

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

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

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

.reviews__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

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

.review-card__rating {
    display: flex;
    gap: 2px;
}

.review-card__rating .star {
    font-size: 1rem;
}

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

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

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

.review-card__badge,
.review-card__price,
.review-card__service,
.review-card__meal,
.review-card__wait {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--color-surface);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--color-text-light);
}

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

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
}

.reviews__nav:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.reviews__nav svg {
    fill: currentColor;
}

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

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

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--color-surface);
}

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

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

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

.contact__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
    margin-top: 4px;
}

.contact__label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.contact__value {
    font-size: 1.125rem;
}

.contact__value a {
    color: var(--color-text);
}

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.hours-item.closed .hours-time {
    color: var(--color-error);
}

.hours-day {
    font-weight: 500;
}

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

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

.contact__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background-color: 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 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.footer__heading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

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

.footer__info p,
.footer__contact p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.footer__contact a {
    color: rgba(255,255,255,0.9);
}

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

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

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition-base);
}

.footer__social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer__social-link svg {
    fill: white;
}

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

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

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

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

    .navbar__menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
    }

    .navbar__menu.active {
        left: 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

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

    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

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

    .hero {
        height: 80vh;
        min-height: 500px;
    }

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

    .hero__actions {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .hero__actions .btn {
        width: 100%;
    }

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

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

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

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

    .contact__actions {
        flex-direction: column;
    }

    .contact__actions .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero__actions,
    .gallery__load-more,
    .reviews__nav,
    .footer__social {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        margin-top: 0;
    }

    .hero__background {
        position: static;
    }

    .hero__image {
        position: static;
        opacity: 1;
    }
}