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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

:root {
    /* Modern, professional color palette */
    --primary-color: #2c5f7c;
    --primary-dark: #1e4257;
    --primary-light: #3d7fa3;
    --accent-color: #d4a574;
    --accent-dark: #b8905a;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --border-color: #e1e8ed;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
        max-width: 1400px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
        max-width: 1600px;
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0 80px;
        max-width: 1800px;
    }
}

@media (min-width: 1920px) {
    .container {
        padding: 0 100px;
        max-width: 2000px;
    }
}

/* Header - Modern and Clean */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 6px var(--shadow);
    position: relative;
    overflow: visible;
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Navigation */
.main-nav {
    position: relative;
    z-index: 101;
    background-color: rgba(30, 66, 87, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}

.logo-nav {
    flex-shrink: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: var(--white);
}

.logo-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-block;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    opacity: 1 !important;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-link:focus {
    outline: 2px solid var(--white);
    outline-offset: 4px;
    border-radius: 4px;
}

.logo-link::after {
    display: none !important;
}

.logo-link.active {
    background: none !important;
    opacity: 1 !important;
}

.logo-link.active::after {
    display: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    opacity: 0.9;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent-color);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    color: var(--accent-color);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:active {
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-color);
    opacity: 1;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 10001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Header Content */
.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px 0;
}

/* Hide header content when mobile menu is open on mobile */
@media (max-width: 767px) {
    body.menu-open .header-content {
        display: none;
    }
}

.tagline {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Hero Section - Full Width */
.hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--light-bg) 0%, var(--white) 100%);
    width: 100%;
}

/* Hero Carousel */
.hero-carousel {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: var(--primary-dark);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(0);
}
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.35);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212, 165, 116, 0.45);
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
}

.cta-primary:active {
    transform: translateY(-1px);
}

.cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.15);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.25);
}

.cta-icon {
    font-size: 1.3rem;
}

.booking-cta {
    text-align: center;
    margin-top: 40px;
}

/* Contact Bar - Hidden by default, only show on contact page if needed */
.contact-bar {
    display: none !important;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.contact-info p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-info strong {
    font-weight: 600;
    margin-right: 6px;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-info a:hover {
    color: var(--accent-light, #e8c49a);
    text-decoration: underline;
}

.contact-info #address-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    text-decoration: none;
}

.contact-info #address-link:hover {
    color: var(--accent-color);
}

.map-icon {
    font-size: 1rem;
}

/* Main Content - Full Width */
.main-content {
    padding: 0;
    background-color: var(--white);
    width: 100%;
    min-height: 80vh;
    position: relative;
}

/* Hero and Contact sections - always visible on home */
section#home,
section#contact {
    display: block;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

section#home.active,
section#contact.active {
    opacity: 1;
}

section#home:not(.active),
section#contact:not(.active) {
    opacity: 0;
}

/* Main content sections - SPA routing */
/* Hidden by default, shown by router */
section#about,
section#gallery,
section#amenities,
section#local-info {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Hide sections that are marked as hidden by router */
section#about[data-hidden="true"],
section#gallery[data-hidden="true"],
section#amenities[data-hidden="true"],
section#local-info[data-hidden="true"] {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
}

section#about.active,
section#gallery.active,
section#amenities.active,
section#local-info.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    padding-bottom: 24px;
    letter-spacing: -0.5px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-dark));
    border-radius: 3px;
}

h3 {
    color: var(--primary-dark);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

/* About Section */
.about-section {
    text-align: center;
    padding: 80px 0;
    width: 100%;
    background-color: var(--white);
    display: block;
    margin: 0;
    margin-top: 40px;
}

.owners-info {
    font-size: 1.3rem;
    margin: 32px 0;
    color: var(--primary-color);
    font-weight: 600;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    max-width: 900px !important;
    margin: 32px auto 0;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    padding: 0 20px;
    text-align: left;
    width: 100% !important;
    display: block;
}

.intro-text p {
    margin: 0 0 24px 0;
    width: 100%;
    max-width: 100%;
}

/* Gallery - Modern Grid */
.gallery-section {
    padding: 80px 0;
    width: 100%;
    background-color: var(--white);
    margin: 0;
    margin-top: 40px;
}

.gallery-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    background: var(--light-bg);
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
}

.gallery-item:empty::after,
.gallery-item:not(:has(img))::after {
    content: 'Image Coming Soon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    z-index: 2;
    opacity: 0.7;
    pointer-events: none;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery-item:active {
    transform: translateY(-3px) scale(0.98);
}

.gallery-item:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Amenities - Card Design */
.amenities-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #fafbfc 100%);
    padding: 80px 0;
    width: 100%;
    margin: 0;
    margin-top: 40px;
    display: block;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.amenity-item {
    background-color: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.amenity-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.amenity-item:hover::after {
    left: 100%;
}

.amenity-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateX(6px);
    border-left-color: var(--accent-dark);
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.05) 0%, var(--white) 100%);
}

.amenity-item::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 8px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.amenity-item:hover::before {
    transform: scale(1.2);
}

/* Local Info - Modern Cards */
.local-info {
    padding: 80px 0;
    margin: 0;
    margin-top: 40px;
    width: 100%;
    display: block;
}

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

.info-box {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-box:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.restaurant-list {
    list-style: none;
    padding: 0;
}

.restaurant-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    transition: all 0.2s ease;
}

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

.restaurant-list li:hover {
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(44, 95, 124, 0.05) 0%, transparent 100%);
    border-radius: 6px;
    margin-left: -12px;
    padding-left: 12px;
    padding-right: 12px;
}

.restaurant-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
    font-weight: 500;
}

.restaurant-list a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.weather-widget {
    text-align: center;
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.weather-widget img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.weather-link {
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    margin-top: 12px;
    font-weight: 500;
}

.weather-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Map Container */
.map-container {
    width: 100%;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: block;
}

.map-address {
    margin-top: 20px;
    text-align: center;
    color: var(--text-color);
    font-size: 1rem;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
}

.map-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.map-link:hover {
    color: var(--white);
    background: var(--primary-color);
    text-decoration: none;
}

/* Footer - Clean and Simple */
.footer {
    background: linear-gradient(135deg, var(--text-color) 0%, #1a252f 100%);
    color: var(--white);
    padding: 48px 20px 24px;
    margin-top: 60px;
    font-size: 0.875rem;
    box-shadow: 0 -2px 8px var(--shadow);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    margin: 8px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    display: inline-block;
    padding: 4px 0;
}

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

.footer-bottom p {
    margin: 8px 0;
    opacity: 0.85;
    line-height: 1.7;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.loading-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* Error Messages */
.error-message {
    text-align: center;
    padding: 40px 20px;
}

.retry-button {
    margin-top: 16px;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.retry-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.retry-button:active {
    transform: translateY(0);
}

/* Image Modal/Lightbox - Modern */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    -webkit-overflow-scrolling: touch;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    margin: 20px auto 0;
    text-align: center;
    color: var(--white);
    font-size: 1rem;
    max-width: 90%;
    padding: 0 20px;
    opacity: 0.9;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-close:hover,
.modal-close:focus {
    color: var(--accent-color);
    background-color: rgba(0, 0, 0, 0.8);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}

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

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

/* Tablet Styles - 480px and up */
@media (min-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .logo {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1.05rem;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }

    h2 {
        font-size: 2rem;
    }

    .main-content {
        padding: 48px 0;
    }

    section {
        margin-bottom: 56px;
    }

    .amenities-section {
        margin: 0 -24px;
        padding: 40px 24px;
    }
}

/* Small Desktop - 768px and up */
@media (min-width: 768px) {
    .hero-cta {
        margin-top: 40px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
    .header-content {
        padding: 32px 0;
    }

    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.15rem;
    }

    .nav-wrapper {
        padding: 20px 0;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-link {
        padding: 12px 24px;
        font-size: 1.05rem;
    }

    .contact-bar {
        padding: 24px 0;
    }

    .contact-info {
        gap: 40px;
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    h2 {
        font-size: 2.5rem;
    }

    h2::after {
        width: 100px;
    }

    h3 {
        font-size: 1.6rem;
    }

    .main-content {
        padding: 80px 0;
    }

    section {
        margin-bottom: 80px;
    }

    .about-section {
        padding: 80px 0;
    }

    .intro-text {
        font-size: 1.3rem;
        max-width: 100%;
        padding: 0;
        line-height: 2.1;
    }

    .owners-info {
        font-size: 1.3rem;
    }

    .gallery-section {
        padding: 80px 0;
    }

    .amenities-section {
        padding: 80px 0;
    }

    .local-info {
        padding: 80px 0;
    }

    .amenities-section {
        padding: 56px 40px;
        margin: 0;
        border-radius: 20px;
    }

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

    .amenity-item {
        padding: 20px;
        font-size: 1.05rem;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .map-container iframe {
        height: 300px;
    }

    .info-box {
        padding: 36px;
    }

    .footer {
        padding: 48px 24px;
    }

    .modal-close {
        top: 24px;
        right: 24px;
        font-size: 42px;
        width: 50px;
        height: 50px;
    }

    .modal-content {
        max-height: 90vh;
    }

    .modal-caption {
        font-size: 1.1rem;
    }
}

/* Large Desktop - 1024px and up */
@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }

    .header-content {
        padding: 40px 0;
    }

    .logo {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 24px;
    }

    h2 {
        font-size: 2.75rem;
        margin-bottom: 40px;
    }

    h2::after {
        width: 120px;
        height: 5px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 28px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .amenities-list {
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 28px;
    }

    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 56px;
    }
    
    .map-container iframe {
        height: 350px;
    }

    .main-content {
        padding: 120px 0;
    }

    section {
        margin-bottom: 120px;
    }

    .about-section {
        padding: 100px 0;
    }

    .intro-text {
        font-size: 1.4rem;
        line-height: 2.2;
    }

    .owners-info {
        font-size: 1.4rem;
    }

    .gallery-section {
        padding: 100px 0;
    }

    .amenities-section {
        padding: 100px 0;
    }

    .local-info {
        padding: 100px 0;
    }
}

/* Extra Large Desktop - 1400px and up */
@media (min-width: 1400px) {
    .container {
        max-width: 1800px;
        padding: 0 80px;
    }

    .header-content {
        padding: 48px 0;
    }

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 32px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .amenities-list {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 32px;
    }

    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 64px;
    }

    .intro-text {
        font-size: 1.5rem;
        max-width: 100%;
        line-height: 2.3;
    }

    .owners-info {
        font-size: 1.5rem;
    }
}

/* Ultra Wide - 1920px and up */
@media (min-width: 1920px) {
    .container {
        max-width: 2000px;
        padding: 0 120px;
    }

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

    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        flex-direction: column;
        padding: 100px 24px 24px;
        gap: 12px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
        z-index: 10000;
        align-items: stretch;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 18px 24px;
        border-radius: 10px;
        text-align: left;
        font-size: 1.1rem;
        width: 100%;
        margin-bottom: 4px;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    h2 {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
    
    .about-section,
    .gallery-section,
    .amenities-section,
    .local-info {
        padding: 48px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Transition Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section.active {
    animation: fadeIn 0.4s ease-out;
}

/* Enhanced animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Loading animation for content */
.loading-text {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.2s ease;
}

/* Focus visible for better accessibility */
*:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Enhanced Accessibility */
*:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Better link underlines for accessibility */
.contact-info a,
.restaurant-list a {
    text-decoration: underline;
    text-decoration-color: rgba(212, 165, 116, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease;
}

.contact-info a:hover,
.restaurant-list a:hover {
    text-decoration-color: var(--accent-color);
}

/* Ensure touch targets are large enough on mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .cta-button,
    .gallery-item,
    .modal-close {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Loading State for SPA */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-loading.active {
    opacity: 1;
    pointer-events: all;
}

.page-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-bg);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Improved scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Better text selection */
::selection {
    background-color: var(--accent-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover {
        transform: none;
    }

    .gallery-item:active {
        transform: scale(0.97);
    }
    
    .gallery-item:hover img {
        transform: scale(1);
    }

    .amenity-item:hover {
        transform: none;
    }

    .info-box:hover {
        transform: none;
    }

    .nav-link:hover {
        background-color: transparent;
    }
    
    .cta-button {
        min-height: 48px; /* Better touch target */
        min-width: 120px;
    }
    
    /* Better spacing for mobile */
    .hero-cta {
        gap: 12px;
    }
    
    .cta-button {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .contact-bar,
    .footer {
        background: white;
        color: black;
    }

    .modal {
        display: none !important;
    }
}
