/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-secondary: #1a1a1a;
    --color-accent: #ff6b6b;
    --color-success: #4ecdc4;
    --color-text: #333;
    --color-text-light: #666;
    --color-background: #fff;
    --color-background-alt: #f8f8f8;
    --color-border: #e0e0e0;

    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.24);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
}

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

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

a:hover {
    color: var(--color-accent);
}

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

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

.section {
    padding: 80px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

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

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

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

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

.nav__brand {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 700;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    margin: 5px 0;
    transition: all var(--transition-fast);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    color: var(--color-text);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 73px;
    overflow: hidden;
}

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

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.hero__slide--active {
    opacity: 1;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 165, 116, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    text-align: center;
    color: white;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 16px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.rating__stars {
    display: flex;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.star {
    position: relative;
}

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

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ddd;
}

.rating__text {
    font-size: 1.125rem;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn--secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

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

.about__description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 48px;
}

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

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-background-alt);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

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

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

.feature-card__text {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background: var(--color-background-alt);
}

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

.service-item {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-item__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-item__title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

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

.services__amenities {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.amenities__title {
    text-align: center;
    margin-bottom: 32px;
}

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

.amenity-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-background-alt);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

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

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

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

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

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

.gallery__more {
    display: block;
    margin: 0 auto;
}

/* Reviews Section */
.reviews {
    background: var(--color-background-alt);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.reviews__overall {
    text-align: center;
    padding: 24px;
    border-right: 1px solid var(--color-border);
}

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

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

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

.reviews__distribution {
    padding: 24px;
}

.distribution__row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.distribution__label {
    width: 40px;
    font-weight: 600;
}

.distribution__bar {
    flex: 1;
    height: 24px;
    background: var(--color-background-alt);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.distribution__fill {
    height: 100%;
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    transition: width var(--transition-base);
}

.distribution__count {
    width: 40px;
    text-align: right;
    color: var(--color-text-light);
}

.reviews__carousel {
    position: relative;
    height: 280px;
    margin-bottom: 32px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateX(100%);
    transition: all var(--transition-base);
}

.review-card--active {
    opacity: 1;
    transform: translateX(0);
}

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

.review-card__rating {
    color: var(--color-primary);
}

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

.review-card__text {
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.review-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-background-alt);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    color: var(--color-text-light);
}

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

.reviews__prev,
.reviews__next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--color-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
}

.reviews__prev:hover,
.reviews__next:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Popular Times Section */
.popular-times__selector {
    text-align: center;
    margin-bottom: 32px;
}

.popular-times__day {
    padding: 12px 24px;
    font-size: 1rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.popular-times__day:hover {
    background: var(--color-primary);
    color: white;
}

.popular-times__chart {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.chart__bars {
    display: flex;
    align-items: flex-end;
    height: 200px;
    gap: 4px;
    margin-bottom: 16px;
}

.chart__bar {
    flex: 1;
    background: var(--color-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all var(--transition-fast);
    opacity: 0.8;
}

.chart__bar:hover {
    opacity: 1;
}

.chart__labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.popular-times__legend {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.legend__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.legend__item::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 4px;
}

.legend__item--quiet::before {
    opacity: 0.3;
}

.legend__item--moderate::before {
    opacity: 0.6;
}

.legend__item--busy::before {
    opacity: 1;
}

/* Hours Section */
.hours {
    background: var(--color-background-alt);
}

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

.hours__card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

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

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

.hours__day {
    font-weight: 600;
    margin-bottom: 8px;
}

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

.hours__card--today .hours__time {
    color: white;
    opacity: 0.9;
}

.hours__status {
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.hours__status.open {
    color: var(--color-success);
}

.hours__status.closed {
    color: var(--color-accent);
}

/* Contact Section */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact__info {
    display: grid;
    gap: 32px;
}

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

.contact__icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background-alt);
    border-radius: 50%;
}

.contact__details h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.contact__details p,
.contact__details a {
    color: var(--color-text-light);
}

.order-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.order-link:hover {
    background: var(--color-accent);
    transform: translateX(4px);
}

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

/* Related Section */
.related {
    background: var(--color-background-alt);
}

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

.related__card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

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

.related__name {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.related__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.related__rating .stars {
    color: var(--color-primary);
}

/* Footer */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: 48px 0 24px;
}

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

.footer__brand h3 {
    color: white;
    margin-bottom: 8px;
}

.footer__brand p {
    opacity: 0.8;
}

.footer__links h4,
.footer__hours h4,
.footer__contact h4 {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.footer__links ul {
    list-style: none;
}

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

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

.footer__hours p,
.footer__contact p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer__contact a {
    color: white;
    opacity: 0.8;
}

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

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

/* Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition-base);
}

.mobile-call-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.call-icon {
    font-size: 1.5rem;
}

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

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
}

.lightbox__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
}

.lightbox__prev,
.lightbox__next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: white;
    color: var(--color-secondary);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* Media Queries */
@media (max-width: 1023px) {
    .container {
        max-width: 720px;
    }

    .section {
        padding: 60px 0;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

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

    .section {
        padding: 40px 0;
    }

    /* Mobile Navigation */
    .nav__toggle {
        display: block;
    }

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

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

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

    .nav__menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-base);
    }

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

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

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    /* Mobile Grid Adjustments */
    .services__grid,
    .about__features,
    .hours__grid {
        grid-template-columns: 1fr;
    }

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

    .reviews__overall {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

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

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

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

    /* Mobile Call Button */
    .mobile-call-btn {
        display: flex;
    }

    /* Smaller headings on mobile */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .section__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero__actions,
    .gallery__more,
    .reviews__navigation,
    .mobile-call-btn,
    .footer {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
    }

    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}