/* CSS Variables */
:root {
    --primary-color: #c8102e;
    --secondary-color: #f4c430;
    --dark-color: #1a1a1a;
    --light-color: #f8f8f8;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --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;
    --border-radius: 8px;
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    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;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

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

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    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);
    border-radius: 2px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

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

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

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

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

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

.navbar__link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    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(200, 16, 46, 0.8), rgba(244, 196, 48, 0.6));
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
}

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

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.hero__badges {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

.hero__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__badge-value {
    font-size: 2rem;
    font-weight: 700;
}

.hero__badge-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.6s ease;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
    text-align: center;
}

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

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

.btn--secondary {
    background: var(--secondary-color);
    color: var(--dark-color);
}

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

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

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

/* Info Bar */
.info-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-bar__container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.status-text.closed {
    color: var(--warning-color);
}

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.about__features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

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

.feature-icon {
    width: 20px;
    height: 20px;
    fill: var(--success-color);
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

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

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

/* Services Section */
.services {
    background: white;
}

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

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

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

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

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

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

.offerings {
    margin-top: 50px;
}

.offerings__title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.offering-tag {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.offering-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.order-platforms {
    margin-top: 50px;
    text-align: center;
}

.order-platforms__title {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.platform-btn {
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

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

/* 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;
    transition: var(--transition);
    height: 250px;
}

.gallery__item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

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

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

/* Reviews Section */
.reviews {
    background: white;
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.rating-overview {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

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

.rating-stars {
    margin-top: 10px;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    display: block;
}

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

.rating-distribution {
    flex: 1;
}

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

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

.rating-bar-bg {
    flex: 1;
    height: 10px;
    background: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

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

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

.review-tags h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.review-tag {
    background: var(--light-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
}

.review-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 0 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

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

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

.review-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-context-item {
    background: white;
    padding: 3px 10px;
    border-radius: 10px;
}

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

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: #a00d26;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hours Section */
.hours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hours__card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

.day-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

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

.busy-times h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.busy-times p {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: white;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.amenities-list {
    color: var(--text-light);
    line-height: 2;
}

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

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

.similar-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.similar-card h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.similar-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.similar-rating .stars {
    color: var(--secondary-color);
}

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

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

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

.footer__brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer__price {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer ul li {
    margin-bottom: 10px;
}

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

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

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

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

.lightbox.active {
    display: flex;
}

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

.lightbox__close:hover {
    transform: scale(1.2);
}

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

.lightbox__caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal__content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal__close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal h2 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.modal p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.modal__platforms {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-btn--large {
    padding: 20px;
    font-size: 1.1rem;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

@media (max-width: 768px) {
    .navbar__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow-md);
        padding: 20px;
        flex-direction: column;
    }

    .navbar__menu.active {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

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

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

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

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__badges {
        flex-direction: column;
        gap: 20px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .info-bar__container {
        flex-direction: column;
    }

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

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

    .rating-overview {
        flex-direction: column;
    }

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

    .section {
        padding: 60px 0;
    }

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

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

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

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

    .hero {
        height: 500px;
    }

    .btn {
        width: 100%;
    }

    .platforms-grid {
        flex-direction: column;
    }

    .platform-btn {
        width: 100%;
    }
}