/* CSS Variables */
:root {
    --primary-color: #c1272d;
    --primary-dark: #a01f24;
    --secondary-color: #f4a261;
    --dark-bg: #1a1a1a;
    --light-bg: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #f5f5f5;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-700: #495057;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-top: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--light-bg);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

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

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

.navbar__menu a:hover::after {
    width: 100%;
}

.btn-order {
    background: var(--primary-color);
    color: var(--light-bg) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    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%;
}

.hero__image-slider {
    position: relative;
    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-in-out;
}

.hero__slide.active {
    opacity: 1;
}

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

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
}

.hero__rating-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193,39,45,0.4);
}

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

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

.hero__arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--light-bg);
    background: transparent;
    border: none;
    cursor: pointer;
    animation: bounce 2s infinite;
}

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

.about__text {
    max-width: 900px;
    margin: 0 auto;
}

.about__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-700);
}

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

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature__icon {
    font-size: 2.5rem;
}

.feature h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* Specialties Section */
.specialties {
    padding: 100px 0;
}

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

.specialty-card {
    position: relative;
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.specialty-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--light-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.specialty-card__icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.specialty-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.specialty-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.specialties__price {
    text-align: center;
    margin-top: 40px;
}

.price-range {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-bg);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.service-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

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

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--gray-700);
    margin-bottom: 15px;
}

.service-card__status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gray-200);
    color: var(--gray-700);
}

.service-card--available .service-card__status {
    background: #d4edda;
    color: #155724;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__filter {
    padding: 10px 25px;
    background: var(--gray-200);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.gallery__filter:hover,
.gallery__filter.active {
    background: var(--primary-color);
    color: var(--light-bg);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery__item.hidden {
    display: none;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--gray-100);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.reviews__rating {
    text-align: center;
}

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.reviews__stars {
    font-size: 1.8rem;
    color: #ffc107;
    margin: 15px 0;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-bar span:first-child {
    min-width: 30px;
    font-weight: 600;
    color: #ffc107;
}

.bar {
    flex: 1;
    height: 12px;
    background: var(--gray-300);
    border-radius: 6px;
    overflow: hidden;
}

.bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.review-bar span:last-child {
    min-width: 40px;
    text-align: right;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.reviews__slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.review-card {
    min-width: 100%;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.review-card__rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-card__date {
    color: var(--gray-700);
    font-size: 0.9rem;
}

.review-card__text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.review-card__translated {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid var(--gray-300);
}

.review-card__details {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
}

.detail .label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail .value {
    color: #ffc107;
}

.review-card__visit {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.review-card__owner-response {
    background: var(--gray-100);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.review-card__owner-response strong {
    color: var(--primary-color);
}

.reviews__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.reviews__prev,
.reviews__next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--light-bg);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.reviews__prev:hover,
.reviews__next:hover {
    background: var(--primary-color);
    color: var(--light-bg);
}

/* Hours Section */
.hours {
    padding: 100px 0;
}

.hours__grid {
    max-width: 800px;
    margin: 0 auto;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--light-bg);
    margin-bottom: 12px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.hours__item--highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-bg);
}

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

.hours__time {
    color: var(--gray-700);
}

.hours__item--highlight .hours__time {
    color: var(--light-bg);
}

.hours__badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--light-bg);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: var(--gray-100);
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.amenity-group h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.amenity-group ul {
    list-style: none;
}

.amenity-group li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact__icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact__item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact__item p {
    color: var(--gray-700);
    line-height: 1.6;
}

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

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

.contact__plus-code {
    font-size: 0.9rem;
    margin-top: 5px;
}

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

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__brand h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer__brand p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer__rating {
    color: #ffc107;
    margin-top: 15px;
}

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

.footer__column h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer__column ul {
    list-style: none;
}

.footer__column li {
    margin-bottom: 10px;
}

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

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

.footer__bottom p {
    margin-bottom: 5px;
}

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

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255,255,255,0.2);
    color: var(--light-bg);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px 20px;
    transition: var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox__close {
    top: 20px;
    right: 20px;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

/* 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);
    }
}

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

    .hero__title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--light-bg);
        flex-direction: column;
        padding: 30px 0;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__toggle {
        display: flex;
    }

    .hero {
        margin-top: 70px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

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

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

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

    .gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

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

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

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

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