/* 1. CSS Variables */
:root {
    --color-primary: #d35400;
    --color-primary-dark: #a04000;
    --color-secondary: #27ae60;
    --color-background: #ffffff;
    --color-surface: #f8f9fa;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-border: #e0e0e0;
    --color-success: #27ae60;
    --color-warning: #f39c12;
    --color-error: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* 4. Layout Components */
.container {
    width: 100%;
    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;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.button__icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

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

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

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

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

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

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

.navigation__subtitle {
    font-size: 0.75rem;
    color: var(--color-text-light);
    display: block;
}

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

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

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

.navigation__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 30px;
}

.navigation__toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 3px;
    transition: var(--transition);
}

.navigation__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

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

.navigation__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* 6. Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    position: relative;
}

.hero__container {
    height: 100%;
}

.hero__image {
    width: 100%;
    height: calc(100vh - 80px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

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

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero__icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

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

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

.about__info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.about__info p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.about__icon {
    width: 40px;
    height: 40px;
    fill: var(--color-primary);
    flex-shrink: 0;
}

.about__feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

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

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

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

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

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

.stat-card__label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.specialty-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.specialty-card__description {
    color: var(--color-text-light);
    line-height: 1.6;
}

.specialties__price {
    text-align: center;
}

.price-indicator {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.price-indicator__label {
    font-weight: 600;
    color: var(--color-text);
}

.price-indicator__value {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

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

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

.service-category {
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: var(--border-radius);
}

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

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

.service-list__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.service-list__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.service-list__item--available .service-list__icon {
    fill: var(--color-success);
}

.service-list__item--unavailable {
    opacity: 0.5;
}

.service-list__item--unavailable .service-list__icon {
    fill: var(--color-error);
}

.services__atmosphere {
    text-align: center;
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--border-radius);
}

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

.atmosphere-tag {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    color: var(--color-text);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

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

.reviews__summary {
    margin-bottom: 3rem;
}

.rating-summary {
    text-align: center;
}

.rating-summary__score {
    display: inline-block;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

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

.star {
    width: 24px;
    height: 24px;
    fill: var(--color-border);
}

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

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

.reviews__highlights {
    margin-bottom: 3rem;
}

.reviews__highlights h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.popular-times {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popular-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.popular-time__icon {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.reviews__photos h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.reviews__photo-count {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.photo-gallery {
    text-align: center;
}

.photo-gallery__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.photo-gallery__link:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

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

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

.hours__list {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    padding: 2rem;
}

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

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

.hours__item--highlight {
    background: rgba(211, 84, 0, 0.1);
    border-radius: var(--border-radius);
    margin: 0 -1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

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

.hours__info {
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--border-radius);
}

.hours__status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

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

.hours__status-indicator.open {
    background-color: var(--color-success);
}

.hours__status-indicator.closed {
    background-color: var(--color-error);
}

.hours__status-text {
    font-weight: 600;
}

.hours__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hours__icon {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

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

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

.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.contact__details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact__details p {
    color: var(--color-text-light);
    line-height: 1.6;
}

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

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

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

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

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

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__heading {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

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

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

.footer__link:hover {
    color: white;
}

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

.footer__copyright,
.footer__address {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

/* 14. 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(39, 174, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* 15. Media Queries */
@media (max-width: 1024px) {
    .about__content,
    .hours__grid,
    .contact__content {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navigation__toggle {
        display: flex;
    }

    .navigation__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .navigation__menu.active {
        left: 0;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

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

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

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

    .hero__badges,
    .hero__actions,
    .popular-times {
        flex-direction: column;
        align-items: center;
    }

    .contact__actions {
        flex-direction: column;
    }

    .contact__actions .button {
        width: 100%;
    }
}

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

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

    .stat-card__number {
        font-size: 2rem;
    }

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

/* 16. Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}