/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #8B4513;
    --accent-color: #ff6b6b;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #6c757d;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1140px;
}

/* Reset/Normalize */
* {
    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-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

/* Base Styles */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    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: var(--primary-color);
}

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

/* Navigation */
.navigation {
    background: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

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

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

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

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

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

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

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

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

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

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

.hero__content {
    text-align: center;
    color: white;
    z-index: 1;
    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;
    opacity: 0.95;
}

.hero__rating {
    margin-bottom: 2rem;
}

.rating__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.rating__value {
    font-size: 1.5rem;
    font-weight: bold;
}

.stars {
    display: flex;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.star.half {
    position: relative;
}

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.3);
}

.rating__count {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about__description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

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

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

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

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

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

.feature-card__text {
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

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

.service-item__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

.payment-methods {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.payment-methods__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

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

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

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

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

.hours-card[data-day]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.hours-card__day {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-card__time {
    font-size: 0.9rem;
}

.hours-card__time.closed {
    color: var(--accent-color);
    font-weight: 600;
}

.status-indicator {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-indicator__badge {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator__badge.open {
    background: #28a745;
}

.status-indicator__badge.closed {
    background: #dc3545;
}

.status-indicator__text {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.reviews__overall {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.reviews__stars {
    margin: 0.5rem 0;
}

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

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

.distribution-row {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

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

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

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

.distribution-row__count {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: right;
}

.reviews__highlights {
    text-align: center;
}

.reviews__highlights-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.highlight-tag {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

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

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

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-card__icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--light-color);
    padding: 0.8rem;
    border-radius: var(--border-radius);
}

.contact-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-card__text {
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact-card__link:hover {
    text-decoration: underline;
}

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

/* Footer */
.footer {
    background: var(--dark-color);
    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(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer__heading {
    margin-bottom: 1rem;
    color: white;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__list li {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Media Queries */
@media (max-width: 1023px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

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

@media (max-width: 767px) {
    /* Navigation Mobile */
    .navigation__menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navigation__menu.active {
        transform: translateX(0);
    }

    .navigation__toggle {
        display: flex;
    }

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

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

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

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

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

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

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

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

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

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

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

@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .hero__title {
        font-size: 4rem;
    }
}