/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #8b4513;
    --dark-color: #1a1a1a;
    --light-color: #f8f8f8;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

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

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

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

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

.navbar__logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

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

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

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

.navbar__menu {
    display: flex;
    gap: 2rem;
}

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

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

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

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

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

.hero__image-main {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
}

.hero__thumbnails {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero__thumb {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero__thumb.active,
.hero__thumb:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero__badge {
    display: inline-block;
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

.rating-stars {
    display: flex;
    font-size: 1.25rem;
}

.star {
    color: #ffd700;
}

.star.partial {
    position: relative;
    color: #ddd;
}

.star.partial::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
    width: 80%;
    overflow: hidden;
}

.rating-text {
    font-size: 1rem;
}

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

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

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

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

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

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

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

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--light-color);
    transition: var(--transition);
}

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

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

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

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

.about__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-card__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.info-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-card__list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.info-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.info-card__list--icons li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 0;
}

.info-card__list--icons .icon {
    color: var(--success-color);
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--light-color);
}

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

.gallery__filter {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    height: 250px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery__item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

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

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

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

.lightbox.active {
    display: flex;
}

.lightbox__img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    color: var(--primary-color);
}

.lightbox__close {
    top: 20px;
    right: 30px;
}

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

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

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--light-color);
    border-radius: var(--radius-lg);
}

.reviews__score {
    text-align: center;
    padding: 20px;
}

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

.reviews__count {
    color: var(--text-light);
    margin-top: 10px;
}

.reviews__breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.breakdown__item {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 15px;
}

.breakdown__label {
    text-align: right;
    font-weight: 500;
}

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

.breakdown__fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 1s ease;
}

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

/* Review Carousel */
.reviews__carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.reviews__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.review-card {
    min-width: 350px;
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.review-card__rating {
    display: flex;
    color: #ffd700;
}

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

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

.review-card__details {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.review-card__details .detail {
    font-size: 0.85rem;
    padding: 4px 10px;
    background: white;
    border-radius: 15px;
    color: var(--text-light);
}

.review-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.review-card__badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 1;
}

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

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

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

/* Review Tags */
.reviews__tags {
    text-align: center;
}

.reviews__tags-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.tags-cloud {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

/* Hours & Location Section */
.hours-location {
    padding: 80px 0;
    background: var(--light-color);
}

.hours-location__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hours__list {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

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

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

.hours__day {
    font-weight: 500;
    color: var(--dark-color);
}

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

.hours__status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

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

.status-indicator.open {
    background: var(--success-color);
}

.status-indicator.closed {
    background: #f44336;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

.popular-times {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
}

.popular-times__title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.popular-times__chart {
    display: flex;
    align-items: flex-end;
    height: 100px;
    gap: 2px;
    margin-bottom: 10px;
}

.popular-times__bar {
    flex: 1;
    background: var(--primary-color);
    border-radius: 2px 2px 0 0;
    transition: var(--transition);
    position: relative;
}

.popular-times__bar.current {
    background: var(--secondary-color);
}

.popular-times__bar:hover {
    opacity: 0.8;
}

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

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location__item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
}

.location__icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.location__info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

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

.location__info a {
    color: var(--primary-color);
    font-weight: 500;
}

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

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta__features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.cta__feature svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer__text {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
}

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

.footer__links,
.footer__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a,
.footer__info li {
    color: rgba(255,255,255,0.7);
}

.footer__links a:hover {
    color: white;
}

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

.footer__hours {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer__status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    color: rgba(255,255,255,0.5);
}

.footer__badges {
    display: flex;
    gap: 10px;
}

.badge {
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

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

.scroll-top.active {
    display: flex;
}

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

.scroll-top svg {
    width: 24px;
    height: 24px;
}

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

.fade-in {
    animation: fadeInUp 0.6s ease;
}

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

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

    .hours-location__container {
        grid-template-columns: 1fr;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

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

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

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__thumbnails {
        display: none;
    }

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

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

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

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

    .carousel__btn {
        display: none;
    }

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta__features {
        gap: 20px;
    }

    .cta__feature {
        flex-basis: 45%;
    }

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

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}