:root {
    --forest-green: #228B22;
    --earth-orange: #D35400;
    --rock-grey: #4A4A4A;
    --off-white: #F4F4F4;
    --white: #ffffff;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--off-white);
    color: var(--rock-grey);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Topo Pattern */
.topo-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23228b22' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.wild-header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border-top: 5px solid var(--forest-green); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--rock-grey); display: flex; align-items: center; gap: 5px; text-transform: uppercase; }
.orange { color: var(--earth-orange); }
.icon { font-size: 2rem; }

.outdoor-nav a { margin-left: 20px; font-family: var(--font-head); font-weight: 500; font-size: 1.1rem; color: #555; text-transform: uppercase; }
.outdoor-nav a:hover, .outdoor-nav a.active { color: var(--earth-orange); border-bottom: 2px solid var(--earth-orange); }

.btn-wild { background: var(--earth-orange); color: var(--white) !important; padding: 8px 20px; border-radius: 4px; font-weight: bold; border-bottom: none !important; }
.btn-wild:hover { background: var(--forest-green); }

/* Mobile Menu */
.mobile-toggle { display: none; font-family: var(--font-head); font-size: 1.5rem; cursor: pointer; color: var(--forest-green); border: 2px solid var(--forest-green); padding: 5px 10px; border-radius: 4px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.open { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--rock-grey); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; color: var(--rock-grey); margin: 15px 0; font-weight: bold; }

/* Hero */
.hero-adventure { height: 80vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3)); display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; color: var(--white); padding: 20px; }
.tag { background: var(--earth-orange); padding: 5px 15px; font-family: var(--font-head); font-weight: bold; letter-spacing: 2px; border-radius: 20px; font-size: 0.9rem; }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; margin: 20px 0; line-height: 1.1; text-transform: uppercase; text-shadow: 2px 2px 0 var(--rock-grey); }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; font-weight: bold; text-shadow: 1px 1px 0 rgba(0,0,0,0.5); }

.adventure-finder { background: rgba(255,255,255,0.9); padding: 15px; border-radius: 10px; display: inline-block; }
#findTour { display: flex; gap: 10px; }
#findTour select { padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--font-body); color: var(--rock-grey); width: 200px; }
.btn-search { background: var(--forest-green); color: var(--white); border: none; padding: 12px 30px; border-radius: 5px; font-family: var(--font-head); font-size: 1.1rem; cursor: pointer; }
.btn-search:hover { background: var(--earth-orange); }

/* Activities */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 3rem; color: var(--rock-grey); margin-bottom: 10px; text-transform: uppercase; }
.orange-path { width: 100px; height: 5px; background: repeating-linear-gradient(45deg, var(--earth-orange), var(--earth-orange) 10px, transparent 10px, transparent 20px); margin: 0 auto; }
.orange-path.left { margin: 20px 0; }

.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.activity-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s; }
.activity-card:hover { transform: translateY(-10px); }
.card-img { position: relative; height: 250px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.level { position: absolute; top: 15px; right: 15px; padding: 5px 10px; color: var(--white); font-weight: bold; font-family: var(--font-head); font-size: 0.8rem; border-radius: 4px; }
.easy { background: #4CAF50; }
.medium { background: #FF9800; }
.hard { background: #F44336; }
.card-body { padding: 25px; }
.card-body h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; color: var(--forest-green); }
.link-wild { color: var(--earth-orange); font-weight: bold; font-family: var(--font-head); text-transform: uppercase; font-size: 0.9rem; }

/* Stats Strip */
.stats-strip { background: var(--forest-green); color: var(--white); padding: 40px 0; background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxwYXRoIGQ9Ik0wIDIwIEwxMCAwIEwyMCAyMCBaIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLz4KPC9zdmc+'); }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 3.5rem; line-height: 1; margin-bottom: 5px; }
.stat span { font-size: 1rem; letter-spacing: 2px; opacity: 0.8; }

/* About & Contact */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-content h1 { font-family: var(--font-head); font-size: 3rem; color: var(--forest-green); }
.gear-list { list-style: none; margin-top: 30px; font-weight: bold; color: var(--rock-grey); }
.gear-list li { margin-bottom: 10px; padding: 10px; background: var(--white); border-radius: 5px; box-shadow: 2px 2px 5px rgba(0,0,0,0.05); }
.img-content img { width: 100%; border-radius: 10px; transform: rotate(2deg); border: 5px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.booking-camp { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border-top: 5px solid var(--earth-orange); }
.camp-info { text-align: center; margin-bottom: 40px; }
.camp-info h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--rock-grey); }
.contact-detail { margin-top: 20px; font-weight: bold; color: var(--forest-green); }

.wild-form .form-row { margin-bottom: 20px; }
.wild-form label { display: block; font-weight: bold; margin-bottom: 5px; font-family: var(--font-head); letter-spacing: 1px; }
.wild-form input, .wild-form select, .wild-form textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 5px; font-family: var(--font-body); }
.wild-form input:focus, .wild-form textarea:focus { border-color: var(--forest-green); outline: none; }
.btn-submit { width: 100%; background: var(--rock-grey); color: var(--white); border: none; padding: 15px; font-family: var(--font-head); font-size: 1.2rem; border-radius: 5px; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--earth-orange); }

/* Stories & Legal */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.story-card { background: var(--white); padding: 30px; border-radius: 10px; position: relative; border: 1px solid #eee; }
.story-card.highlight { background: var(--forest-green); color: var(--white); }
.story-card.highlight .quote { color: #f4f4f4; }
.story-card.highlight .adventurer strong { color: var(--earth-orange); }
.quote { font-style: italic; margin-bottom: 20px; color: #555; }
.adventurer strong { display: block; font-family: var(--font-head); color: var(--forest-green); }
.adventurer span { font-size: 0.8rem; opacity: 0.7; }

.safety-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 10px; }
.safety-doc h1 { font-family: var(--font-head); color: var(--rock-grey); }
.safety-doc h3 { color: var(--earth-orange); margin-top: 30px; }

/* Footer */
.wild-footer { background: var(--rock-grey); color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #555; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { font-family: var(--font-head); color: var(--earth-orange); margin-bottom: 5px; letter-spacing: 1px; }
.f-col.right a { color: #aaa; margin-left: 20px; font-weight: bold; }
.f-col.right a:hover { color: var(--forest-green); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-camp { position: fixed; bottom: 20px; left: 20px; background: var(--forest-green); color: var(--white); padding: 15px 25px; border-radius: 10px; display: flex; gap: 15px; align-items: center; z-index: 9999; display: none; box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
.cookie-camp.active { display: flex; animation: slideUp 0.5s; }
.cookie-camp button { background: var(--earth-orange); color: var(--white); border: none; padding: 5px 15px; border-radius: 5px; font-family: var(--font-head); cursor: pointer; }

@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 900px) {
    .outdoor-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 3rem; }
    #findTour { flex-direction: column; }
    #findTour select, #findTour button { width: 100%; }
    .activity-grid, .about-flex, .story-grid, .stats-flex { grid-template-columns: 1fr; }
    .stats-flex { gap: 30px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}   