/* --- Global Reset & Variables --- */
:root {
    --primary-green: #2E5936;   /* Dark Green from trees */
    --accent-gold: #F2A900;     /* Sun/Yellow from logo */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f4f4;
    --white: #ffffff;
    --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-weight: 700; color: var(--primary-green); margin-bottom: 1rem; }
p { margin-bottom: 1rem; }

/* --- Top Info Bar --- */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}
.top-bar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.top-bar a { color: var(--accent-gold); font-weight: 600; }
.top-bar a:hover { color: var(--white); }

/* --- Navigation --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}
.logo img {
    height: 60px; /* Adjust based on logo file */
    width: auto;
}
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary-green);
}
.btn-payment {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem !important;
}
.btn-payment:hover {
    background-color: var(--accent-gold);
    color: var(--text-dark) !important;
}
.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-green);
}

/* --- Hero Section --- */
.hero {
    /* Using one of the real park photos for background */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Humble-rv-park.png');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}
.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}
.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* --- Button Styles --- */
.btn-cta {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 15px 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
    text-transform: uppercase;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Default Hover (Gold Text/Outline for white backgrounds) */
.btn-cta:hover {
    background-color: transparent;
    color: var(--accent-gold); 
    border-color: var(--accent-gold);
}

/* Hero Button Specific Hover (White Text/Outline for dark backgrounds) */
.hero .btn-cta:hover {
    color: var(--white);
    border-color: var(--white);
}

/* --- Content Sections --- */
.section {
    padding: 80px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.bg-light { background-color: var(--bg-light); width: 100%; }
.text-center { text-align: center; }

.intro-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Feature Grid with Images */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.feature-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.feature-content { padding: 25px; }
.feature-content h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}
.step-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    position: relative;
}
.step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent-gold);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-dark);
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 500px;
    border-left: 5px solid var(--accent-gold);
}
.review-text { font-style: italic; font-size: 1.1rem; margin-bottom: 15px; }
.review-author { font-weight: 700; color: var(--primary-green); text-decoration: underline; }

/* Pricing Cards (Rent Page) */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.pricing-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.pricing-card.highlight {
    border: 2px solid var(--primary-green);
    transform: scale(1.02);
}
.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0;
}
.price span { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.pricing-features { margin-bottom: 30px; text-align: left; }
.pricing-features li { margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; 
    min-height: 600px;
}
.contact-info {
    padding: 60px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-map { width: 100%; min-height: 400px; }

/* FAQ */
details {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #eee;
    cursor: pointer;
}
summary {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
details[open] summary { border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 15px; }

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 50px 20px;
    margin-top: auto;
}
footer h3 { color: var(--accent-gold); margin-bottom: 20px; }
footer a { color: var(--white); text-decoration: underline; }
footer a:hover { color: var(--accent-gold); }

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-icon { display: block; }
    .hero h1 { font-size: 2rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .top-bar-container { flex-direction: column; gap: 5px; }
}