/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #8b4513;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --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);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.25);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

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

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

.btn--small {
    padding: 8px 20px;
    font-size: 14px;
}

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

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

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

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

.navbar__logo h1 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.navbar__logo span {
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.navbar__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 4px 0;
}

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

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

.navbar__link--cta {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
}

.navbar__link--cta:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}

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

.navbar__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.navbar__menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-base);
}

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

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

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

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

.hero__slider {
    position: relative;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease infinite;
}

@keyframes zoomIn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero__description {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero__badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    animation: fadeIn 1.5s ease 0.5s both;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge__rating {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.badge__stars {
    color: var(--primary-color);
    font-size: 16px;
}

.badge__count {
    font-size: 24px;
    font-weight: 600;
}

.badge__text,
.badge__hours {
    font-size: 12px;
    opacity: 0.9;
}

.badge__status {
    color: #4caf50;
    font-weight: 600;
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 3;
}

.hero__nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

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

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

.about__content {
    display: grid;
    gap: 60px;
}

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

.about__item {
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.about__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.about__item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.about__item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat__label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-base);
}

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

.feature-card__header {
    margin-bottom: 24px;
}

.feature-card__header h3 {
    font-size: 20px;
    color: var(--secondary-color);
}

.feature-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card__list li {
    color: var(--text-secondary);
    padding-left: 8px;
}

.features__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

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

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

.popular-times__chart {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    overflow-x: auto;
}

.popular-times__legend {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legend-item::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-item--low::before {
    background: #e8f5e9;
}

.legend-item--medium::before {
    background: #fff3e0;
}

.legend-item--high::before {
    background: #ffebee;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.gallery__filter {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery__filter:hover,
.gallery__filter--active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

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

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

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

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery__zoom {
    color: white;
    font-size: 32px;
    font-weight: 300;
}

.gallery__more {
    display: block;
    margin: 0 auto;
}

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

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
}

.reviews__rating {
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding-right: 48px;
}

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

.reviews__stars {
    font-size: 24px;
    color: var(--primary-color);
    margin: 8px 0;
}

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

.reviews__distribution {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

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

.rating-bar__label {
    width: 40px;
    font-size: 14px;
    color: var(--text-secondary);
}

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

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

.rating-bar__count {
    width: 40px;
    text-align: right;
    font-size: 14px;
    color: var(--text-secondary);
}

.reviews__carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

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

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

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-card__rating {
    color: var(--primary-color);
}

.review-card__date {
    font-size: 12px;
    color: var(--text-light);
}

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

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

.review-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 12px;
    color: var(--text-secondary);
}

.review-card__ratings {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-light);
}

.reviews__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.reviews__nav-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

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

.reviews__tags {
    text-align: center;
}

.reviews__tags h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.reviews__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Reservation Section */
.reservation {
    padding: 100px 0;
    background: white;
}

.reservation__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.reservation__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.reservation__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
}

.info-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.phone-link {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
}

.phone-link:hover {
    color: var(--accent-color);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    padding: 4px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.policy-list li {
    color: var(--text-secondary);
    padding-left: 8px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

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

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

.contact__item h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contact__item p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact__link {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact__link:hover {
    color: var(--accent-color);
}

.hours-table {
    width: 100%;
    margin-top: 8px;
}

.hours-table td {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.hours-table td:last-child {
    text-align: right;
}

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

.transport-list li {
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.transport-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

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

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

.footer__brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 4px;
}

.footer__brand p {
    color: var(--primary-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    font-size: 24px;
    transition: var(--transition-base);
}

.footer__social a:hover {
    transform: translateY(-2px);
}

.footer__links h4,
.footer__hours h4,
.footer__contact h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer__links a:hover {
    color: white;
    padding-left: 4px;
}

.footer__hours p,
.footer__contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    border-radius: 12px;
    font-size: 12px;
    color: white;
    margin-top: 8px;
}

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

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 2001;
}

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

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius);
    padding: 16px 24px;
    min-width: 300px;
    z-index: 3000;
    transition: bottom 0.3s ease;
}

.toast.show {
    bottom: 40px;
}

.toast__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.toast__message {
    color: var(--text-primary);
}

.toast__close {
    font-size: 20px;
    color: var(--text-light);
    cursor: pointer;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: -50px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-top.show {
    bottom: 30px;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

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

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

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

@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);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero__title {
        font-size: 56px;
    }

    .navbar__menu {
        gap: 24px;
    }

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

    .reviews__rating {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 32px;
    }
}

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

    .navbar__menu-toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }

    .navbar__menu.active {
        left: 0;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .hero__description {
        font-size: 16px;
    }

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

    .badge {
        flex-direction: row;
        gap: 16px;
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

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

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

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

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

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

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

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

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

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

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 32px;
    }

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

    .hero__buttons .btn {
        width: 100%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .about,
    .features,
    .popular-times,
    .gallery,
    .reviews,
    .reservation,
    .contact {
        padding: 60px 0;
    }

    .gallery__filters {
        flex-wrap: wrap;
    }

    .gallery__filter {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero__nav,
    .gallery__filters,
    .reviews__nav,
    .reservation__form,
    .scroll-top {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .section-title {
        font-size: 18pt;
    }
}