/* CSS Variables */
:root {
    --primary-color: #c41e3a;
    --secondary-color: #2c3e50;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset/Normalize */
* {
    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;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

/* Layout Components */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

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

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

.navigation__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.navigation__menu {
    display: flex;
}

.navigation__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

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

.navigation__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.navigation__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4nosA9qlGURO4pCbtCFDUJ-bph3nF_EzRSPv59MwKAAoVdlKi1GXjBKQOacd1EfHs6fVcOMAR2RVpvCm3QWHzvvphABWWvtzwzXz9jl9-s35pzp8CJZpZZX5pcX2JhplN-rBnSP4=w408-h544-k-no') center/cover;
    filter: brightness(0.7);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.8), rgba(44, 62, 80, 0.8));
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

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

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

.hero__badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero__badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn--secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

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

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

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.about__text {
    color: var(--text-dark);
}

.about__text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.about__stat {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

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

.about__stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about__image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

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

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

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

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

.features__amenities {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.features__amenities-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.amenity {
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: 5px;
    font-size: 0.95rem;
}

/* Hours Section */
.hours {
    padding: 5rem 0;
    background: var(--bg-white);
}

.hours__content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.hours__grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hours__day:hover {
    box-shadow: var(--shadow-sm);
}

.hours__day--weekend {
    background: #f0f8ff;
}

.hours__day--closed {
    opacity: 0.7;
}

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

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

.hours__status {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    font-size: 1.25rem;
}

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

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

.hours__status--closed {
    color: var(--primary-color);
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--bg-light);
}

.reviews__summary {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.reviews__stars {
    font-size: 1.5rem;
    color: #ddd;
    margin: 0.5rem 0;
}

.star--filled {
    color: #ffc107;
}

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

.reviews__distribution {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
}

.reviews__bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviews__bar-label {
    flex: 0 0 80px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.reviews__bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.reviews__bar-fill {
    height: 100%;
    background: var(--warning-color);
    transition: var(--transition);
}

.reviews__bar-count {
    flex: 0 0 40px;
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-light);
}

.reviews__cta {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.contact__info {
    display: grid;
    gap: 2rem;
}

.contact__item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.contact__item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

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

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

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer__links-title,
.footer__services-title,
.footer__contact-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer__links-list,
.footer__services-list {
    list-style: none;
}

.footer__links-list li,
.footer__services-list li {
    margin-bottom: 0.5rem;
}

.footer__links-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__links-list a:hover {
    color: white;
}

.footer__contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact a {
    color: white;
}

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

/* UI Components */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: #a01729;
    transform: translateY(-3px);
}

.scroll-top.visible {
    display: flex;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Media Queries */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }

    .navigation__toggle {
        display: flex;
    }

    .navigation__menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        transition: var(--transition);
        opacity: 0;
    }

    .navigation__menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .navigation__list {
        flex-direction: column;
        padding: 2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

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

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

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

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

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

    .hero {
        min-height: 500px;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .about__stats {
        flex-direction: column;
    }

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

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