:root {
    --primary: #2d5016;
    --primary-light: #4a7c2c;
    --secondary: #8b6914;
    --accent: #d4894e;
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #fafafa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?w=1600&q=80') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow);
}

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

.card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.card p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.card .small {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

/* Sections */
.section {
    background: var(--white);
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

.section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.two-column ul {
    list-style: none;
    padding: 0;
}

.two-column ul li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Available Sites */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.site-box {
    background: var(--primary-light);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.site-box:hover {
    transform: scale(1.05);
    background: var(--primary);
}

/* Trail Cards */
.trail-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary);
}

.trail-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.trail-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.badge {
    background: var(--secondary);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Image Placeholder */
.image-placeholder {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
}

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

.caption {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 8px;
    font-size: 1.05rem;
}

.amenity .icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.amenity.no-icon .icon {
    color: #999;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.activity-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

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

.activity-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.activity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Warning Section */
.warning-section {
    background: #fff8f0;
    border: 2px solid var(--accent);
}

.warning-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid var(--accent);
}

.warning-box h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #f5f9f2 0%, #e8f5e3 100%);
    border: 2px solid var(--primary-light);
}

/* Checklist */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.checklist-column h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.checklist ul {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contact-info {
    margin-top: 2rem;
    opacity: 0.95;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Footer */
footer {
    background: var(--text);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer .small {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Campsite Type Cards */
.campsite-type-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campsite-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px var(--shadow);
}

.campsite-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campsite-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.price-tag {
    background: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.campsite-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    padding: 2rem;
}

.campsite-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
}

.campsite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 250px;
}

.campsite-details h4 {
    color: var(--primary);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.1rem;
}

.campsite-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
}

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

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

.campsite-specs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.spec {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Pricing Summary */
.pricing-summary {
    background: linear-gradient(135deg, #f5f9f2 0%, #e8f5e3 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 2px solid var(--primary-light);
}

.pricing-summary h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.pricing-option {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow);
}

.pricing-type {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.pricing-calc {
    font-size: 1.05rem;
}

.pricing-calc > div {
    padding: 0.5rem 0;
    color: var(--text);
}

.pricing-total {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
    border-top: 2px solid var(--border);
}

.pricing-note {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Print Styles */
@media print {
    .hero {
        display: none;
    }

    .section {
        box-shadow: none;
        page-break-inside: avoid;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .campsite-content {
        grid-template-columns: 1fr;
    }

    .campsite-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .hero {
        height: 300px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .info-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .card p {
        font-size: 1.3rem;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 2rem 1.5rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

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

    .sites-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trail-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .campsite-content {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero {
        height: 250px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.25rem;
    }

    .section {
        padding: 1.5rem 1rem;
    }

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

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

    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campsite-header h3 {
        font-size: 1.2rem;
    }

    .price-tag {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }

    .campsite-content {
        padding: 1rem;
        gap: 1.5rem;
    }

    .campsite-image img {
        min-height: 200px;
    }

    .campsite-description {
        font-size: 0.95rem;
    }

    .amenity-list li {
        font-size: 0.9rem;
    }

    .spec {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .pricing-option {
        padding: 1rem;
    }

    .pricing-type {
        font-size: 1.1rem;
    }

    .pricing-calc {
        font-size: 0.95rem;
    }

    .pricing-total {
        font-size: 1.2rem !important;
    }
}
