/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-secondary: #8b6914;
    --color-dark: #1a1a1a;
    --color-light: #f5f5f5;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #e0e0e0;
    --color-success: #4caf50;
    --color-warning: #ff9800;
    --color-danger: #f44336;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --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);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.navbar__title {
    font-size: 1.5rem;
    margin: 0;
}

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

.navbar__toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    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;
    list-style: none;
    gap: 2rem;
}

.navbar__link {
    color: var(--color-light);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

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

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

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

.hero__content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

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

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

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

.hero__badge {
    background: rgba(212, 165, 116, 0.2);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
}

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

.hero__button {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

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

.hero__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.about__card {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

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

.about__card-title {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

.about__tag {
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.about__features {
    list-style: none;
}

.about__feature {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about__feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

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

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

.about__stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

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

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

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

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

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

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.gallery__lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.gallery__lightbox.active {
    display: flex;
}

.gallery__lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.gallery__close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

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

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

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

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

.reviews__stars {
    margin: 1rem 0;
}

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

.star.filled {
    color: #ffc107;
}

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

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

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

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

.reviews__label {
    min-width: 40px;
}

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

.reviews__fill {
    height: 100%;
    background: #ffc107;
    transition: var(--transition);
}

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

.reviews__tags {
    margin-bottom: 3rem;
}

.reviews__tags-title {
    margin-bottom: 1rem;
}

.reviews__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review__tag {
    background: var(--color-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

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

.review__card {
    min-width: 350px;
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.review__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

.review__text {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review__badges {
    display: flex;
    gap: 0.5rem;
}

.review__badge {
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.5rem;
}

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

.reviews__arrow--prev {
    left: 10px;
}

.reviews__arrow--next {
    right: 10px;
}

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

.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hours__subtitle {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hours__list {
    list-style: none;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    margin-bottom: 0.5rem;
    border-radius: 5px;
}

.hours__item--weekend {
    background: #fff9e6;
}

.hours__day {
    font-weight: 500;
}

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

.hours__status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

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

.hours__status.closed {
    background: #ffebee;
    color: var(--color-danger);
}

.hours__day-select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 5px;
}

.hours__chart {
    display: flex;
    align-items: flex-end;
    height: 150px;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.hours__bar-item {
    flex: 1;
    background: var(--color-primary);
    border-radius: 3px 3px 0 0;
    transition: var(--transition);
    position: relative;
}

.hours__bar-item:hover {
    opacity: 0.8;
}

.hours__bar-item.current {
    background: var(--color-secondary);
}

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

.hours__live-status {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #e3f2fd;
    border-radius: 5px;
    text-align: center;
}

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

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

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

.contact__card {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.contact__card-title {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact__address {
    font-style: normal;
    line-height: 1.8;
}

.contact__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.contact__icon {
    fill: var(--color-primary);
}

.contact__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    margin-bottom: 1rem;
}

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

.contact__parking {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

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

.contact__nearby {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact__subtitle {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact__nearby-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__nearby-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 5px;
}

.contact__nearby-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-light);
    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);
    margin-bottom: 1rem;
}

.footer__text {
    line-height: 1.8;
    color: #aaa;
}

.footer__links {
    list-style: none;
}

.footer__link {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.25rem 0;
}

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

.footer__bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer__copyright {
    color: #666;
}

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

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

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

.scroll-top svg {
    fill: white;
}

/* 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);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 2.5rem;
    }

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

    .hours__content,
    .contact__content {
        grid-template-columns: 1fr;
    }

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

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

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: var(--color-dark);
        flex-direction: column;
        padding: 1rem;
        transition: var(--transition);
    }

    .navbar__menu.active {
        left: 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .about__stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .review__card {
        min-width: 100%;
    }

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

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

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

    .hero__badges {
        flex-wrap: wrap;
    }

    .gallery__categories {
        flex-wrap: wrap;
    }

    .reviews__arrow {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero__actions,
    .gallery__filter,
    .reviews__arrow,
    .scroll-top {
        display: none;
    }

    .hero {
        height: auto;
    }

    .contact__map {
        height: 300px;
    }
}