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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8a3a;
    --accent-color: #8b7355;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    border: none;
    background: transparent;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.6)
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    background-color: var(--bg-light);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Section */
.mission-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Units Section */
.units {
    background-color: var(--bg-white);
}

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

.unit-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

.unit-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.unit-placeholder {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-overlay {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.unit-content {
    padding: 1.5rem;
}

.unit-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.unit-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.unit-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.units-intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.unit-features {
    list-style: none;
    margin-top: 1rem;
}

.unit-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* Style checkmarks (✓) in green */
.unit-features li.has-checkmark,
.difference-list li.has-checkmark {
    color: var(--text-dark);
}

.unit-features li.has-checkmark::first-letter,
.difference-list li.has-checkmark::first-letter {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.3em;
    margin-right: 0.2em;
}

/* Style X marks (✗) in red */
.unit-features li.has-xmark,
.difference-list li.has-xmark {
    color: var(--text-dark);
}

.unit-features li.has-xmark::first-letter,
.difference-list li.has-xmark::first-letter {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.3em;
    margin-right: 0.2em;
}

/* Amenities Section */
.amenities {
    background-color: var(--bg-light);
}

.common-amenities {
    margin-bottom: 4rem;
}

.amenities-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.amenity-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

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

.amenity-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.amenity-item p {
    color: var(--text-light);
}

.amenities-differences {
    margin-top: 3rem;
}

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

.difference-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

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

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

.difference-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
}

/* Farmhouse Amenities */
.farmhouse-amenities {
    margin-top: 3rem;
}

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

.farmhouse-amenity-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.farmhouse-amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.farmhouse-amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.farmhouse-amenity-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.farmhouse-amenity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.farmhouse-note {
    background-color: #fff9e6;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.farmhouse-note p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

.farmhouse-note strong {
    color: var(--primary-color);
}

/* Premier Attractions Section */
.attractions {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.attraction-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.attraction-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.attraction-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.attraction-meta {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.attraction-card p:last-of-type {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Plan Your 2026 Stay Section */
.plan-stay {
    background-color: var(--bg-white);
    padding: 3rem 0;
}

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

.plan-stay-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.plan-stay-card:hover {
    transform: translateY(-3px);
}

.plan-stay-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.plan-stay-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.plan-stay-link {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.plan-stay-link:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-white);
}

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

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.gallery-container {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.gallery-grid:not(.expanded) {
    max-height: calc(
        2 * (280px * 0.75) + 1rem
    ); /* 2 rows max - aspect ratio 4/3 */
}

.gallery-grid.expanded {
    max-height: none;
}

@media (max-width: 768px) {
    .gallery-grid:not(.expanded) {
        max-height: calc(2 * (150px * 0.75) + 1rem);
    }
}

.gallery-placeholder {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder .placeholder-overlay {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

/* Centered filename overlay for client review (order/removal) */
.gallery-item .filename-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.35rem 0.6rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    max-width: 92%;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    z-index: 1;
}

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

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

.gallery-more {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.gallery-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.gallery-more-btn span:first-child {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
}

.gallery-more-btn .more-text {
    font-size: 1rem;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
    overflow: hidden;
}

.gallery-modal.active {
    display: block;
}

.modal-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2001;
    text-align: center;
    pointer-events: none;
}

.modal-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    pointer-events: auto;
    margin: 0 !important;
    padding: 0;
}

/* Centered filename overlay in modal */
.modal-filename-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem 0.85rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    z-index: 2001;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2002;
    background: rgba(0, 0, 0, 0.4);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn,
.next-btn {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

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

/* Booking Section */
.booking {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.booking .container {
    position: relative;
    z-index: 1;
}

.booking .section-header h2 {
    color: white;
}

.booking .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.booking-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.booking-item {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35),
        0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.booking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );
}

.booking-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.45),
        0 5px 15px rgba(0, 0, 0, 0.25);
}

.booking-item.featured {
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.booking-item.featured:hover {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.3);
}

.booking-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.booking-item h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.booking-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.platform-link.airbnb {
    background: linear-gradient(135deg, #ff5a5f 0%, #ff385c 100%);
}

.platform-link.airbnb:hover {
    background: linear-gradient(135deg, #ff385c 0%, #ff1e24 100%);
    transform: translateX(5px);
}

.platform-link.vrbo {
    background: linear-gradient(135deg, #00a699 0%, #008b7d 100%);
}

.platform-link.vrbo:hover {
    background: linear-gradient(135deg, #008b7d 0%, #007066 100%);
    transform: translateX(5px);
}

.platform-icon {
    font-size: 1.5rem;
}

.platform-link span:last-child {
    font-size: 1rem;
}

/* Spa-only booking (local residents) – middle 2 columns on desktop */
.booking-item.spa-only {
    grid-column: 2 / 4;
}

.booking-item.spa-only .spa-only-desc {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.booking-item.spa-only .spa-only-pricing {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.booking-item.spa-only .spa-book-link {
    display: inline-flex;
    background: linear-gradient(
        135deg,
        var(--accent-color) 0%,
        #a08060 100%
    );
}

.booking-item.spa-only .spa-book-link:hover {
    background: linear-gradient(
        135deg,
        #a08060 0%,
        var(--accent-color) 100%
    );
    transform: translateX(5px);
}

/* Booking section responsive: 2 cols then 1 col, spa full width */
@media (max-width: 992px) {
    .booking-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-item.spa-only {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .booking-showcase {
        grid-template-columns: 1fr;
    }

    .booking-item.spa-only {
        grid-column: 1 / -1;
    }
}

/* Amenities: spa pricing & nearby golf */
/* Nordic Spa in amenities – icon + card style */
.spa-experience {
    margin-top: 2rem;
}
.spa-amenities-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.spa-amenity-card .amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.spa-amenity-card .spa-content {
    text-align: left;
    margin-top: 0.5rem;
}

.spa-amenity-card .spa-content p {
    margin-bottom: 0.75rem;
}

.spa-amenity-card .spa-content p:last-child {
    margin-bottom: 0;
}

.spa-pricing {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(139, 115, 85, 0.08);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.spa-pricing p {
    margin-bottom: 0.75rem;
}

.spa-pricing-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spa-pricing-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.spa-price-label {
    min-width: 6rem;
    color: var(--text-dark);
}

.spa-price-regular {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.95rem;
}

.spa-price-arrow {
    color: var(--accent-color);
    font-weight: 600;
}

.spa-price-discounted {
    color: var(--primary-color);
    font-weight: 700;
}

/* Nearby Golf – same icon + card style */
.golf-amenities-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.golf-amenity-card .amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.golf-amenity-card .golf-content {
    margin: 0;
    text-align: left;
}

.nearby-golf {
    margin-top: 2rem;
}

.golf-amenity-card .golf-content {
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: white;
}

.footer-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: white;
    font-weight: 600;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

.credit-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.credit-link:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-location {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        max-height: calc(2 * (150px * 0.75) + 1rem);
    }

    .amenities-subtitle {
        font-size: 1.5rem;
    }

    .booking-showcase {
        grid-template-columns: 1fr;
    }

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

    .amenities-section-title,
    .gallery-section-title {
        font-size: 1.5rem;
    }

    .modal-title {
        font-size: 1.3rem;
        padding: 0.4rem 1.5rem;
    }

    .modal-content {
        max-height: 85vh;
        max-width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0 !important;
        padding: 0;
    }

    .modal-header {
        top: 10px;
    }

    .close-modal {
        top: 15px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 35px;
    }

    .footer-section ul {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
