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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 4rem;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}

/* Detail navbar variant with white background */
.navbar-detail {
    background: #ffffff;
}

.navbar-detail .logo {
    color: var(--primary-color);
}

.navbar-detail .contact-label {
    color: var(--text-light);
}

.navbar-detail .phone-number {
    color: var(--primary-color);
}

.navbar-detail .stat-number {
    color: var(--primary-color);
}

.navbar-detail .stat-label {
    color: var(--text-light);
}

.navbar-detail .stats-badge {
    background: rgba(0, 0, 0, 0.05);
}

.navbar-detail .stats-badge:hover {
    background: rgba(0, 0, 0, 0.1);
}

.navbar-detail .language-btn {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.navbar-detail .language-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.navbar-detail .language-btn .material-symbols-outlined {
    color: var(--primary-color);
}

.navbar-detail .menu-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar-detail .menu-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
}

.logo {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo.large .logo-image {
    height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.phone-number {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
}

.stats-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    transition: var(--transition);
    height: 48px;
    text-decoration: none;
    cursor: pointer;
}

.stats-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.navbar.scrolled .stats-badge {
    background: var(--accent-color);
}

.navbar.scrolled .stats-badge:hover {
    background: #f0f0f0;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.navbar.scrolled .stat-number {
    color: var(--primary-color);
}

.stat-label {
    line-height: 1.2;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-color);
    white-space: nowrap;
}

.navbar.scrolled .stat-label {
    color: var(--text-light);
}

.menu-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    height: 48px;
}

.navbar.scrolled .menu-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    height: 48px;
}

.navbar.scrolled .language-btn {
    background: var(--accent-color);
    color: var(--primary-color);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.navbar.scrolled .language-btn:hover {
    background: #f0f0f0;
}

.language-btn .material-symbols-outlined {
    font-size: 20px;
}

.language-text {
    font-weight: 600;
}

.language-arrow {
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-form {
    margin: 0;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.language-option:hover {
    background: var(--accent-color);
}

.language-option.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.language-option.active .language-name {
    font-weight: 600;
}

.language-name {
    font-size: 0.95rem;
    color: var(--primary-color);
}

.language-option.active .language-name {
    color: var(--secondary-color);
}

/* Full-Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 4rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.menu-close:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.menu-close .material-symbols-outlined {
    font-size: 24px;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.menu-link {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    text-transform: uppercase;
}

.menu-overlay.active .menu-link {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for menu links */
.menu-overlay.active .menu-link:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-link:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.active .menu-link:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.active .menu-link:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.active .menu-link:nth-child(5) { transition-delay: 0.3s; }
.menu-overlay.active .menu-link:nth-child(6) { transition-delay: 0.35s; }
.menu-overlay.active .menu-link:nth-child(7) { transition-delay: 0.4s; }
.menu-overlay.active .menu-link:nth-child(8) { transition-delay: 0.45s; }

.menu-link:hover {
    color: #555555;
    transform: translateX(10px);
}

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

.menu-link:hover::after {
    width: 100%;
}

/* Light menu overlay variant for solid navbar pages */
.menu-overlay-light {
    background: #ffffff;
}

.menu-overlay-light .menu-close {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.menu-overlay-light .menu-close:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.menu-overlay-light .menu-link {
    color: var(--primary-color);
}

.menu-overlay-light .menu-link:hover {
    color: #555555;
}

.menu-overlay-light .menu-link::after {
    background: var(--primary-color);
}

/* Responsive menu */
@media (max-width: 768px) {
    .menu-overlay {
        padding-left: 2rem;
    }

    .menu-link {
        font-size: 2rem;
    }

    .menu-close {
        width: 48px;
        height: 48px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .menu-close .material-symbols-outlined {
        font-size: 24px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    overflow: hidden;
    z-index: 1;
}

.hero-compact {
    height: 40vh;
    min-height: 400px;
    padding: 6rem 4rem 2rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

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

.hero-content {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInUp 1s ease-out both;
}

.hero-text-wrapper {
    margin: auto 0; /* verticaal centreren */
}

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

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.stars {
    font-size: 1rem;
    color: gold;
}

.hero-badge p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 500;
}

.hero-title {
    /* Fluid typography: scales smoothly from 40px (2.5rem) to 92px (5.75rem) */
    font-size: clamp(2.5rem, 6vw + 1rem, 5.75rem);
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-line {
    display: block;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.hero-subtitle {
    /* Fluid subtitle: scales from 15.2px (0.95rem) to 20px (1.25rem) */
    font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.host-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: var(--transition);
}

.host-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.host-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.host-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.gallery-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 4rem;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 1rem 8rem; /* Extra padding aan de zijkanten voor fade-out zone */
    position: relative;
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        black 8rem,
        black calc(100% - 8rem),
        transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0%,
        black 8rem,
        black calc(100% - 8rem),
        transparent 100%);
}

.thumbnail-strip {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.thumbnail:hover::before {
    opacity: 1;
}

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

.thumbnail:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.thumbnail.active {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.thumbnail.active::before {
    opacity: 0;
}

.full-gallery-link {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    opacity: 0.9;
}

.full-gallery-link:hover {
    opacity: 1;
    transform: translateX(5px);
    display: inline-block;
}

.btn-primary {
    padding: 1rem 3rem;
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Container */
.section-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    animation: fadeInUp 1s ease-out;
}

.section-title .light {
    color: #999999;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.section-header.centered .section-description {
    margin-left: auto;
    margin-right: auto;
}

.spaced-letters span {
    display: inline-block;
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
}

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

/* About Section */
.about-section {
    position: relative;
    z-index: 2;
    background: var(--accent-color);
}

.about-section .section-header {
    margin-bottom: 16px;
}

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

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.about-text-col {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.amenities-grid {
    display: flex !important; /* Override inline grid style - use flexbox instead */
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem; /* Vertical: 8px, Horizontal: 24px - readable spacing */
    align-items: center;
    /* Flexbox: items only take space they need, no equal distribution */
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* Icon to text: 4px - very tight */
    background: transparent;
    padding: 0; /* NO padding - especially no left padding */
    border-radius: 0;
    transition: var(--transition);
}

.amenity-card:hover {
    background: none; /* No hover background */
    transform: none;
    box-shadow: none;
}

.amenity-icon {
    margin: 0; /* No margins */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 20px; /* Smaller for extreme compactness */
    color: var(--text-dark);
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    transform: none;
}

.amenity-card h4 {
    font-size: 0.95rem; /* Slightly smaller for compactness */
    font-weight: 500;
    line-height: 1; /* No extra vertical space - tight to text */
    margin: 0; /* No margins */
    color: var(--text-dark);
    white-space: nowrap;
}

/* FAQ Section */
.faq-section {
    position: relative;
    background: var(--secondary-color);
    z-index: 2;
}

.faq-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 6rem;
    align-items: start;
}

.faq-text-column {
}

.faq-text-column .section-title {
    margin-bottom: 1.5rem;
}

.faq-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    margin-top: 1.5rem;
}

.faq-link:hover {
    gap: 1rem;
}

.faq-grid-column {
    min-width: 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    background: #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    transition: var(--transition);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--primary-color);
}

.faq-question h4 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    padding-left: 2.5rem;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    background: var(--secondary-color);
    z-index: 2;
}

.gallery-section .section-container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.gallery-grid {
    column-count: 6; /* Will be overridden by inline style */
    column-gap: 1rem;
    orphans: 1;
    widows: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    break-inside: avoid;
    page-break-inside: avoid;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Column-based masonry sizes - 4 variations for Pinterest-style layout */
.gallery-item.large {
    height: 350px;
}

.gallery-item.medium {
    height: 280px;
}

.gallery-item.small {
    height: 220px;
}

.gallery-item.x-small {
    height: 250px;
}

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

/* Gallery Quote Cards */
.gallery-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    cursor: default;
}

.gallery-quote:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-quote blockquote {
    margin: 0;
    text-align: center;
}

.gallery-quote .quote-text {
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.3rem); /* Fluid: 15px min, 21px max */
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 200;
}

.gallery-quote .quote-author {
    font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem); /* Fluid: 12px min, 15px max */
    font-weight: 500;
    margin-top: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Light quote (white background, black text) */
.gallery-quote.light {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

/* Dark quote (black background, white text) */
.gallery-quote.dark {
    background: #000000;
    color: #ffffff;
}

/* Responsive font sizes based on tile size */
.gallery-quote.large .quote-text {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem); /* Larger range: 16px min, 20px max - reduced from 24px */
}

.gallery-quote.medium .quote-text {
    font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem); /* 14px min, 18px max */
}

.gallery-quote.small .quote-text {
    font-size: clamp(0.85rem, 1.2vw + 0.4rem, 1.0rem); /* 14px min, 16px max */
}

.gallery-quote.x-small .quote-text {
    font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem); /* 14px min, 18px max */
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

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

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

/* Features Section */
.features-section {
    position: relative;
    background: var(--primary-color);
    color: var(--secondary-color);
    z-index: 2;
}

.features-section .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.features-section .section-title {
    color: var(--secondary-color);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.features-text-column {
}

.features-text-column .section-title {
    margin-bottom: 1.5rem;
}

.features-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
}

.features-grid-column {
    width: 100%;
}

.features-grid {
    display: grid;
    gap: 2.5rem;
    padding: 0rem 3rem;
}

/* 1 column = vertical list (default) */
.features-grid[data-columns="1"] {
    display: flex;
    flex-direction: column;
}

/* 2 columns */
.features-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

/* 3 columns */
.features-grid[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

/* 4 columns */
.features-grid[data-columns="4"] {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    padding: 0;
    background: transparent;
    border: none;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--secondary-color);
    flex: 1;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    padding-left: 2.5rem;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    background: var(--accent-color);
    z-index: 2;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    transition: var(--transition);
}

.pricing-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-item.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
}

.pricing-info {
    flex: 1;
}

.pricing-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.season-months {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-shrink: 0;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-light);
    align-self: flex-end;
    padding-bottom: 0.5rem;
}

/* Calendar Section */
.calendar-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.calendar-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.calendar-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calendar-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.calendar-nav-btn:hover:not(.disabled) {
    background: #000;
    transform: scale(1.1);
}

.calendar-nav-btn.disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-nav-btn .material-icons {
    font-size: 24px;
}

.calendar-nav-info {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.calendar-months {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.calendar-month {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.calendar-month[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
}

.calendar-header {
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.calendar-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.5rem 0;
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    color: var(--primary-color);
    background: #f8f8f8;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.past {
    opacity: 0.3;
    color: var(--text-light);
}

.calendar-day.today {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.calendar-day.booked {
    background: #ffebee;
    color: #c62828;
    position: relative;
}

.calendar-day.booked:not(.past)::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c62828;
    border-radius: 50%;
    bottom: 4px;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

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

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: inline-block;
}

.legend-color.available {
    background: #f8f8f8;
    border: 1px solid var(--primary-color);
}

.legend-color.booked {
    background: #ffebee;
    border: 1px solid #c62828;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    background: var(--secondary-color);
    z-index: 2;
}

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

.review-card {
    padding: 3rem;
    background: var(--accent-color);
    border-radius: 30px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-rating-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.review-stars {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.review-stars .rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.review-stars .rating-separator {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1;
}

.review-stars .rating-max {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1;
}

.review-stars-visual {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    font-size: 20px;
    color: #e0e0e0;
    font-variation-settings: 'FILL' 0, 'wght' 400;
}

.star-icon.filled {
    color: var(--primary-color);
    font-variation-settings: 'FILL' 1, 'wght' 400;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.reviewer h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.reviewer p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Booking Section */
.booking-section {
    position: relative;
    background: var(--accent-color);
    z-index: 2;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 3rem;
}

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

.contact-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-item a,
.contact-item p {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--text-light);
}

.booking-form {
    padding: 3rem;
    background: var(--secondary-color);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.booking-form h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Booking form button - special styling */
.booking-form .btn-primary {
    background: #000000;
    color: white;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-form .btn-primary:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Messages/Alerts */
.messages-container {
    margin-bottom: 1.5rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInDown 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.alert-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.alert-message {
    flex: 1;
    font-weight: 500;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
}

.alert-close:hover {
    opacity: 1;
}

.alert.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* FAQ List Page */
.faq-header {
    padding: 8rem 0 0rem;
    background: var(--secondary-color);
    text-align: center;
}

.faq-main-title {
    /* Fluid typography: scales smoothly from 32px (2rem) to 64px (4rem) */
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.02em;
}

.faq-main-title .light {
    color: #cccccc;
}

.faq-page-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.faq-list-section {
    padding: 0rem 0 6rem;
    background: var(--secondary-color);
}

/* Reviews Hero Section */
.reviews-hero-section {
    width: 100%;
    overflow: hidden;
    background: var(--secondary-color);
}

.reviews-hero-image {
    width: 100%;
    height: 700px;
    max-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Reviews Average Rating Display */
.reviews-average-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

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

.rating-stars-large {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars-large .star-icon {
    font-size: 3rem;
    color: #ddd;
}

.rating-stars-large .star-icon.filled {
    color: #000000;
}

/* Reviews List Section */
.reviews-list-section {
    padding: 0;
    background: var(--secondary-color);
}

.faq-list-items {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer {
    position: relative;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    z-index: 0;
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand .logo {
    font-size: 2rem;
    color: #000000;
}

.footer-brand p {
    color: var(--text-light);
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.footer-bottom p {
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 1440px) {
    /* hero-title now uses fluid typography (clamp) - no fixed size needed */
}

@media (max-width: 1024px) {
    .navbar,
    .navbar.scrolled {
        padding: 1.5rem 1.25rem;
    }

    .hero {
        padding: 6rem 1.25rem 4rem;
    }

    /* hero-title uses fluid typography - no fixed size needed */

    .section-container {
        padding: 4rem 1.25rem;
    }

    .about-content,
    .booking-content,
    .faq-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Amenities: tablet spacing */
    .amenities-grid {
        gap: 0.4rem 1.2rem; /* Slightly tighter on tablet */
    }

    .amenity-icon {
        font-size: 18px;
    }

    .amenity-card h4 {
        font-size: 0.9rem;
    }

    /* Text columns: 2 columns on tablet */
    .about-text-columns {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    /* Gallery quotes: tablet sizing */
    .gallery-quote {
        padding: 2rem 1.5rem;
    }

    .gallery-quote .quote-text {
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    /* Responsive: reduce columns and adjust heights on mobile */
    .gallery-grid {
        column-count: 2 !important;
    }

    .gallery-item.large {
        height: 280px;
    }

    .gallery-item.medium {
        height: 240px;
    }

    .gallery-item.small {
        height: 200px;
    }

    .gallery-item.x-small {
        height: 220px;
    }

    /* Footer: consistent padding and layout for tablet */
    .footer-container {
        padding: 0 1.25rem; /* Consistent 20px padding with other sections */
    }

    .footer {
        padding: 3rem 0 1.5rem; /* Reduce from 4rem 0 2rem */
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand .logo {
        font-size: 1.5rem; /* Reduce from 2rem */
    }
}

/* Medium desktop: max 4 columns for amenities */
@media (min-width: 1025px) and (max-width: 1440px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        max-width: 100%;
    }

    /* Limit to max 4 columns even if admin sets more */
    .amenities-grid > .amenity-card:nth-child(n+5) {
        /* Still visible, just force reflow at 4 columns */
    }
}

/* Hide contact info and stats badge at smaller breakpoint for better spacing */
@media (max-width: 1200px) {
    .contact-info,
    .stats-badge {
        display: none;
    }

    /* About text columns: reduce to 2 columns */
    .about-text-columns {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1.5rem;
    }

    /* Hamburger menu for mobile */
    .menu-btn {
        width: 48px;
        min-width: 48px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0; /* Hide text */
    }

    .menu-btn::before {
        content: 'menu';
        font-family: 'Material Symbols Outlined';
        font-size: 24px;
        font-weight: normal;
        font-style: normal;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-feature-settings: 'liga';
        -webkit-font-smoothing: antialiased;
    }

    /* hero-title uses fluid typography - no fixed size needed */

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .amenities-grid {
        gap: 0.35rem 1rem; /* Compact on mobile */
    }

    .amenity-icon {
        font-size: 18px;
    }

    .amenity-card h4 {
        font-size: 0.85rem;
    }

    .about-text-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Gallery quotes: mobile sizing */
    .gallery-quote {
        padding: 1.5rem 1.25rem;
    }

    .gallery-quote .quote-text {
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Force all features grid configurations to 1 column on mobile */
    .features-grid,
    .features-grid[data-columns="2"],
    .features-grid[data-columns="3"],
    .features-grid[data-columns="4"] {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: none;
        padding: 0; /* Remove horizontal padding on mobile */
    }

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

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .pricing-amount {
        align-self: flex-end;
    }

    /* Footer: mobile optimization */
    .footer-brand {
        text-align: center; /* Center logo and text on mobile */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center the logo image/content */
    }

    .footer-brand .logo {
        font-size: 1.3rem; /* Further reduce for mobile */
        display: flex;
        justify-content: center; /* Center logo content */
    }

    .footer-brand p {
        font-size: 0.9rem; /* Smaller text on mobile */
        line-height: 1.5;
        margin: 0 auto; /* Center the paragraph within max-width */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-legal {
        gap: 1.5rem; /* Reduce from 2rem */
    }

    .footer-legal a {
        font-size: 0.85rem;
    }
}

/* Tablet: Optimize gallery - remove fade, enable scroll */
@media (min-width: 641px) and (max-width: 1024px) {
    .thumbnail-gallery {
        padding: 1rem 2rem;  /* Reduced from 8rem */
        -webkit-mask-image: none;  /* Remove fade effect */
        mask-image: none;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;  /* Smooth iOS scroll */
        scrollbar-width: thin;
    }

    .thumbnail-gallery::-webkit-scrollbar {
        height: 4px;
    }

    .thumbnail-gallery::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .thumbnail-gallery::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }

    .thumbnail {
        flex-shrink: 0;  /* Prevent thumbnails from shrinking */
    }

    /* Touch-friendly interactions for tablet */
    .thumbnail:hover {
        transform: none;  /* Disable hover lift on touch devices */
    }

    .thumbnail:active {
        opacity: 0.7;
        transform: scale(0.95);
        transition: all 0.15s ease;
    }
}

@media (max-width: 640px) {
    /* Better line-height for mobile readability */
    .hero-title {
        line-height: 1.15;
    }

    /* Hide thumbnail gallery on mobile - too cramped with fade effect */
    .thumbnail-gallery {
        display: none;
    }

    /* Enhance Full Gallery link as primary CTA on mobile */
    .full-gallery-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        min-height: 44px;  /* Touch-friendly */
    }

    .full-gallery-link:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .full-gallery-link:active {
        transform: translateY(0);
    }

    /* About Section: mobile optimizations */
    .section-container {
        padding: 3rem 1.25rem; /* Consistent 20px side padding */
    }

    .amenities-grid {
        gap: 0.3rem 0.85rem; /* Tighter on small mobile */
    }

    .amenity-icon {
        font-size: 18px;
    }

    .amenity-card {
        padding: 0; /* No padding on small screens either */
    }

    .amenity-card h4 {
        font-size: 0.85rem;
        white-space: normal; /* Allow wrapping on very small screens */
    }

    .about-text-col {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Gallery quotes: small mobile */
    .gallery-quote {
        padding: 1.25rem 1rem;
    }

    .gallery-quote .quote-text {
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    /* Footer: compact on small mobile */
    .footer {
        padding: 2.5rem 0 1.5rem; /* Further reduce padding */
    }

    .footer-brand .logo {
        font-size: 1.2rem; /* Even smaller logo */
    }

    .footer-legal {
        gap: 1rem; /* Compact gap */
    }
}

@media (max-width: 480px) {
    /* hero-title uses fluid typography - no fixed size needed */

    /* Reduce hero badge size on small mobile */
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-badge p {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Reduce logo size */
    .logo {
        font-size: 1.5rem;
    }

    /* Reduce navbar padding */
    .navbar,
    .navbar.scrolled {
        padding: 1.5rem 1.25rem;
    }

    /* About Section: very small screens - single column */
    .section-container {
        padding: 2.5rem 1.25rem; /* Consistent 20px side padding */
    }

    .amenities-grid {
        flex-direction: column; /* Stack vertically */
        align-items: flex-start; /* Align left */
        gap: 0.25rem; /* Minimal vertical gap */
    }

    .amenity-card {
        padding: 0; /* No padding at all */
    }

    .amenity-icon {
        font-size: 16px;
    }

    .amenity-card h4 {
        font-size: 0.8rem;
    }

    .about-text-col {
        font-size: 14px;
    }

    /* Gallery quotes: very small mobile */
    .gallery-quote {
        padding: 1rem 0.75rem;
    }

    .gallery-quote .quote-text {
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .gallery-quote .quote-author {
        margin-top: 0.5rem;
    }

    /* Footer: very compact on very small mobile */
    .footer {
        padding: 2rem 0 1.25rem;
    }

    .footer-brand .logo {
        font-size: 1.1rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    /* Hide hero badge completely on very small screens */
    .hero-badge {
        display: none;
    }

    /* Further reduce logo */
    .logo {
        font-size: 1.3rem;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Section (Homepage) */
.blog-section {
    padding: 0rem 2rem;
    background: var(--secondary-color);
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

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

.blog-header-center {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.blog-title .light {
    color: #cccccc;
}

.blog-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.see-all-link:hover {
    opacity: 0.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    background: var(--accent-color);
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Blog List Page */
.blog-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: var(--accent-color);
}

.blog-main-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid-section {
    padding: 4rem 2rem 6rem;
    background: var(--secondary-color);
}

/* Blog Detail Page */
.blog-post-header {
    padding: 8rem 2rem 2rem;
    background: var(--accent-color);
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: var(--transition);
}

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

.blog-post-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.blog-post-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.blog-post-author {
    font-size: 1.2rem;
    color: var(--text-light);
}

.blog-post-featured-image {
    padding: 2rem;
    background: var(--accent-color);
}

.blog-post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.blog-post-content {
    padding: 4rem 2rem;
    background: var(--secondary-color);
}

.blog-post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-body h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-body li {
    margin-bottom: 0.5rem;
}

.related-posts-section {
    padding: 4rem 0rem 6rem;
    background: var(--accent-color);
}

.related-posts-section .section-container {
    padding: 0rem 2rem;
}

.related-posts-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Navigation Links */
.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.7;
}

/* Gallery Category Page */
.gallery-category-header {
    padding: 8rem 2rem 2rem;
    background: var(--accent-color);
    text-align: center;
}

.gallery-category-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.gallery-category-count {
    font-size: 1.1rem;
    color: var(--text-light);
}

.gallery-category-content {
    padding: 4rem 2rem 6rem;
    background: var(--secondary-color);
}

.gallery-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-category-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-category-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-category-caption {
    padding: 1.5rem;
    background: var(--secondary-color);
}

.gallery-category-caption h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Responsive Blog Styles */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-main-title,
    .blog-post-title {
        font-size: 2.5rem;
    }

    .blog-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 2.5rem;
    }

    .blog-main-title,
    .blog-post-title {
        font-size: 2rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-post-featured-image img {
        max-height: 300px;
    }
}

/* =============================================================================
   ELEGANT GALLERY CAROUSEL
   ============================================================================= */

/* Clickable gallery items when carousel mode is enabled */
.gallery-item-clickable {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-clickable:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Carousel Modal Overlay */
.carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 90vh;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 10001;
    animation: slideUp 0.4s ease;
}

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

/* Close Button */
.carousel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 26, 26, 0.1);
    color: var(--primary-color);
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-close:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg) scale(1.05);
}

/* Carousel Header */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    padding-right: 60px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}

.carousel-category-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
    flex: 1;
}

.carousel-counter {
    color: rgba(26, 26, 26, 0.5);
    font-size: 0.95rem;
    font-weight: 400;
    white-space: nowrap;
}

.carousel-counter .current-slide {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Carousel Content Area */
.carousel-content {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide.prev {
    transform: translateX(-30px);
}

.carousel-slide.next {
    transform: translateX(30px);
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 26, 26, 0.1);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

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

.carousel-prev {
    left: -80px;
}

.carousel-next {
    right: -80px;
}

.carousel-nav svg {
    width: 28px;
    height: 28px;
}

/* Thumbnails Strip */
.carousel-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 26, 26, 0.2) transparent;
}

.carousel-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.carousel-thumbnails::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.05);
    border-radius: 3px;
}

.carousel-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(26, 26, 26, 0.2);
    border-radius: 3px;
}

.carousel-thumbnails::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 26, 26, 0.3);
}

.carousel-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.carousel-thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.carousel-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}

.carousel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Keyboard Navigation Hint */
.carousel-keyboard-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-container {
        width: 95%;
        padding: 30px;
    }

    .carousel-prev {
        left: -60px;
    }

    .carousel-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        padding: 20px;
    }

    .carousel-header {
        margin-bottom: 20px;
    }

    .carousel-category-title {
        font-size: 22px;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-thumbnail {
        width: 80px;
        height: 56px;
    }

    .carousel-close {
        width: 44px;
        height: 44px;
        font-size: 32px;
    }
}

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

    .carousel-category-title {
        font-size: 18px;
    }

    .carousel-counter {
        font-size: 14px;
    }

    .carousel-counter .current-slide {
        font-size: 16px;
    }

    .carousel-thumbnail {
        width: 60px;
        height: 42px;
    }
}

/* ====================================
   Pagination Styles
   ==================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-btn .material-symbols-outlined {
    font-size: 20px;
}

.pagination-btn.disabled {
    background: var(--bg-light);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-btn.disabled:hover {
    transform: none;
}

.pagination-info {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 1rem;
        margin-top: 3rem;
    }

    .pagination-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .pagination-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pagination {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   Custom Datepicker Styles
   ==================================== */

/* Date input wrapper */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper .datepicker-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    background-color: var(--secondary-color);
}

.date-input-wrapper .datepicker-input:hover {
    border-color: var(--primary-color);
    background-color: #fafafa;
}

.date-input-wrapper .datepicker-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 121, 93, 0.1);
}

.date-input-wrapper .date-icon {
    position: absolute;
    right: 1.5rem;
    top: 16px;
    color: var(--primary-color);
    font-size: 22px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.date-input-wrapper .date-icon:hover {
    color: var(--primary-hover);
    transform: scale(1.1);
}

/* Datepicker dropdown */
.datepicker {
    position: fixed;
    z-index: 10000;
    margin-top: 0.25rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    min-width: 320px;
    display: none;
}

.datepicker.active {
    display: block;
    animation: fadeInScale 0.2s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Datepicker header */
.datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--bg-light);
}

.datepicker-month-year {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.datepicker-nav {
    display: flex;
    gap: 0.5rem;
}

.datepicker-nav button {
    background: var(--bg-light);
    border: 1px solid transparent;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.datepicker-nav button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.datepicker-nav button:active {
    transform: scale(0.95);
}

.datepicker-nav button .material-symbols-outlined {
    font-size: 20px;
}

/* Datepicker calendar grid */
.datepicker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}

.datepicker-weekday {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.datepicker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}

.datepicker-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
}

.datepicker-day:hover:not(.disabled):not(.other-month) {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.datepicker-day:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.datepicker-day.selected {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(229, 121, 93, 0.3);
}

.datepicker-day.in-range {
    background: rgba(229, 121, 93, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

.datepicker-day.today {
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.datepicker-day.today.selected {
    border-color: white;
}

.datepicker-day.disabled {
    color: var(--text-light);
    opacity: 0.3;
    cursor: not-allowed;
}

.datepicker-day.disabled:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
}

.datepicker-day.other-month {
    color: var(--text-light);
    opacity: 0.35;
}

/* Responsive datepicker */
@media (max-width: 768px) {
    .datepicker {
        min-width: 280px;
        padding: 1rem;
    }

    .datepicker-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .datepicker-month-year {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .datepicker {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        min-width: 90vw;
        max-width: 320px;
    }
}
