/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-primary-dark: #b8935f;
    --color-secondary: #2c3e50;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-border: #e9ecef;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-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-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    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; }

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

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

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

ul {
    list-style: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

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

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

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

.navigation__brand {
    flex-shrink: 0;
}

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

.navigation__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

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

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

.navigation__menu {
    display: flex;
    gap: 2rem;
}

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

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

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

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(212, 165, 116, 0.4) 100%);
}

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

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

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.hero__reviews {
    font-size: 1.125rem;
    opacity: 0.9;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn--secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn--small {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.about__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about__text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.about__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-background-alt);
    border-radius: 25px;
    border: 1px solid var(--color-border);
}

.feature-badge__icon {
    font-size: 1.25rem;
}

.feature-badge__text {
    font-weight: 500;
}

.about__info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background-color: var(--color-background-alt);
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
}

.info-card__title {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.info-card__text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

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

.service-card {
    background-color: var(--color-background);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.service-card__list {
    list-style: none;
}

.service-card__list li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

.services__note {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border: 1px solid var(--color-warning);
}

.note-text {
    font-size: 1.125rem;
    margin: 0.5rem 0;
    color: var(--color-text);
}

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

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

.hours__card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--color-background-alt);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

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

.hours__card.today .hours__day,
.hours__card.today .hours__time {
    color: white;
}

.hours__day {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.hours__time {
    font-size: 1rem;
    color: var(--color-text-light);
}

.hours__status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-success);
    animation: pulse 2s infinite;
}

.hours__status.closed {
    background-color: var(--color-danger);
    animation: none;
}

.hours__current {
    text-align: center;
    padding: 1.5rem;
}

.hours__current-status {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-success);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
}

.hours__current-status.closed {
    background-color: var(--color-danger);
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: var(--color-background-alt);
}

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

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

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.reviews__total {
    color: var(--color-text-light);
    margin-top: 1rem;
}

.reviews__distribution {
    padding: 2rem;
}

.distribution__row {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.distribution__label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

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

.distribution__count {
    text-align: right;
    font-weight: 600;
    color: var(--color-text);
}

.reviews__popular {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--color-background);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    font-weight: 500;
    color: var(--color-text);
}

.reviews__cta {
    text-align: center;
}

/* Rating Stars */
.rating-stars {
    display: inline-flex;
    gap: 0.25rem;
}

.rating-stars.large .star {
    font-size: 1.5rem;
}

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

.star::before {
    content: '★';
}

.star:not(.empty):not(.half) {
    color: #ffc107;
}

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

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

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--color-background);
}

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

.contact__info {
    display: grid;
    gap: 2rem;
}

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

.contact__label {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.contact__value {
    font-size: 1.125rem;
    color: var(--color-text);
    font-style: normal;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 450px;
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    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__title {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.footer__desc,
.footer__address {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

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

.footer__list a {
    color: white;
    opacity: 0.8;
}

.footer__list a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer__today,
.footer__status {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.footer__copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

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

.scroll-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

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

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

    .navigation__toggle {
        display: block;
    }

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

    .navigation__menu.active {
        left: 0;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

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

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

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

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

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

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

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

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

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

/* Print Styles */
@media print {
    .navigation,
    .hero__buttons,
    .scroll-top,
    .footer__visit {
        display: none;
    }

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

    body {
        font-size: 12pt;
    }
}