/* CSS Variables */
:root {
    --color-primary: #d4a574;
    --color-primary-dark: #b8935f;
    --color-secondary: #1a1a1a;
    --color-accent: #ff6b6b;
    --color-text: #333;
    --color-text-light: #666;
    --color-background: #fff;
    --color-background-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-star: #ffd700;

    --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 ease;
    --border-radius: 8px;

    --container-max: 1140px;
    --header-height: 70px;
}

/* 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-background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

address {
    font-style: normal;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max);
    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;
}

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

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

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

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

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

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

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

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

.btn--small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

.navigation__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.navigation__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.navigation__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

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

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

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

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

.navigation__link:hover::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: var(--header-height);
}

.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(26, 26, 26, 0.8), rgba(212, 165, 116, 0.6));
}

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

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

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

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

.star {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
}

.star::before {
    content: '★';
    font-size: 20px;
    color: var(--color-star);
}

.star.empty::before {
    color: #ddd;
}

.star.half::before {
    background: linear-gradient(90deg, var(--color-star) 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.about__text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

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

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--color-background-alt);
    border-radius: 20px;
    font-size: 0.9rem;
}

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

.about__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background-color: var(--color-background-alt);
    border-radius: var(--border-radius);
    text-align: center;
}

.info-card__title {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

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

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

.service-card__description {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--color-success);
    color: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.services__features {
    text-align: center;
}

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

.payment-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.payment-option__icon {
    font-size: 1.5rem;
}

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

.hours__content {
    max-width: 600px;
    margin: 0 auto;
}

.hours__schedule {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

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

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

.hours__day:hover {
    background-color: var(--color-background-alt);
}

.hours__day.weekend {
    background-color: #fff9f0;
}

.hours__day.current {
    background-color: #f0fff4;
    font-weight: 600;
}

.hours__day-name {
    color: var(--color-text);
}

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

.hours__status {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hours__status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-success);
    animation: pulse 2s infinite;
}

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

.hours__status-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
}

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

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

.reviews__rating {
    text-align: center;
}

.reviews__score {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.reviews__stars {
    margin-bottom: 0.5rem;
}

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

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

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

.review-bar__label {
    min-width: 70px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.review-bar__track {
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.review-bar__fill {
    height: 100%;
    background-color: var(--color-star);
    transition: width 1s ease;
}

.review-bar__count {
    min-width: 30px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-text);
}

.reviews__cta {
    text-align: center;
}

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

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

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

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

.contact__item-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.contact__item-content {
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.contact__link:hover {
    text-decoration: underline;
}

.contact__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.contact__map iframe {
    border-radius: var(--border-radius);
}

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

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

.footer__logo {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer__list {
    list-style: none;
}

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

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer__service {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer__info {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.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);
    font-size: 0.9rem;
}

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

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

.scroll-top.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

@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) {
    /* Navigation */
    .navigation__toggle {
        display: flex;
    }

    .navigation__menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .navigation__menu.active {
        right: 0;
    }

    /* Hero */
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

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

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

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

    /* Reviews */
    .reviews__summary {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    /* Hero */
    .hero__title {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
    }

    /* About */
    .about__info {
        grid-template-columns: 1fr;
    }

    /* Payment Options */
    .payment-options {
        flex-direction: column;
    }

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

    /* Contact */
    .contact__buttons {
        flex-direction: column;
    }

    .contact__buttons .btn {
        width: 100%;
    }
}