/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-secondary: #8b0000;
    --color-dark: #1a1a1a;
    --color-light: #f9f9f9;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    --color-success: #4caf50;
    --color-warning: #ff9800;
    --color-error: #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 and 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;
}

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

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

a:hover {
    opacity: 0.8;
}

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

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    margin: 1rem auto 0;
}

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

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

.navbar__logo {
    display: flex;
    flex-direction: column;
}

.navbar__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin: 0;
}

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

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

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

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

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

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

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

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

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

.hero__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide--active {
    opacity: 1;
}

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

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

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

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.hero__button--primary:hover {
    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);
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.hero__nav:hover {
    background: rgba(255,255,255,0.3);
}

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

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

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

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

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

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

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

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

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

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

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

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

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

.about__highlight {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.about__highlight h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about__highlight ul {
    list-style: none;
}

.about__highlight li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.about__highlight li:last-child {
    border-bottom: none;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: white;
}

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

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

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

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    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;
    background: none;
    border: none;
    cursor: pointer;
}

.gallery__lightbox-prev,
.gallery__lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 40px;
    padding: 20px;
    cursor: pointer;
}

.gallery__lightbox-prev {
    left: 20px;
}

.gallery__lightbox-next {
    right: 20px;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.reviews__rating {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding-right: 2rem;
}

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

.reviews__stars {
    margin: 0.5rem 0;
}

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

.reviews__star--filled {
    color: var(--color-primary);
}

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

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

.reviews__bar {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    align-items: center;
    gap: 1rem;
}

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

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

.reviews__slider {
    overflow-x: auto;
    padding-bottom: 1rem;
}

.reviews__list {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.reviews__card {
    flex: 0 0 350px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

.reviews__user {
    display: flex;
    gap: 1rem;
}

.reviews__avatar {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.reviews__name {
    font-weight: 600;
}

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

.reviews__card-rating {
    display: flex;
}

.reviews__text {
    margin: 1rem 0;
    line-height: 1.6;
    color: var(--color-text);
}

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

.reviews__badge {
    background: var(--color-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Hours Section */
.hours {
    padding: 5rem 0;
    background: white;
}

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

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

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

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

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

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

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

.hours__popular h3 {
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.hours__status {
    color: var(--color-success);
    margin-bottom: 1rem;
}

.hours__chart {
    height: 200px;
    background: white;
    border-radius: 5px;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

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

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

.contact__item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

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

.contact__link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact__services,
.contact__payments,
.contact__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.contact__service,
.contact__payment,
.contact__amenity {
    background: var(--color-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.contact__buttons {
    display: flex;
    gap: 1rem;
}

.contact__button {
    flex: 1;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

/* Similar Section */
.similar {
    padding: 5rem 0;
    background: white;
}

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

.similar__card {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

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

.similar__name {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

.footer__links {
    list-style: none;
}

.footer__link {
    color: rgba(255,255,255,0.8);
    display: inline-block;
    padding: 0.25rem 0;
}

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

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

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

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

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

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

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

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

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

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }

    .navbar__menu--active {
        left: 0;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

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

    .reviews__rating {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-right: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

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

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

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

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__nav {
        font-size: 2rem;
        padding: 0.5rem;
    }

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

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

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

    .reviews__card {
        flex: 0 0 280px;
    }

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

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

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

    body {
        color: black;
    }
}