/* style.css - Global Styles, Header, Footer, and All Page Styles */

/* --- 1. GLOBAL VARIABLES & RESET --- */
:root {
    --primary-green: #2C5F2D;
    --accent-green: #97BC62;
    --lake-blue: #5D737E;
    --sand: #F4F1EA;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-head: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Montserrat', 'Verdana', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--sand);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* FIX: Added 'height: auto' to prevent images from squishing on mobile */
img { 
    max-width: 100%; 
    display: block; 
    height: auto; 
}

ul { list-style: none; }

/* --- 2. HEADER & NAV --- */
#app-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header {
    background-color: var(--primary-green);
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px; 
}

.logo-link { display: flex; align-items: center; }
.logo-img { max-height: 60px; width: auto; }

nav ul#nav-links { display: flex; gap: 1.5rem; align-items: center; }

nav a {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

nav a:hover, nav a.active { 
    color: white; 
    text-decoration: underline;
    text-decoration-color: var(--accent-green);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.nav-book-btn {
    background-color: var(--accent-green);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    color: var(--text-dark) !important; 
    font-weight: 700 !important;
}
.nav-book-btn:hover { background-color: white; }

/* Mobile Menu */
.mobile-menu-btn { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

.mobile-dropdown {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-green);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-dropdown a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    display: block;
}

/* --- 3. FOOTER --- */
footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 4rem 2rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4, .footer-col h3 { color: white; margin-bottom: 1.5rem; font-family: var(--font-head); font-size: 1.2rem; }
.footer-col p { margin-bottom: 0.5rem; }

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

/* --- 4. COMMON PAGE ELEMENTS --- */
.hero {
    height: 90vh; 
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/background.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 1rem;
    position: relative; 
}

.hero h1 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.6); }
.hero p { font-size: 1.3rem; max-width: 700px; margin-bottom: 2rem; text-shadow: 1px 1px 3px rgba(0,0,0,0.6); font-weight: 500; }

.hero-icon {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.content-section {
    padding: 4rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

details {
    background: white;
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.2rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: background 0.2s;
}

summary:hover { background-color: #f9f9f9; color: var(--primary-green); }
summary::-webkit-details-marker { display: none; } 
summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-green); font-weight: 400; }
details[open] summary::after { content: '-'; }
details[open] summary { border-bottom: 1px solid #eee; }

/* --- 5. INDEX (HOME) PAGE --- */
.cta-btn {
    background-color: var(--accent-green); 
    color: var(--text-dark); 
    padding: 1rem 2.5rem;
    font-weight: 700; 
    border-radius: 5px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    border: 2px solid var(--accent-green); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.cta-btn:hover { background-color: transparent; color: var(--text-light); border-color: var(--text-light); }

.intro { text-align: center; padding: 5rem 2rem; background: white; }
.intro h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--primary-green); margin-bottom: 1rem; }
.intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.1rem; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; padding: 4rem 10%; background-color: var(--sand); }
.card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.card:hover { transform: translateY(-10px); }
.card-img { height: 250px; background-color: #ddd; background-size: cover; background-position: center; }
.card-content { padding: 2rem; text-align: center; }
.card h3 { font-family: var(--font-head); color: var(--primary-green); margin-bottom: 1rem; font-size: 1.5rem; }
.card-link { color: var(--lake-blue); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; margin-top: 1rem; display: inline-block; border-bottom: 2px solid transparent; }
.card-link:hover { border-bottom: 2px solid var(--lake-blue); }

.amenities-section { background-color: var(--primary-green); color: white; padding: 5rem 2rem; text-align: center; }
.amenities-section h2 { font-family: var(--font-head); margin-bottom: 3rem; font-size: 2.5rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2.5rem; max-width: 1100px; margin: 0 auto; }
.amenity-item { display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform 0.2s; }
.amenity-item:hover { transform: scale(1.05); }
.amenity-icon { font-size: 2rem; background: rgba(255,255,255,0.1); width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); }

.view-all-link { 
    display: inline-block; 
    margin-top: 3rem; 
    color: var(--primary-green); 
    font-weight: bold; 
    text-decoration: underline; 
    background-color: white; 
    padding: 10px 20px;
    border-radius: 50px;
}
.view-all-link:hover { background-color: var(--accent-green); color: white; text-decoration: none; }

/* --- 6. ABOUT US PAGE --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-text h2 { font-family: var(--font-head); color: var(--primary-green); font-size: 2.2rem; margin-bottom: 1.5rem; }
.about-text p { color: #555; font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.about-img-box { position: relative; }
.about-img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.values-section { background-color: var(--sand); padding: 5rem 10%; text-align: center; }
.values-section h2 { font-family: var(--font-head); color: var(--primary-green); font-size: 2.2rem; margin-bottom: 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.value-card { background: white; padding: 2.5rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.value-card:hover { transform: translateY(-5px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.value-card h3 { color: var(--text-dark); margin-bottom: 1rem; font-family: var(--font-head); }
.value-card p { color: #666; line-height: 1.6; }

/* --- 7. AMENITIES PAGE --- */
.amenity-row { display: flex; flex-wrap: wrap; background: white; align-items: center; }
.amenity-row:nth-child(even) { background-color: #f9f9f9; flex-direction: row-reverse; }
.amenity-content { flex: 1; min-width: 300px; padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.amenity-image { flex: 1; min-width: 300px; width: 100%; height: auto; display: block; object-fit: cover; }
.amenity-content h2 { font-family: var(--font-head); color: var(--primary-green); font-size: 2rem; margin-bottom: 1rem; }
.amenity-content p { color: #555; margin-bottom: 1.5rem; }
.amenity-content ul { list-style: none; margin-top: 1rem; }
.amenity-content li { margin-bottom: 0.8rem; display: flex; align-items: flex-start; }
.amenity-content li::before { content: "✔"; color: var(--accent-green); margin-right: 10px; font-weight: bold; }

.attractions { padding: 5rem 10%; text-align: center; background-color: var(--primary-green); color: white; }
.attractions h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 3rem; }
.attractions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; text-align: left; }
.attraction-card { background: rgba(255,255,255,0.1); padding: 2.5rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); transition: transform 0.2s ease; }
.attraction-card:hover { transform: translateY(-5px); }
.attraction-card h3 { font-family: var(--font-head); margin-bottom: 1.5rem; font-size: 1.5rem; color: var(--accent-green); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; }
.rec-list li { margin-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }
.rec-list strong { display: block; color: white; font-size: 1.1rem; }
.rec-list span { font-size: 0.9rem; color: #ddd; display: block; margin-top: 2px; }

/* --- 8. STAY & RATES PAGE --- */
.season-ad { background-color: white; border: 2px solid var(--primary-green); padding: 3rem 2rem; border-radius: 8px; text-align: center; margin-bottom: 4rem; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.season-ad h2 { font-family: var(--font-head); color: var(--primary-green); margin-bottom: 1rem; font-size: 2.2rem; }
.season-ad p { max-width: 800px; margin: 0 auto 2rem auto; color: var(--text-dark); font-size: 1.1rem; line-height: 1.6; }

.request-btn { background-color: var(--primary-green); color: white; padding: 1.2rem 2.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 5px; display: inline-block; transition: all 0.2s ease; border: 2px solid var(--primary-green); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.request-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.3); background-color: #244f25; border-color: #244f25; }

.specials-banner { background-color: var(--primary-green); color: white; padding: 3rem 2rem; border-radius: 8px; text-align: center; margin-bottom: 3rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.specials-banner h3 { font-family: var(--font-head); color: white; margin-bottom: 1.5rem; font-size: 1.8rem; }
.specials-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 2rem; }
.special-item { background: rgba(255,255,255,0.1); padding: 15px 25px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.2); font-size: 1rem; }
.specials-req-btn { display: inline-block; background-color: white; color: var(--primary-green); padding: 0.8rem 2rem; border-radius: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; font-size: 0.9rem; }
.specials-req-btn:hover { background-color: var(--accent-green); color: white; }

.main-action-area { text-align: center; margin: 3rem 0; padding-bottom: 2rem; }
.main-book-btn { background-color: var(--accent-green); color: var(--primary-green); padding: 1rem 3rem; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 50px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: all 0.3s ease; display: inline-block; }
.main-book-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.25); background-color: white; }

.accom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; margin-bottom: 4rem; }
.accom-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: 1px solid #eee; transition: transform 0.3s ease; display: flex; flex-direction: column; }
.accom-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.accom-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.accom-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--primary-green); display: flex; justify-content: space-between; align-items: center; }
.accom-subtitle { color: var(--lake-blue); font-size: 0.85rem; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.5px; }
.accom-desc { color: #555; margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.6; }
.bedding-info { background: #f4f4f4; padding: 10px; border-radius: 4px; font-size: 0.85rem; color: #444; margin-bottom: 1.5rem; border-left: 3px solid var(--lake-blue); }
.card-amenities { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 1.5rem; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.card-amenity { display: flex; align-items: center; font-size: 0.85rem; color: var(--text-dark); font-weight: 500; }
.card-amenity span { margin-right: 6px; font-size: 1.1rem; }

.rates-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 0.85rem; background: #f9f9f9; border-radius: 4px; overflow: hidden; }
.rates-table th, .rates-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #eee; }
.rates-table th { background: var(--sand); color: var(--text-dark); }
.booking-rules { margin-top: 15px; padding-top: 10px; border-top: 1px dashed #ccc; font-size: 0.85rem; color: #444; }
.booking-rules strong { color: var(--primary-green); }
.fine-print { font-size: 0.75rem; color: #666; margin-top: 10px; line-height: 1.4; font-style: italic; }

.comparison-wrapper { background: white; padding: 3rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-top: 2rem; }
.comparison-wrapper h3 { font-family: var(--font-head); font-size: 2rem; color: var(--primary-green); text-align: center; margin-bottom: 2rem; }
.comp-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; display: block; }
.comp-table th, .comp-table td { padding: 12px; text-align: center; border-bottom: 1px solid #ddd; font-size: 0.9rem; }
.comp-table th:first-child, .comp-table td:first-child { text-align: left; font-weight: 700; background-color: var(--sand); width: 25%; }
.comp-table th { background-color: var(--primary-green); color: white; }
.comp-table tr:nth-child(even) { background-color: #f9f9f9; }
.check { color: var(--primary-green); font-weight: bold; font-size: 1.1rem; }
.cross { color: #ccc; }

.final-cta { text-align: center; margin-top: 4rem; background-color: #1a1a1a; padding: 4rem 2rem; border-radius: 8px; color: white; }
.final-cta p.headline { font-family: var(--font-head); font-size: 2rem; margin-bottom: 2rem; }
.footer-book-btn { background-color: var(--accent-green); color: var(--primary-green); padding: 1rem 3rem; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 50px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: all 0.3s ease; display: inline-block; }
.footer-book-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.25); background-color: white; }
.policies-link { display: block; margin-top: 1rem; color: #ccc; font-size: 0.85rem; text-decoration: underline; }
.policies-link:hover { color: white; }

/* --- 9. ACTIVITIES PAGE --- */
.intro-block { max-width: 900px; margin: 0 auto 3rem auto; text-align: center; background: white; padding: 3rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.intro-block h2 { font-family: var(--font-head); color: var(--primary-green); margin-bottom: 1.5rem; font-size: 2rem; }
.intro-block p { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 1.5rem; }
.intro-block p:last-child { margin-bottom: 0; }

.filter-bar { max-width: 1000px; margin: 0 auto 2rem auto; text-align: center; background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.filter-controls { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.filter-input { padding: 10px 15px; border: 1px solid #ddd; border-radius: 50px; font-size: 1rem; font-family: var(--font-body); outline: none; transition: 0.3s; }
.filter-input:focus { border-color: var(--accent-green); box-shadow: 0 0 5px rgba(0,0,0,0.1); }
#search-input { flex-grow: 1; max-width: 400px; }
#month-filter { min-width: 150px; cursor: pointer; background-color: white; }
.filter-note { margin: 0; color: #555; font-size: 0.85rem; font-style: italic; margin-top: 10px; }
#loading-msg { text-align: center; font-size: 1.2rem; color: var(--primary-green); margin-top: 3rem; font-weight: 600; }

.events-container { max-width: 1000px; margin: 0 auto; }
.event-row { background: white; padding: 2rem; border-radius: 8px; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; border-left: 5px solid var(--accent-green); transition: transform 0.2s ease; }
.event-row:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.event-date-box { text-align: center; min-width: 80px; margin-right: 2rem; }
.event-month { display: block; color: var(--primary-green); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.event-day { display: block; font-size: 2.2rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.event-details { flex-grow: 1; }
.event-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--primary-green); margin-bottom: 0.5rem; }
.event-meta { font-size: 0.95rem; color: #666; display: flex; gap: 20px; flex-wrap: wrap; }
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-actions { margin-left: 2rem; }
.save-event-btn { background-color: white; border: 2px solid var(--accent-green); color: var(--primary-green); padding: 0.6rem 1.2rem; border-radius: 5px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; white-space: nowrap; }
.save-event-btn:hover { background-color: var(--accent-green); color: white; }

/* --- 10. GUEST INFO & WIFI --- */
.faq-group {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start; 
}

.faq-group h2 { 
    grid-column: 1 / -1;
    color: var(--primary-green); 
    font-family: var(--font-head); 
    border-bottom: 2px solid var(--accent-green); 
    padding-bottom: 10px; 
    margin-bottom: 1.5rem; 
}

.faq-group details {
    margin-bottom: 0;
    width: 100%;
}

.faq-content { padding: 1.5rem; color: #555; line-height: 1.7; background-color: #fafafa; }
.faq-content ul { list-style: disc; margin-left: 1.5rem; margin-bottom: 1rem; }
.faq-content li { margin-bottom: 0.5rem; }
.highlight-table { width: 100%; border-collapse: collapse; margin-top: 1rem; background: white; }
.highlight-table th, .highlight-table td { border: 1px solid #ddd; padding: 10px; text-align: left; font-size: 0.9rem; }
.highlight-table th { background-color: var(--sand); color: var(--primary-green); }
.gate-note { background-color: #e8f5e9; color: #2e7d32; padding: 1rem; border-radius: 4px; margin-top: 1rem; font-size: 0.9rem; border-left: 4px solid #2e7d32; }

/* Wifi Specific */
.wifi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.wifi-card { background: white; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid #eee; }
.wifi-card.premium { border: 2px solid var(--primary-green); transform: scale(1.02); }
.wifi-header { padding: 2rem; text-align: center; background-color: #f4f4f4; border-bottom: 1px solid #ddd; }
.wifi-card.premium .wifi-header { background-color: var(--primary-green); color: white; }
.wifi-header h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 0.5rem; }
.wifi-header span { font-weight: bold; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.wifi-header .ssid-info { font-size: 0.85rem; margin-top: 5px; color: #555; display: block; }
.wifi-card.premium .wifi-header .ssid-info { color: rgba(255,255,255,0.8); }
.wifi-body { padding: 2rem; }
.wifi-body ul { list-style: none; }
.wifi-body li { margin-bottom: 1rem; border-bottom: 1px solid #f0f0f0; padding-bottom: 1rem; }
.wifi-body li strong { display: block; color: var(--text-dark); margin-bottom: 0.2rem; }
.wifi-body li span { font-size: 0.9rem; color: #666; }

.pricing-box { background-color: var(--sand); padding: 3rem; border-radius: 8px; text-align: center; margin-bottom: 4rem; }
.pricing-box h2 { font-family: var(--font-head); color: var(--primary-green); margin-bottom: 2rem; }
.price-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.price-item { background: white; padding: 1.5rem; border-radius: 6px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); min-width: 200px; }
.price-item h4 { color: var(--primary-green); margin-bottom: 0.5rem; }
.price-item .cost { font-size: 1.5rem; font-weight: bold; color: var(--text-dark); }
.price-item p { font-size: 0.85rem; color: #777; margin-top: 0.5rem; }

.info-block { margin-bottom: 3rem; }
.info-block h3 { color: var(--primary-green); margin-bottom: 1rem; font-family: var(--font-head); }
.info-block p, .info-block li { margin-bottom: 1rem; color: #555; }
.info-block ol { margin-left: 1.5rem; }

.terms-container { background: #f9f9f9; padding: 2rem; border-radius: 8px; border: 1px solid #eee; }
.terms-preview { color: #555; line-height: 1.6; margin-bottom: 1rem; }
.read-more-btn { color: var(--primary-green); font-weight: 700; cursor: pointer; text-decoration: underline; display: inline-block; }
.full-terms { display: none; margin-top: 1rem; color: #555; font-size: 0.9rem; line-height: 1.6; border-top: 1px solid #ddd; padding-top: 1rem; }

.faq-answer { padding: 10px 0 20px 0; color: #555; font-size: 0.95rem; line-height: 1.7; }
.step-title { color: var(--primary-green); font-weight: 700; display: block; margin-top: 15px; margin-bottom: 5px; }

/* --- 11. MAP PAGE --- */
.map-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem auto; color: #555; font-size: 1.1rem; }
.map-block { margin-bottom: 5rem; background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #eee; }
.map-block h2 { font-family: var(--font-head); color: var(--primary-green); margin-bottom: 1rem; font-size: 1.8rem; text-align: center; }
.map-wrapper { position: relative; overflow: hidden; border-radius: 6px; border: 2px solid #eee; transition: transform 0.3s ease; cursor: pointer; }
.map-wrapper:hover { border-color: var(--accent-green); transform: scale(1.01); }
.map-img { width: 100%; height: auto; display: block; }
.download-hint { text-align: center; margin-top: 10px; font-size: 0.9rem; color: #555; font-style: italic; }

.specs-container { margin-top: 2rem; background-color: var(--sand); padding: 2rem; border-radius: 6px; }
.specs-title { font-weight: 700; color: var(--primary-green); margin-bottom: 1rem; text-align: center; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.spec-group h3 { color: var(--text-dark); border-bottom: 2px solid var(--accent-green); padding-bottom: 5px; margin-bottom: 10px; font-size: 1rem; }
.spec-list { list-style: none; font-size: 0.9rem; color: #555; }
.spec-list li { margin-bottom: 5px; display: flex; justify-content: space-between; }
.pull-in { color: var(--primary-green); font-weight: 700; font-size: 0.8rem; }

/* --- MAP JUMP BUTTON STYLES --- */
.map-jump-container {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.btn-jump {
    display: inline-block;
    text-decoration: none;
    background-color: #2e5c38; /* Matches your likely brand green */
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #2e5c38;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-jump:hover {
    background-color: white;
    color: #2e5c38;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

/* Scroll Adjustment for Anchor Links */
/* This ensures the map title isn't hidden behind a sticky header when linked */
#short-term, 
#seasonal {
    scroll-margin-top: 120px; 
}


/* --- 12. CONTACT & BOOKING --- */
.contact-info { text-align: center; padding: 3rem 10%; background-color: white; }
.contact-info p { margin-bottom: 0.5rem; font-size: 1.1rem; }

.form-container { 
    background: white; 
    padding: 3rem; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    max-width: 800px; 
    margin: 0 auto 4rem auto;
    content-visibility: auto; 
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--primary-green); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; font-family: var(--font-body); transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-green); outline: none; box-shadow: 0 0 5px rgba(151, 188, 98, 0.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.submit-btn { background-color: var(--primary-green); color: white; padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 700; border: none; border-radius: 5px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; width: 100%; transition: 0.3s; }
.submit-btn:hover { background-color: var(--accent-green); color: white; }
.form-section-title { margin-top: 2rem; margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--sand); font-family: var(--font-head); color: var(--text-dark); font-size: 1.4rem; }

.policy-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    max-width: 1200px; 
    margin: 3rem auto; 
    padding: 0 5%;
    content-visibility: auto;
}

.policy-card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-top: 4px solid var(--primary-green); }
.policy-card h3 { color: var(--primary-green); margin-bottom: 1rem; font-family: var(--font-head); font-size: 1.4rem; }
.policy-card p { font-size: 0.9rem; color: #555; line-height: 1.6; margin-bottom: 1rem; }
.highlight-box { background-color: #e8f5e9; padding: 15px; border-radius: 5px; font-size: 0.9rem; color: #2e7d32; border-left: 4px solid #2e7d32; margin-top: 1rem; }
.terms-check { margin-top: 2rem; background: #fff; padding: 1.5rem; border: 1px solid #ddd; border-radius: 5px; display: flex; gap: 15px; align-items: flex-start; }
.terms-check input { width: 20px; height: 20px; margin-top: 3px; cursor: pointer; }
.terms-check label { font-size: 0.9rem; color: #444; cursor: pointer; line-height: 1.5; }

/* Thank You Page */
.thank-you-box { text-align: center; padding: 5rem 2rem; max-width: 600px; margin: 0 auto; }
.thank-you-box h1 { color: var(--primary-green); font-size: 2.5rem; margin-bottom: 1rem; }
.thank-you-box p { font-size: 1.1rem; color: #555; margin-bottom: 2rem; }

/* --- 13. IMAGE GALLERY & LIGHTBOX --- */
.accom-gallery {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-green);
}

.gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}
.gallery-track::-webkit-scrollbar { display: none; } 

.gallery-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.85rem;
    padding: 8px 15px;
    text-align: center;
    font-weight: 500;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.gallery-btn:hover { background: rgba(0, 0, 0, 0.7); }
.gallery-btn.prev { left: 10px; }
.gallery-btn.next { right: 10px; }

/* Lightbox Modal */
#lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.1rem;
    text-align: center;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    font-weight: bold;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 2001; 
    border-radius: 5px;
    transition: 0.3s;
    user-select: none;
}
.lightbox-nav-btn:hover { background: rgba(0,0,0,0.8); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- 14. RESPONSIVE UTILITIES --- */
/* Tablet and smaller (960px and down) */
@media (max-width: 960px) {
    nav ul#nav-links { display: none; } 
    .mobile-menu-btn { display: block; } 
    
    .content-section, .features, .intro {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .form-row { grid-template-columns: 1fr; }
    .form-container { padding: 1.5rem; }
    
    .policy-grid { 
        grid-template-columns: 1fr;
        padding: 0; 
        gap: 1.5rem;
        margin: 2rem auto; 
    }
    
    .event-row { flex-direction: column; text-align: center; align-items: center; }
    .event-date-box { margin-right: 0; margin-bottom: 1rem; }
    .event-meta { justify-content: center; margin-bottom: 1.5rem; }
    .event-actions { margin-left: 0; }
    
    .features { padding: 2rem 1rem; }
    .intro { padding: 3rem 1rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-img-box { order: -1; } 
    .values-section { padding: 3rem 1rem; }

    .amenity-row { flex-direction: column !important; }
    .amenity-content { padding: 2rem 1rem; }
    .amenity-image { width: 100%; height: 250px; }
    .attractions { padding: 3rem 1rem; }
    
    .season-ad, .specials-banner { 
        padding: 2rem 1rem; 
        width: 100%; 
        box-sizing: border-box; 
    }
    .season-ad h2, .season-ad p {
        word-wrap: break-word; 
    }

    .comparison-wrapper { padding: 2rem 1rem; max-width: 100%; }
    
    .table-scroll { 
        width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        display: block; 
    }
    .comp-table { 
        width: 100%; 
        min-width: 0; 
    }
    .comp-table th, .comp-table td { font-size: 0.8rem; padding: 8px 4px; }
    
    .final-cta { padding: 3rem 1rem; }
}

/* Mobile Phones (768px and down) */
@media (max-width: 768px) {
    .hero {
        height: 100svh;
        background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/background-mobile.webp');
        background-position: center;
        background-size: cover;
    }
    
    .page-hero h1, .hero h1 { font-size: 2rem; line-height: 1.2; }
    .hero p { font-size: 1.1rem; }
    
    .content-section { padding: 3rem 1rem; } 
    
    .wifi-grid, 
    .accom-grid, 
    .values-grid, 
    .amenities-grid,
    .attractions-grid,
    .specials-grid,
    .faq-group {
        grid-template-columns: 1fr !important; 
    }

    .accom-gallery { height: 200px; }
    .accom-content { padding: 1.5rem; }

    footer { padding: 3rem 1rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    
    .scroll-indicator {
        bottom: 75px !important;
    }
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    padding: 20px; 
    opacity: 0.8;
    transition: opacity 0.3s;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    display: block;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3)); 
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero, .global-hero, .page-hero {
    position: relative;
}

/* --- DISABLE IMAGE DRAGGING & HIGHLIGHTING --- */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none; /* Prevents highlighting the image like text */
    pointer-events: auto; /* Ensures they can still click links wrapped around images */
}