/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary-color: #d4524f;
    --primary-dark: #b23d3a;
    --secondary-color: #2c3e50;
    --accent-gold: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --text-muted: #7f8c8d;
    --bg-light: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-section: #f8f9fa;
    --border-color: #e0e0e0;
    --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 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1140px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

.section {
    padding: 80px 0;
}

.section--dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

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

.section--dark .section-title {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
}

.section--dark .section-subtitle {
    color: #95a5a6;
}

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

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

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

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

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

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

.navbar__logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    font-family: Georgia, serif;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

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

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

.navbar__link {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

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

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

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

.star-full {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.star-half {
    color: var(--accent-gold);
    font-size: 1.5rem;
    opacity: 0.5;
}

.star-empty {
    color: #95a5a6;
    font-size: 1.5rem;
}

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

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

/* ========================================
   ABOUT SECTION
   ======================================== */
.about__content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.feature {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-section);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.feature__icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature__text {
    color: var(--text-muted);
}

/* ========================================
   SPECIALTIES SECTION
   ======================================== */
.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.specialty-card {
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
}

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

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

.specialty-card__description {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #bdc3c7;
}

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

.tag {
    padding: 5px 15px;
    background-color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-range {
    text-align: center;
    padding: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(255,255,255,0.2);
}

.price-range__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.price-range__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.price-range__description {
    color: #95a5a6;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.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::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

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

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews__stats {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    margin-bottom: 50px;
    padding: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
}

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

.rating-summary__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.rating-summary__stars {
    margin: 15px 0;
}

.rating-summary__count {
    color: #95a5a6;
    font-size: 1.1rem;
}

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

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

.rating-bar__label {
    min-width: 30px;
    font-size: 0.9rem;
    color: #95a5a6;
}

.rating-bar__track {
    flex: 1;
    height: 8px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), #f1c40f);
    border-radius: 4px;
    transition: width 1s ease;
}

.rating-bar__count {
    min-width: 40px;
    text-align: right;
    color: #95a5a6;
    font-size: 0.9rem;
}

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

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

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.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: #95a5a6;
    font-size: 0.9rem;
}

.review-card__text {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.review-card__ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.badge {
    padding: 5px 12px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.review-card__context {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.context-tag {
    padding: 4px 10px;
    background-color: rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    font-size: 0.8rem;
    color: #3498db;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev {
    left: 0;
}

.carousel-btn--next {
    right: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.info-card {
    background-color: var(--bg-section);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.info-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card__text {
    line-height: 1.8;
    color: var(--text-dark);
}

.info-card__phone {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.info-card__phone:hover {
    text-decoration: underline;
}

.info-card__link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-card__link:hover {
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.hours-item--closed {
    opacity: 0.5;
}

.hours-day {
    font-weight: 600;
}

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

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

.amenity-badge {
    padding: 8px 12px;
    background-color: rgba(212, 82, 79, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.contact__map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

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

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

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    color: var(--primary-color);
}

.footer__description {
    line-height: 1.8;
    color: #95a5a6;
}

.footer__heading {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.footer__list a {
    color: #95a5a6;
}

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

.footer__contact p {
    color: #95a5a6;
    margin-bottom: 10px;
}

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

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

/* ========================================
   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: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    transition: var(--transition);
}

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

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background-color: var(--primary-color);
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1023px) {
    .hero__title {
        font-size: 3rem;
    }

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

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

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

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

    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .navbar__menu.active {
        left: 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 50px 0;
    }

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

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

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

    .reviews__carousel {
        padding: 0 50px;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

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

    .lightbox__prev,
    .lightbox__next {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .lightbox__prev {
        left: 10px;
    }

    .lightbox__next {
        right: 10px;
    }

    .lightbox__close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .rating-summary__score {
        font-size: 3rem;
    }

    .reviews__carousel {
        padding: 0 40px;
    }
}