/* ================================
   CSS VARIABLES
   ================================ */
:root {
    --primary-color: #d4a574;
    --primary-dark: #b8895f;
    --primary-light: #e6c9a8;
    --secondary-color: #1a1a1a;
    --secondary-light: #2d2d2d;
    --accent-color: #8b4513;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --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 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Georgia', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --container-width: 1140px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    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(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    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);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: var(--spacing-md);
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

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

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-sm);
}

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

.navbar__menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar__link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
}

.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,
.navbar__link.active::after {
    width: 100%;
}

.navbar__link--cta {
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    border-radius: 4px;
}

.navbar__link--cta::after {
    display: none;
}

.navbar__link--cta:hover {
    background: var(--primary-dark);
}

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

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

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__rating {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

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

.hero__controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.hero__control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.hero__control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ================================
   HIGHLIGHTS SECTION
   ================================ */
.highlights {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.highlight-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.highlight-card__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.highlight-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}

.highlight-card__text {
    color: var(--text-gray);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

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

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

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

.about__description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.about__features {
    margin: var(--spacing-md) 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.feature__icon {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.feature__text {
    font-size: 1.0625rem;
}

.about__atmosphere {
    margin-top: var(--spacing-md);
}

.about__atmosphere h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
}

/* ================================
   SPECIALTIES SECTION
   ================================ */
.specialties {
    background: var(--bg-light);
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.specialty-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.specialty-card__image {
    height: 250px;
    overflow: hidden;
}

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

.specialty-card:hover .specialty-card__image img {
    transform: scale(1.1);
}

.specialty-card__content {
    padding: var(--spacing-md);
}

.specialty-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.specialty-card__description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.specialty-card__tags {
    margin-top: var(--spacing-sm);
}

.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.specialties__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.info-box {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.info-box h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.price-range {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.info-detail {
    color: var(--text-gray);
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ================================
   GALLERY SECTION
   ================================ */
.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

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

.gallery__item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery__item.hidden {
    display: none;
}

.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: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.gallery__item:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

/* ================================
   REVIEWS SECTION
   ================================ */
.reviews {
    background: var(--bg-light);
}

.reviews__summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-lg);
    align-items: start;
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

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

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

.rating-summary__stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: var(--spacing-xs) 0;
}

.rating-summary__count {
    color: var(--text-gray);
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    gap: var(--spacing-sm);
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.rating-bar__label {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.rating-bar__track {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

.rating-bar__count {
    text-align: right;
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.rating-categories {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.rating-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--bg-light);
    border-radius: 4px;
}

.rating-category__label {
    font-weight: 600;
}

.rating-category__value {
    color: var(--primary-color);
    font-weight: bold;
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.review-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.review-card__stars {
    color: var(--primary-color);
    font-size: 1.25rem;
}

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

.review-card__text {
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.review-card__context {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.context-tag {
    padding: 0.375rem 0.75rem;
    background: var(--bg-light);
    border-radius: 15px;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.review-card__recommended {
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
    font-size: 0.9375rem;
}

.review-card__recommended strong {
    color: var(--secondary-color);
}

.local-guide-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.reviews__controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.reviews__control {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.reviews__control:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
}

.info-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.info-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

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

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

.info-card__text a:hover {
    text-decoration: underline;
}

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

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

.info-card__note {
    margin-top: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--text-gray);
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

.hours-time {
    color: var(--primary-color);
    font-weight: 600;
}

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

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.amenities-list li {
    padding: 0.5rem 0;
}

.parking-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.parking-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.parking-list li:last-child {
    border-bottom: none;
}

.parking-list li::before {
    content: '🅿️ ';
    margin-right: 0.5rem;
}

.contact__map {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-tags h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn--primary {
    background: var(--bg-white);
    color: var(--primary-dark);
    border-color: var(--bg-white);
}

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

.cta-note {
    font-size: 1.0625rem;
    opacity: 0.9;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer__section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.footer__text {
    line-height: 1.7;
    opacity: 0.9;
}

.footer__rating {
    margin-top: var(--spacing-xs);
}

.footer__rating .stars {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__list li {
    opacity: 0.9;
}

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

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

.footer__location {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
}

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

.lightbox.active {
    display: flex;
}

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

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.lightbox__prev {
    left: 2rem;
}

.lightbox__next {
    right: 2rem;
}

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

/* ================================
   SCROLL TO TOP BUTTON
   ================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 100;
}

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

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .about__content,
    .contact__content {
        grid-template-columns: 1fr;
    }

    .reviews__summary {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }

    .rating-categories {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-md);
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: left 0.3s ease;
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__toggle {
        display: flex;
    }

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

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

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

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

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

    .hero__controls {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

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

    .gallery__item {
        height: 250px;
    }

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

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

    .map-container {
        height: 300px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

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

    .lightbox__close,
    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox__close {
        top: 1rem;
        right: 1rem;
    }

    .lightbox__prev {
        left: 1rem;
    }

    .lightbox__next {
        right: 1rem;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .rating-bar {
        grid-template-columns: 70px 1fr 40px;
    }

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