/* CSS Variables */
:root {
    --primary-color: #d4202a;
    --secondary-color: #ffc107;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #6c757d;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --overlay-color: rgba(0, 0, 0, 0.6);

    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    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: 1rem 20px;
}

.navbar__logo h1 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

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

.navbar__menu {
    display: flex;
    gap: 30px;
}

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

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

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

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4npxp-o8ypvLVrnWL2bJBMMH7qohDB6LXc5A5TSisqae31VvH0AtsHWkoqVgoBOKtpDfCj-xMZZLwhsnvapKlQJ-rKFQD3bc-O-fI51ND8VJCREbCz9jHHdLoLQWXkAvQnqT4nFY=w1920-h1080-k-no');
    background-size: cover;
    background-position: center;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

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

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

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

.hero__title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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

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

.rating-stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 1.5rem;
    color: #ddd;
}

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

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

.rating-text {
    font-size: 1.1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn--primary:hover {
    background-color: transparent;
    border-color: var(--light-color);
    transform: translateY(-2px);
}

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

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

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.about__info h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.feature-card {
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

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

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.feature-card p {
    color: var(--gray-color);
}

/* Offerings Section */
.offerings {
    background-color: var(--light-gray);
}

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

.offering-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

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

.offering-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.offering-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

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

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

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

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

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

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

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

.lightbox.active {
    display: flex;
}

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

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}

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

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

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Reviews Section */
.reviews {
    background-color: var(--light-gray);
}

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

.reviews__overview {
    text-align: center;
}

.reviews__score {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.reviews__stars {
    font-size: 2rem;
    margin: 10px 0;
}

.reviews__count {
    color: var(--gray-color);
    font-size: 1.1rem;
}

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

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

.rating-label {
    min-width: 50px;
    font-weight: 600;
}

.rating-progress {
    flex: 1;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 1s ease;
}

.rating-count {
    min-width: 40px;
    text-align: right;
    color: var(--gray-color);
}

.reviews__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag {
    padding: 8px 16px;
    background-color: var(--light-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gray-color);
    border: 1px solid var(--border-color);
}

.reviews__list {
    display: grid;
    gap: 30px;
}

.review-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.review-card__stars {
    display: flex;
    gap: 3px;
}

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

.review-card__text {
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-card__translation {
    color: var(--gray-color);
    font-style: italic;
    font-size: 0.95rem;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

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

.review-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: 15px;
    font-size: 0.9rem;
}

.review-detail strong {
    color: var(--dark-color);
}

/* Contact Section */
.contact__content {
    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__details h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

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

.contact__note {
    padding: 20px;
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.contact__note strong {
    color: var(--primary-color);
}

#map {
    width: 100%;
    height: 450px;
    background-color: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    background-image: url('https://maps.googleapis.com/maps/api/staticmap?center=41.8947107,12.4916615&zoom=15&size=600x450&markers=color:red%7C41.8947107,12.4916615&key=YOUR_API_KEY');
    background-size: cover;
    background-position: center;
}

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

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

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

.footer__info p {
    color: var(--light-gray);
    margin-bottom: 15px;
}

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

.footer h4 {
    margin-bottom: 15px;
    color: var(--light-color);
}

.footer__location p,
.footer__services ul li {
    color: var(--light-gray);
    margin-bottom: 8px;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero__title {
        font-size: 3rem;
    }

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

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

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

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

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

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

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

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero__title {
        font-size: 2rem;
    }

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

    .reviews__score {
        font-size: 3.5rem;
    }
}
