/* CSS Variables */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #ffc107;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-alt: #f0f2f5;
    --border-color: #dee2e6;
    --success-color: #4caf50;
    --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;
    --max-width: 1140px;
    --border-radius: 8px;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Base Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    opacity: 0.9;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section--alt {
    background-color: var(--bg-alt);
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

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

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__brand {
    display: flex;
    flex-direction: column;
}

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

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

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

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

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

.nav__link--cta {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.nav__link--cta:hover {
    background: #b71c1c;
    opacity: 1;
}

.nav__icon {
    margin-right: 5px;
}

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

.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;
    text-align: center;
    color: var(--light-color);
    z-index: 1;
    max-width: 800px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.rating__stars {
    display: flex;
    gap: 2px;
    font-size: 1.25rem;
}

.star {
    color: #ccc;
}

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

.star--half {
    position: relative;
    color: #ccc;
}

.star--half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--secondary-color);
}

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

.hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__info {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 1.125rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__price,
.hero__status {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero__status.open {
    color: var(--success-color);
}

.hero__status.closed {
    color: #f44336;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--light-color);
    animation: bounce 2s infinite;
}

.scroll__arrow {
    width: 30px;
    height: 30px;
    margin: 10px auto;
    border-left: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
    transform: rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

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

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

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

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

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

.btn--large {
    padding: 15px 30px;
    font-size: 1.125rem;
}

.btn__icon {
    margin-right: 8px;
    font-size: 1.2em;
}

/* About Section */
.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about__card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.about__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.about__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

/* Features Section */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    display: flex;
    gap: 20px;
}

.feature__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

/* Services Section */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service {
    text-align: center;
    padding: 25px;
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service:hover {
    background: var(--light-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.service__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

/* Gallery Section */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__icon {
    font-size: 2rem;
    color: var(--light-color);
}

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

.gallery__lightbox.active {
    display: flex;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox__content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--light-color);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--light-color);
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    z-index: 2001;
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

/* Reviews Section */
.reviews__summary {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-bottom: 50px;
}

.reviews__rating {
    text-align: center;
}

.reviews__score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.reviews__count {
    color: var(--text-light);
    margin-top: 5px;
}

.reviews__distribution {
    min-width: 300px;
}

.distribution__row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.distribution__label {
    min-width: 35px;
    font-weight: 600;
}

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

.distribution__fill {
    height: 100%;
    background: var(--secondary-color);
    transition: width 1s ease;
}

.distribution__count {
    min-width: 30px;
    text-align: right;
    color: var(--text-light);
    font-size: 0.875rem;
}

.reviews__highlights {
    text-align: center;
    margin-bottom: 40px;
}

.reviews__subtitle {
    font-size: 1.125rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.reviews__tags {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    background: var(--bg-alt);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-color);
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

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

.review__card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

.review__rating {
    display: flex;
    gap: 2px;
    color: var(--secondary-color);
}

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

.review__badge {
    display: inline-block;
    padding: 3px 8px;
    background: var(--success-color);
    color: var(--light-color);
    font-size: 0.75rem;
    border-radius: 12px;
    margin-left: 10px;
}

.review__text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review__context {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.context__item {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 3px 8px;
    background: var(--bg-alt);
    border-radius: 12px;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 10;
}

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

.reviews__nav--prev {
    left: 0;
}

.reviews__nav--next {
    right: 0;
}

/* Contact Section */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact__card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.contact__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact__item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact__details strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-color);
}

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

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

.contact__details a:hover {
    text-decoration: underline;
}

.hours__list {
    margin-bottom: 20px;
}

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

.hours__item--closed {
    opacity: 0.6;
}

.hours__day {
    font-weight: 500;
}

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

.hours__note {
    font-size: 0.875rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.map__container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map__actions {
    margin-top: 20px;
    text-align: center;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), #b71c1c);
    color: var(--light-color);
    text-align: center;
}

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

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.cta__subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta__actions {
    margin-bottom: 20px;
}

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

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

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

.footer__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.footer__text {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating__stars--small {
    font-size: 1rem;
}

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

.footer__heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer__links li,
.footer__info li {
    margin-bottom: 10px;
    opacity: 0.9;
}

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

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

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

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

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

.scroll-to-top:hover {
    background: #b71c1c;
    transform: translateY(-5px);
}

/* 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 */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Media Queries */
@media (max-width: 1024px) {
    .reviews__summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .review__card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav__toggle {
        display: block;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--light-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav__menu.active {
        transform: translateX(0);
    }
    
    /* Hero */
    .hero {
        margin-top: 70px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.25rem;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__info {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    /* Reviews */
    .review__card {
        flex: 0 0 100%;
    }
    
    .reviews__carousel {
        padding: 0 20px;
    }
    
    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .btn--large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
}