/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-dark: #2c2c2c;
    --text-light: #6c6c6c;
    --text-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --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);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Base Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 600;
}

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

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

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

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

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

.section-title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Header & Navigation */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

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

.nav__logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.nav__logo-accent {
    color: var(--primary-color);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

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

.nav__link {
    color: var(--text-dark);
    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: var(--transition);
}

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

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

.hero__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

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

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

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

.hero__title-accent {
    color: var(--primary-color);
}

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

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

.hero__rating {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn__icon {
    width: 20px;
    height: 20px;
}

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

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

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

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

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating__stars::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--primary-color) var(--rating-fill, 0%), rgba(255,255,255,0.3) var(--rating-fill, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
}

.rating__stars[data-rating="3.8"]::before {
    --rating-fill: 76%;
}

.rating__value {
    font-weight: 700;
    font-size: 1.125rem;
}

.rating__count {
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 5rem 0;
}

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

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

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

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat__icon {
    font-size: 2.5rem;
}

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

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

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

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

.feature-card__title {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-card__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Atmosphere Section */
.atmosphere {
    padding: 5rem 0;
}

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

.atmosphere__section {
    text-align: center;
}

.atmosphere__title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.atmosphere__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Payment Section */
.payment {
    padding: 3rem 0;
    background: var(--bg-light);
}

.payment__content {
    text-align: center;
}

.payment__title {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.payment__methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.payment__method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.payment__icon {
    color: var(--primary-color);
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews__rating {
    text-align: center;
}

.reviews__score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.reviews__stars::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--primary-color) var(--rating-fill, 0%), #e0e0e0 var(--rating-fill, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.reviews__stars[data-rating="3.8"]::before {
    --rating-fill: 76%;
}

.reviews__count {
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.distribution__row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.distribution__bar {
    flex: 1;
    height: 8px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.distribution__fill {
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.reviews__carousel {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
}

.reviews__container {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: calc(33.333% - 1.33rem);
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.review-card__rating::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--primary-color) var(--rating-fill, 0%), #e0e0e0 var(--rating-fill, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
}

.review-card__rating[data-rating="5"]::before { --rating-fill: 100%; }
.review-card__rating[data-rating="4"]::before { --rating-fill: 80%; }
.review-card__rating[data-rating="3"]::before { --rating-fill: 60%; }
.review-card__rating[data-rating="2"]::before { --rating-fill: 40%; }
.review-card__rating[data-rating="1"]::before { --rating-fill: 20%; }

.review-card__text {
    margin: 1rem 0;
    line-height: 1.6;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

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

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

.reviews__nav--prev {
    left: 0;
}

.reviews__nav--next {
    right: 0;
}

/* Hours Section */
.hours {
    padding: 5rem 0;
    background: var(--bg-light);
}

.hours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.hours__card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.hours__card--open {
    background: linear-gradient(135deg, var(--primary-color), #e4b584);
    color: var(--text-white);
}

.hours__day {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.hours__card--open .hours__time {
    color: var(--text-white);
}

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

.hours__status {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hours__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hours__indicator.open {
    background: #4caf50;
}

.hours__indicator.closed {
    background: #f44336;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact__item {
    display: flex;
    gap: 1.5rem;
}

.contact__icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact__label {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact__value {
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact__value--link:hover {
    color: var(--secondary-color);
}

.contact__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

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

.map {
    width: 100%;
    height: 400px;
}

.map iframe {
    border-radius: var(--radius-lg);
}

/* Similar Section */
.similar {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

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

.similar__name {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.similar__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.similar__stars::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--primary-color) var(--rating-fill, 0%), #e0e0e0 var(--rating-fill, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.similar__stars[data-rating="5"]::before { --rating-fill: 100%; }
.similar__stars[data-rating="4.3"]::before { --rating-fill: 86%; }
.similar__stars[data-rating="4.1"]::before { --rating-fill: 82%; }
.similar__stars[data-rating="3.4"]::before { --rating-fill: 68%; }

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

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

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

.footer__logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.footer__logo span {
    color: var(--primary-color);
}

.footer__description {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

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

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

.footer__copyright {
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

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

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

    .hero__title {
        font-size: 3rem;
    }

    .reviews__carousel .review-card {
        min-width: calc(50% - 1rem);
    }

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

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.active {
        right: 0;
    }

    .hero {
        margin-top: 60px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

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

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

    .reviews__carousel .review-card {
        min-width: 100%;
    }

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

    .atmosphere__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .section-header {
        margin-bottom: 2rem;
    }

    .features__grid,
    .about__stats {
        grid-template-columns: 1fr;
    }

    .payment__methods {
        flex-direction: column;
        gap: 1rem;
    }

    .payment__method {
        width: 100%;
    }
}