/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --primary-dark: #b8935f;
    --secondary-color: #2c3e50;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --background-light: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e9ecef;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
}

/* Reset/Normalize */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--background-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 {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    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 {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.navigation.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

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

.navigation__brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

.navigation__subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.navigation__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 4px;
}

.navigation__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

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

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

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

.navigation__link {
    color: var(--text-primary);
    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%;
}

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

.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;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(212, 165, 116, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero__rating {
    margin-bottom: 2rem;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rating__stars {
    display: inline-flex;
    color: #ffd700;
}

.rating__stars::before {
    content: '★★★★★';
    letter-spacing: 2px;
}

.rating__stars[data-rating="4.4"]::before {
    background: linear-gradient(90deg, #ffd700 88%, #ccc 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating__value {
    font-size: 1.2rem;
    font-weight: 600;
}

.rating__count {
    opacity: 0.9;
}

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

.hero__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.hero__button--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

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

.hero__indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero__indicator--active {
    background: white;
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--background-light);
}

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

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about__description p {
    margin-bottom: 2rem;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about__feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.about__feature-icon {
    font-size: 2rem;
    line-height: 1;
}

.about__feature h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.about__feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about__info-card {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.about__info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.about__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about__info-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about__amenities {
    margin-top: 1rem;
}

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

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

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-alt);
}

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

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

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

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

.features__card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features__card-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: var(--background-light);
}

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

.specialties__item {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.specialties__item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.specialties__item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.specialties__item p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--background-alt);
}

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

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

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

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 116, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery__zoom {
    color: white;
    font-size: 3rem;
    font-weight: 300;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--background-light);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews__summary-rating {
    text-align: center;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: var(--border-radius-lg);
}

.reviews__summary-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.reviews__summary-stars {
    margin-bottom: 0.5rem;
}

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

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.reviews__bar {
    display: grid;
    grid-template-columns: 40px 1fr 50px;
    align-items: center;
    gap: 1rem;
}

.reviews__bar span:first-child {
    text-align: right;
    font-size: 0.9rem;
}

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

.reviews__bar-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 1s ease-out;
}

.reviews__bar span:last-child {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.reviews__carousel {
    overflow: hidden;
    position: relative;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.reviews__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
}

.reviews__track::-webkit-scrollbar {
    height: 8px;
}

.reviews__track::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 4px;
}

.reviews__track::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.review__card {
    flex: 0 0 320px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    scroll-snap-align: start;
}

.review__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review__rating {
    display: flex;
    align-items: center;
}

.review__date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.review__text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review__badge {
    padding: 0.25rem 0.75rem;
    background: var(--background-alt);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.review__footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.review__author {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.reviews__tags {
    text-align: center;
}

.reviews__tags h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.reviews__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.reviews__tag {
    padding: 0.5rem 1rem;
    background: var(--background-alt);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

/* Hours Section */
.hours {
    padding: 80px 0;
    background: var(--background-alt);
}

.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.hours__day:last-child {
    border-bottom: none;
}

.hours__day.hours__day--today {
    background: var(--background-alt);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

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

.hours__status {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hours__status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.hours__status-indicator.closed {
    background: #e74c3c;
}

.hours__status-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hours__busy-indicator {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }
    70% {
        box-shadow: 0 0 0 10px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

/* Popular Times Section */
.popular-times {
    padding: 80px 0;
    background: var(--background-light);
}

.popular-times__days {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.popular-times__day-btn {
    padding: 0.5rem 1rem;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

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

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

.popular-times__graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    padding: 0 1rem;
    position: relative;
}

.popular-times__bar {
    flex: 1;
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
    margin: 0 2px;
    transition: var(--transition);
    position: relative;
}

.popular-times__bar:hover {
    background: var(--primary-dark);
}

.popular-times__bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.popular-times__bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    transition: var(--transition);
}

.popular-times__bar:hover .popular-times__bar-value {
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-alt);
}

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

.contact__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact__card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact__card-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.contact__card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact__card p strong {
    color: var(--text-primary);
}

.contact__map-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact__map-link:hover {
    text-decoration: underline;
}

.contact__phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

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

.contact__warning {
    color: var(--warning-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact__payment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact__payment-method {
    padding: 0.25rem 0.75rem;
    background: var(--background-alt);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

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

/* Reservation Section */
.reservation {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.reservation__header .section-title {
    color: white;
}

.reservation__header .section-title::after {
    background: white;
}

.reservation__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.reservation__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.reservation__tips {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

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

.reservation__tips ul {
    list-style: none;
}

.reservation__tips li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.reservation__action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.reservation__action p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.reservation__button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.reservation__button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Similar Section */
.similar {
    padding: 80px 0;
    background: var(--background-light);
}

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

.similar__card {
    background: white;
    padding: 1.5rem;
    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 h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.similar__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer__brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer__links h4,
.footer__info h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer__info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

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

.lightbox.active {
    display: flex;
}

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

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

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

.lightbox__caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1.1rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 100;
}

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

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

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

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .navigation__toggle {
        display: flex;
    }

    .navigation__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .navigation__menu.active {
        max-height: 400px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

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

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

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

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

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

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero {
        margin-top: 60px;
    }

    .hero__title {
        font-size: 2rem;
    }

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

    .hero__button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .review__card {
        flex: 0 0 280px;
    }

    .popular-times__days {
        flex-wrap: wrap;
    }
}