/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --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 24px rgba(0,0,0,0.2);
    --transition-base: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    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);
    border-radius: 2px;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
}

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

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

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

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: 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 20px;
}

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

.navbar__menu {
    display: flex;
    gap: 30px;
}

.navbar__link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
}

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

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

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition-base);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    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 1s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__image-wrapper {
    width: 100%;
    height: 100%;
}

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

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

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

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero__rating-text {
    font-size: 1.1rem;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero__slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Info Bar */
.info-bar {
    background: var(--bg-secondary);
    padding: 30px 0;
}

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

.info-bar__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-bar__icon {
    font-size: 2rem;
}

.info-bar__content h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-bar__content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about__text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

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

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.feature-badge__icon {
    color: var(--primary-color);
    font-weight: bold;
}

.about__services h3 {
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

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

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Specialties Section */
.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specialty-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

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

.specialty-card__header h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.specialty-card__badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.specialty-card__description {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.specialty-card__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    background: var(--bg-secondary);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Order Online Section */
.order-online {
    background: var(--bg-secondary);
}

.order-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.order-platform {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.order-platform__logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

/* Gallery Section */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

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

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

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

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal__image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-modal__close,
.gallery-modal__prev,
.gallery-modal__next {
    position: absolute;
    color: white;
    font-size: 3rem;
    background: rgba(0,0,0,0.5);
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-base);
}

.gallery-modal__close:hover,
.gallery-modal__prev:hover,
.gallery-modal__next:hover {
    background: rgba(0,0,0,0.8);
}

.gallery-modal__close {
    top: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.gallery-modal__prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: var(--radius-md);
}

.gallery-modal__next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: var(--radius-md);
}

/* Reviews Section */
.reviews__summary {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-bottom: 40px;
}

.reviews__rating {
    text-align: center;
}

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

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 300px;
}

.distribution-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.distribution-row span:first-child {
    width: 30px;
    font-size: 0.9rem;
}

.distribution-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.distribution-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.distribution-row span:last-child {
    width: 30px;
    text-align: right;
    font-size: 0.9rem;
}

.reviews__tags {
    text-align: center;
    margin-bottom: 40px;
}

.reviews__tags h3 {
    margin-bottom: 15px;
}

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

.review-tag {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.reviews__container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

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

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

.review-card__rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.review-card__badge {
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.review-card__text {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.review-card__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.badge {
    padding: 5px 10px;
    background: var(--bg-secondary);
    border-radius: 15px;
    font-size: 0.85rem;
}

.review-card__context {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.context-tag {
    padding: 5px 10px;
    background: var(--bg-secondary);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

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

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

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

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

/* Stars */
.stars {
    display: inline-flex;
}

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

.star.filled {
    color: #ffd700;
}

.star.half {
    position: relative;
}

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

/* Popular Times */
.popular-times {
    background: var(--bg-secondary);
}

.popular-times__selector {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.day-button {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    background: white;
    font-weight: 600;
    transition: var(--transition-base);
}

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

.day-button.active {
    background: var(--primary-color);
    color: white;
}

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

.chart-container {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-bottom: 15px;
}

.chart-bar {
    flex: 1;
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
    transition: var(--transition-base);
    opacity: 0.8;
}

.chart-bar:hover {
    opacity: 1;
}

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

/* Contact Section */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact__item {
    margin-bottom: 30px;
}

.contact__item h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact__item p {
    color: var(--text-secondary);
}

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

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.amenity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-icon {
    color: var(--primary-color);
    font-weight: bold;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Also Popular Section */
.also-popular {
    background: var(--bg-secondary);
}

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

.popular-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.popular-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.popular-card__rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popular-card__rating span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

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

.footer__brand h3 {
    margin-bottom: 10px;
}

.footer__brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__links h4,
.footer__contact h4 {
    margin-bottom: 15px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

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

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

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

.footer__bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

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

/* 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: 1023px) {
    .container {
        max-width: 720px;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

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

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

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

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

    .navbar__menu.active {
        left: 0;
    }

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

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

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

    .section {
        padding: 60px 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

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

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

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

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

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

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

    .review-card {
        min-width: 280px;
    }

    .popular-times__selector {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .day-button {
        min-width: 60px;
        padding: 8px 15px;
    }

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

    .hours-list li {
        font-size: 0.9rem;
    }
}

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

    .container {
        padding: 0 15px;
    }

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

    .order-platforms {
        grid-template-columns: 1fr;
    }

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

/* Print Styles */
@media print {
    .navbar,
    .hero__slider-dots,
    .gallery-modal,
    .scroll-to-top {
        display: none;
    }

    .hero {
        height: auto;
    }

    body {
        font-size: 12pt;
    }
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}