:root {
    --gold: #FFC107;
    --dark-gold: #D39E00;
    --navy: #0D1B2A;
    --white: #ffffff;
    --bg-gray: #f4f4f4;
    --occupied: #F58220;
    --available: #00A651;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    /* This ensures the logo container doesn't force the nav to be too tall */
    height: 100%; 
}
/* LOGO & NAV CONTAINER STYLES */
.nav-header {
    height: 80px; /* Adjust this to your preferred header height */
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: var(--navy);
}

.nav-logo-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo {
    /* This keeps the logo perfectly sized to your header */
    max-height: 60px; /* Leaves 10px padding top/bottom if header is 80px */
    width: auto; /* Maintains original aspect ratio */
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05); /* Subtle interactive pop */
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    /* 1. Ensure the main container doesn't expand past the screen */
    .nav-container {
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px; /* Force a consistent header height */
    }

    /* 2. Target the logo div to align image and text */
    .navbar .logo {
        display: flex !important;
        align-items: center !important;
        font-size: 1rem !important; /* Shrink text size for mobile */
        white-space: nowrap; /* Keep CROSSED PALMS RV on one line */
        font-weight: 700;
        flex: 1; /* Allows it to take up available space */
    }

    /* 3. Constrain the logo image height */
    .nav-logo-container .nav-logo {
        max-height: 45px !important; /* Smaller logo for mobile */
        width: auto;
        display: block;
        margin-right: 5px; /* Replaces the need for &nbsp; */
    }

    /* 4. Ensure the text spans don't wrap */
    .logo .gold-text {
        font-size: 1rem !important;
    }

    /* 5. Keep the hamburger menu aligned with the centered logo */
    .hamburger {
        margin-left: 10px;
        flex-shrink: 0;
    }
}
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
}
h2, h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}
@media (max-width: 768px) {
    /* Tighten the line height for mobile wrapping */
    h1, h2, h3 {
        line-height: 1.1; /* Very tight for large text */
        margin-bottom: 15px; /* Keep space BETWEEN headings and text */
    }

    h1 {
        font-size: 2.2rem; /* Ensure it stays on screen */
        letter-spacing: -1px; /* Optional: tightens the letters too */
    }

    h2 {
        font-size: 1.8rem;
        line-height: 1.2; /* Slightly more breathing room than h1 */
    }

    h3 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
}
/* TO-DO SECTION STYLES */
.todo-section {
    background-color: rgba(255, 251, 240, 0.91);
    padding-bottom: 100px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #666;
}

.todo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.todo-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-align: left;
}

.todo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 27, 42, 0.15);
    border-color: var(--gold);
}

.todo-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10; /* Keeps all images the same size */
    overflow: hidden;
}

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

.todo-card:hover .todo-image-wrapper img {
    transform: scale(1.1);
}

.todo-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--navy);
    color: var(--gold);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.todo-content {
    padding: 20px;
}

.todo-content h4 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.3rem;
}

.todo-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .todo-grid {
        grid-template-columns: 1fr; /* Stacks on mobile */
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Update your existing split-layout container */
.split-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dropped to 300px for narrow phones */
    gap: 30px;
    justify-content: center; /* Centers the grid tracks */
    align-items: start;
}

/* MOBILE VIEW UPDATES (Inside your @media block) */
@media (max-width: 768px) {
    .split-layout {
        display: flex;
        flex-direction: column;
        align-items: center; /* Forces cards to the center of the screen */
        gap: 20px;
    }

    .form-side, .map-side {
        width: 100%; /* Spans the full available width */
        max-width: 450px; /* Prevents the cards from becoming awkwardly wide on tablets */
        margin: 0 auto; /* Safety margin for centering */
        padding: 20px; /* Slightly tighter padding for mobile screens */
    }

    /* Ensure the iframe container is also centered */
    .map-wrapper {
        width: 100%;
        display: block;
    }
}
p.section-subtitle { text-transform: uppercase; letter-spacing: 2px; font-size: 1rem; margin-bottom: 10px; color: var(--white); }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; background: var(--white); }

/* Nav Styles */
.navbar { background: var(--navy); padding: 1rem 2rem; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.nav-container { max-width: 1200px; margin: auto; display: flex; justify-content: space-between; align-items: center; }
.logo { color: white; font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; }
.gold-text { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-link { color: white; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-link:hover { color: var(--gold); }

/* Hero */
.hero { height: 60vh; background: url('../CrossesPalmsRV.mp4') center/cover; margin-top: 60px; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-overlay { background: linear-gradient(#31414f, rgba(42, 68, 84, 0.5) 47.48%, transparent); padding: 80px; border-radius: 10px; }

.btn-gold { background: var(--gold); color: var(--navy); padding: 12px 30px; border: none; border-radius: 5px; text-decoration: none; font-weight: bold; cursor: pointer; display: inline-block; margin-top: 20px; transition: 0.3s; }
.btn-gold:hover { background: var(--dark-gold); transform: translateY(-2px); }

/* Map Styling */
.section { padding: 60px 20px; }
.container { max-width: 1200px; margin: auto; }
.map-container { background: #e0e0e0; padding: 20px; border-radius: 15px; overflow-x: auto; box-shadow: inset 0 0 10px rgba(0,0,0,0.1); }
.rv-map-svg { width: 100%; min-width: 800px; height: auto; }
.lot { transition: 0.3s; stroke: #333; stroke-width: 1; }
.lot:hover { opacity: 0.7; cursor: pointer; }
.lot.available { fill: var(--available); }
.lot.occupied { fill: var(--occupied); }
/* THE MAP CONTAINER */
.rv-map-container {
    width: 100%;
    background: #e2e8f0;
    border-radius: 15px;
    border: 2px solid var(--gold);
    padding: 10px;
    position: relative;
    
    /* This allows horizontal scrolling on mobile */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}
.rv-map-legend { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; padding: 15px; background: rgba(255, 255, 255, 0.1); border-radius: 8px; }
.rv-legend-item { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 600; color: #ffffff; }
.rv-legend-box { width: 40px; height: 30px; border-radius: 4px; border: 2px solid rgba(255, 255, 255, 0.3); }
.rv-legend-occupied { background-color: #F58220; }
.rv-legend-available { background-color: #00A651; }
.rv-map-svg {
    /* Set a minimum width on mobile so it stays large enough to read */
    min-width: 800px; 
    height: auto;
    display: block;
    margin: 0 auto;
}
/* MOBILE SWIPE HINT */
/* This only shows on screens smaller than 768px */
.swipe-hint {
    display: none;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    padding: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 0 0 12px 12px;
}

@media (max-width: 768px) {
    .swipe-hint {
        display: block; /* Show only on mobile */
    }
    
    .rv-map-container {
        /* Adds a subtle shadow to indicate there's more content to the right */
        box-shadow: inset -15px 0 15px -15px rgba(0,0,0,0.3);
    }
}
.rv-lot { stroke: rgba(255, 255, 255, 0.3); stroke-width: 2; cursor: pointer; transition: all 0.3s ease; }
.rv-lot:hover { stroke: #ffffff; stroke-width: 3; filter: brightness(1.2); }
.rv-lot-text { fill: #1a1f5c; font-family: 'Courier New', monospace; font-weight: bold; font-size: 14px; pointer-events: none; text-anchor: middle; }
.rv-road { fill: #999999; }
.rv-water { fill: #5eb9e0; }
.rv-road-label { fill: #333333; font-family: Arial, sans-serif; font-size: 14px; font-weight: bold; text-anchor: middle; }
.rv-last-updated { text-align: center; margin-top: 15px; font-size: 0.9rem; opacity: 0.8; color: #ffffff; }
/* Legend */
.legend { display: flex; gap: 20px; justify-content: center; margin-bottom: 20px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-weight: bold; }
.swatch { width: 20px; height: 20px; border-radius: 3px; border: 1px solid #333; }
.swatch.available { background: var(--available); }
.swatch.occupied { background: var(--occupied); }

/* Form & Layout */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
input, textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; }

/* Mobile Menu */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px; background: white; transition: 0.3s; }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { position: fixed; left: -100%; top: 70px; flex-direction: column; background: var(--navy); width: 100%; text-align: center; transition: 0.4s; padding: 40px 0; }
    .nav-links.active { left: 0; }
    .split-layout { grid-template-columns: 1fr; }
}
/* Section Typography */
.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--dark-gold);
}

/* About Section Flexbox */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.about-text { flex: 1; }
.about-image { flex: 1; position: relative; }

.img-responsive {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--gold); /* Modern offset shadow */
}

.btn-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--gold);
}

/* Amenities Grid Styles */
.bg-navy { background: var(--navy); color: white; }
.white-text { color: white; margin-bottom: 40px; }

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

.amenity-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border-bottom: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.amenity-card h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Mobile Responsiveness for Sections */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .img-responsive {
        box-shadow: 10px 10px 0 var(--gold);
        margin-top: 30px;
    }

    .amenities-grid {
        grid-template-columns: 1fr; /* Stacks cards on mobile */
    }
}
/* Crossed Palms RV Resort Map Widget - CSS Styles */

/* .rv-map-container {
    background: #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow-x: auto;
} */

.rv-map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.rv-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.rv-legend-box {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.rv-legend-occupied {
    background-color: #F58220;
}

.rv-legend-available {
    background-color: #00A651;
}

.rv-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.rv-lot {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rv-lot:hover {
    stroke: #ffffff;
    stroke-width: 3;
    filter: brightness(1.2);
}

.rv-lot-text {
    fill: #1a1f5c;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 14px;
    pointer-events: none;
    text-anchor: middle;
}

.rv-road {
    fill: #999999;
}

.rv-water {
    fill: #5eb9e0;
}

.rv-road-label {
    fill: #333333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-anchor: middle;
}

.rv-last-updated {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    color: #5c5c5c;
    background-color: var(--gold);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .rv-map-container {
        padding: 10px;
    }
    
    .rv-map-legend {
        flex-direction: column;
        gap: 15px;
    }
    
    .rv-legend-item {
        font-size: 1rem;
    }
}

/* CONTACT SECTION ENHANCEMENTS */
.contact-section {
    background-color: var(--bg-gray); /* Light gray background to make white cards pop */
}

.split-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Card Styling for both Form and Map */
.form-side, .map-side {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.08); /* Soft navy-tinted shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

/* Subtle Gold Accent Top Border */
.form-side {
    border-top: 5px solid var(--gold);
}

.map-side {
    border-top: 5px solid var(--navy); /* Navy accent for the map side for balance */
    display: flex;
    flex-direction: column;
}

.form-side h2, .map-side h2 {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 1.8rem;
}

/* Modern Input Styling */
#contact-form input, 
#contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #edf2f7;
    border-radius: 8px;
    background: #f8fafc;
    /* Text Styling */
    font-size: 1.2rem; /* Larger, more readable text */
    color: var(--navy);
    font-family: inherit;
    transition: all 0.3s ease;
}

#contact-form input:focus, 
#contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

/* iframe / Map Wrapper */
.map-wrapper {
    flex-grow: 1;
    border-radius: 10px;
    overflow: hidden; /* Ensures the iframe corners are rounded */
    border: 1px solid #eee;
    height: 100%;
    min-height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hover Effect for Cards */
.form-side:hover, .map-side:hover {
    transform: translateY(-5px);
}

/* Responsive Tweak */
@media (max-width: 480px) {
    .form-side, .map-side {
        padding: 20px;
    }
}
/* --- SELF-CONTAINED FOOTER STYLES --- */
#site-footer {
    background-color: #0D1B2A; /* Deep Navy */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding-top: 60px;
    width: 100%;
    border-top: 4px solid #FFC107; /* Golden Accent Top */
}

/* Container to keep content away from screen edges */
.footer-wrap {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* Grid Layout: 3 columns on desktop */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo .gold-text {
    color: #FFC107;
}

.footer-heading {
    color: #FFC107;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Removing any inherited list styles */
.footer-nav-list, .footer-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-nav-list li, .footer-contact-list li {
    margin-bottom: 15px;
    color: #cbd5e0;
    line-height: 1.5;
}

.footer-nav-list a, .footer-contact-list a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-nav-list a:hover {
    color: #FFC107;
    padding-left: 5px; /* Subtle slide effect on hover */
}

.footer-link-gold {
    color: #FFC107 !important;
    font-weight: bold;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #a0aec0;
}

.agency-credit {
    color: #FFC107;
    text-decoration: none;
    font-weight: bold;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stacks columns */
        text-align: center;
    }

    .brand-info p {
        margin: 0 auto;
        max-width: 400px;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* FISHING CARD STYLES */
.fishing-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    margin-bottom: 50px;
}

.fishing-content {
    flex: 1.5;
    padding: 40px;
}

.fishing-image {
    flex: 1;
    background: #0D1B2A; /* Fallback navy */
}

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

.report-tag {
    background: var(--gold);
    color: var(--navy);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.fishing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.fish-stat .label {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.status {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
}

.status.good { background: #e6fffa; color: #2c7a7b; }
.status.excellent { background: #f0fff4; color: #2f855a; }
.status.fair { background: #fffaf0; color: #9c4221; }

.fishing-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-fishing {
    background: var(--navy);
    color: var(--gold);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-fishing:hover {
    background: var(--gold);
    color: var(--navy);
}

/* MOBILE FIXES */
@media (max-width: 992px) {
    .fishing-card {
        flex-direction: column;
    }
    .fishing-image {
        height: 250px;
        order: -1; /* Image moves to top on mobile */
    }
}