/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-light: #ffffff;
    --background-section: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.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-color: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero__slider {
    position: relative;
    height: 100%;
}

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

.hero__slide.active {
    opacity: 1;
}

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

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

.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;
    font-weight: 300;
}

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

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

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

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--background-section);
}

.about__content {
    max-width: 900px;
    margin: 0 auto;
}

.about__text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

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

.feature {
    text-align: center;
    padding: 2rem 1rem;
    background-color: white;
    border-radius: 10px;
    transition: var(--transition-fast);
}

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

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

.feature__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card__text {
    color: var(--text-secondary);
}

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

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

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

.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-medium);
}

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

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

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

.reviews__rating {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-section);
    border-radius: 10px;
}

.reviews__score {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

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

.reviews__distribution {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

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

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

.distribution__bar {
    flex: 1;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.reviews__carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.reviews__list {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 350px;
    padding: 2rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

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

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

.review-card__text {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

.review-badge {
    padding: 0.25rem 0.75rem;
    background-color: var(--background-section);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.review-card__ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

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

.carousel__nav--prev {
    left: 0;
}

.carousel__nav--next {
    right: 0;
}

.reviews__tags {
    text-align: center;
    margin-top: 3rem;
}

.reviews__tags-title {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tag {
    padding: 0.5rem 1rem;
    background-color: var(--background-section);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.hours__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.hours__schedule {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
}

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

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

.hours__row--extended {
    background-color: #fff9f0;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hours__day {
    font-weight: 600;
}

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

.hours__busy {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
}

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

.hours__busy-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.busy-chart {
    display: flex;
    align-items: flex-end;
    height: 150px;
    gap: 2px;
}

.busy-bar {
    flex: 1;
    background-color: var(--primary-color);
    opacity: 0.7;
    border-radius: 2px 2px 0 0;
    transition: opacity 0.3s ease;
}

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

/* Order Section */
.order {
    padding: 80px 0;
}

.order__subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

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

.order__platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.order__platform:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.platform__logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.platform__action {
    color: var(--primary-color);
    font-weight: 600;
}

/* Amenities Section */
.amenities {
    padding: 80px 0;
    background-color: var(--background-section);
}

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

.amenity {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
}

.amenity__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.amenity__title {
    margin-bottom: 1rem;
}

.amenity__list {
    list-style: none;
    color: var(--text-secondary);
}

.amenity__list li {
    padding: 0.25rem 0;
}

.amenity__list li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

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

.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact__icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact__details h3 {
    margin-bottom: 0.5rem;
}

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

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

.contact__map {
    border-radius: 10px;
    overflow: hidden;
}

.contact__directions {
    text-align: center;
    margin-top: 2rem;
}

.open-status {
    font-weight: 600;
    color: #4CAF50;
}

.open-status.closed {
    color: #f44336;
}

/* Also Search Section */
.also-search {
    padding: 80px 0;
    background-color: var(--background-section);
}

.also-search__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.also-search__item {
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.also-search__item:hover {
    box-shadow: var(--shadow-md);
}

.also-search__item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

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

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

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

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

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

/* Star Rating */
.stars {
    position: relative;
    display: inline-block;
    color: #ddd;
}

.stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
}

.stars::after {
    content: "★★★★★";
    letter-spacing: 3px;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    overflow: hidden;
}

.stars[data-rating="5"]::after { width: 100%; }
.stars[data-rating="4.5"]::after { width: 90%; }
.stars[data-rating="4.1"]::after { width: 82%; }
.stars[data-rating="4.3"]::after { width: 86%; }
.stars[data-rating="4.2"]::after { width: 84%; }
.stars[data-rating="4"]::after { width: 80%; }
.stars[data-rating="3.9"]::after { width: 78%; }
.stars[data-rating="3.5"]::after { width: 70%; }
.stars[data-rating="3.2"]::after { width: 64%; }
.stars[data-rating="3"]::after { width: 60%; }
.stars[data-rating="2"]::after { width: 40%; }
.stars[data-rating="1"]::after { width: 20%; }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar__menu {
        gap: 1.5rem;
    }

    .hero__title {
        font-size: 3rem;
    }

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

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

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .navbar__menu.active {
        left: 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

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

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

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

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

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

    .order__platforms {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

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

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

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

    .hero__title {
        font-size: 1.75rem;
    }

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

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

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

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

    .hero {
        height: auto;
        min-height: auto;
        margin-top: 0;
    }

    .hero__overlay {
        position: static;
        background: none;
    }

    .hero__content {
        color: var(--text-primary);
    }

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