/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-white: #ffffff;
    --background-light: #f8f8f8;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-white);
    overflow-x: hidden;
}

/* Base Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--accent-color);
}

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

ul {
    list-style: none;
}

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

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

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

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

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

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

.navbar__brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

.navbar__subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

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

.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;
    align-items: center;
}

.navbar__link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-base);
    padding: 0.5rem;
}

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

.navbar__cta {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.navbar__cta:hover {
    background: var(--accent-color);
    color: var(--text-white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero__slider {
    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 1s ease;
}

.hero__slide--active {
    opacity: 1;
}

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

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

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

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

.hero__stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn__icon {
    fill: currentColor;
}

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

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

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

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

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    fill: var(--text-white);
    width: 30px;
    height: 30px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-light);
}

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

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

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

.feature__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__icon svg {
    fill: var(--text-white);
}

.feature__title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: var(--background-white);
}

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

.specialty {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-base);
}

.specialty:hover {
    border-color: var(--primary-color);
    background: var(--background-light);
}

.specialty__title {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.specialty__description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.specialties__price {
    text-align: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 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-base);
}

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

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

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

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

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

.reviews__stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

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

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

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

.reviews__label {
    text-align: right;
    color: var(--text-dark);
    font-weight: 500;
}

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

.reviews__fill {
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition-base);
}

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

.reviews__carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.review {
    min-width: 100%;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
}

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

.review__rating {
    display: flex;
    gap: 0.25rem;
}

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

.review__text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.review__detail {
    padding: 0.25rem 0.75rem;
    background: var(--background-white);
    border-radius: 15px;
}

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

.reviews__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.reviews__arrow:hover {
    background: var(--accent-color);
}

.reviews__arrow svg {
    fill: var(--text-white);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--background-light);
}

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

.service {
    text-align: center;
    padding: 2rem;
    background: var(--background-white);
    border-radius: 10px;
    transition: var(--transition-base);
}

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

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

.service__title {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service__text {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

.amenity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.amenity svg {
    flex-shrink: 0;
}

.amenity--available {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--success-color);
}

.amenity--available svg {
    fill: var(--success-color);
}

.amenity--not-available {
    background: rgba(244, 67, 54, 0.1);
    border-color: var(--error-color);
}

.amenity--not-available svg {
    fill: var(--error-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-light);
}

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

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

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

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

.contact__item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact__item p {
    color: var(--text-light);
    margin: 0;
}

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

.hours {
    display: grid;
    gap: 0.5rem;
}

.hours__row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.footer__brand h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

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

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer__links h4,
.footer__order h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.footer__phone,
.footer__delivery {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    color: var(--text-white);
    transition: var(--transition-base);
}

.footer__phone:hover,
.footer__delivery:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.footer__phone svg {
    fill: currentColor;
}

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

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

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

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

.lightbox.active {
    display: flex;
}

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

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--text-white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

.lightbox__prev svg,
.lightbox__next svg {
    fill: var(--text-white);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

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

    .hero__title {
        font-size: 2.5rem;
    }

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

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

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

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

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--background-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-base);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }

    .navbar__menu.active {
        left: 0;
    }

    /* Mobile Hero */
    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Sections */
    .section-title {
        font-size: 2rem;
    }

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

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

    .gallery__item {
        height: 150px;
    }

    .reviews__bar {
        grid-template-columns: 35px 1fr 30px;
        gap: 0.5rem;
    }

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

    /* Mobile Spacing */
    .features,
    .specialties,
    .gallery,
    .reviews,
    .services,
    .amenities,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 479px) {
    /* Small Mobile */
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

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

    h3 {
        font-size: 1.25rem;
    }
}