:root {
    --forest-green: #2E7D32;
    --earth-brown: #795548;
    --beige: #F5F5DC;
    --white: #ffffff;
    --dark-text: #333333;
    
    --font-hand: 'Caveat', cursive;
    --font-body: 'Nunito Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--beige);
    color: var(--dark-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.craft-header { padding: 20px 0; background: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.8rem; font-weight: 800; color: var(--earth-brown); display: flex; align-items: center; gap: 5px; }
.icon { font-size: 2rem; }
.green { color: var(--forest-green); }

.nature-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.nature-nav a { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; color: var(--dark-text); }
.nature-nav a:hover, .nature-nav a.active { color: var(--forest-green); }

.btn-wood { background: var(--earth-brown); color: var(--white) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; border: 2px solid var(--earth-brown); }
.btn-wood:hover { background: transparent; color: var(--earth-brown) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; font-family: var(--font-hand); font-size: 1.5rem; cursor: pointer; color: var(--forest-green); }
.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.active { right: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--earth-brown); }
.menu-links a { font-family: var(--font-hand); font-size: 2.5rem; margin: 10px 0; color: var(--forest-green); display: block; }

/* Hero */
.hero-camp { height: 80vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-overlay { width: 100%; height: 100%; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; }
.hero-content { color: var(--white); padding: 20px; max-width: 700px; }
.handwritten { font-family: var(--font-hand); font-size: 2.5rem; color: #E8F5E9; transform: rotate(-5deg); display: inline-block; margin-bottom: 10px; }
.hero-content h1 { font-size: 4rem; line-height: 1; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; }

.search-box { background: var(--white); padding: 20px; border-radius: 10px; display: inline-block; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
#camperForm { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.input-grp { text-align: left; }
.input-grp label { display: block; font-size: 0.8rem; font-weight: bold; color: var(--forest-green); margin-bottom: 5px; }
.input-grp input, .input-grp select { padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-family: var(--font-body); }
.btn-search { background: var(--forest-green); color: white; border: none; padding: 10px 25px; border-radius: 5px; font-weight: bold; cursor: pointer; align-self: flex-end; }
.btn-search:hover { background: var(--earth-brown); }

/* Vans Grid */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: 2.5rem; color: var(--forest-green); margin-bottom: 10px; }
.leaf-separator { font-size: 2rem; }

.van-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.van-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.van-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.van-img { height: 250px; position: relative; }
.van-img img { width: 100%; height: 100%; object-fit: cover; }
.tag { position: absolute; top: 15px; left: 15px; background: var(--earth-brown); color: white; padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.van-info { padding: 25px; }
.van-info h3 { font-family: var(--font-hand); font-size: 2rem; margin-bottom: 10px; color: var(--dark-text); }
.specs { display: flex; gap: 15px; margin: 15px 0; font-size: 0.9rem; color: #666; font-weight: bold; }
.link-detail { color: var(--forest-green); font-weight: 800; text-decoration: underline; }

/* About & Story */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-col h1 { font-family: var(--font-hand); font-size: 3.5rem; color: var(--earth-brown); line-height: 1; margin-bottom: 20px; }
.features-list { margin-top: 30px; list-style: none; font-size: 1.1rem; }
.features-list li { margin-bottom: 10px; }
.img-col img { width: 100%; border-radius: 10px; border: 10px solid var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Reviews */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.story-card { text-align: center; }
.polaroid { background: white; padding: 10px 10px 40px 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transform: rotate(-2deg); margin-bottom: 20px; }
.polaroid img { width: 100%; height: 250px; object-fit: cover; filter: sepia(30%); }
.story-card blockquote { font-style: italic; color: #555; margin-bottom: 10px; }
.story-card cite { font-weight: bold; color: var(--forest-green); font-family: var(--font-hand); font-size: 1.5rem; }

/* Contact */
.contact-camp { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); padding: 50px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.camp-info h2 { font-family: var(--font-hand); font-size: 3rem; color: var(--forest-green); margin-bottom: 20px; }
.wood-sign { background: var(--earth-brown); color: var(--beige); padding: 30px; border-radius: 5px; margin-top: 30px; border: 2px solid #5D4037; }
.wood-sign p { margin-bottom: 10px; font-weight: bold; }

.nature-form .form-group { margin-bottom: 20px; }
.nature-form input, .nature-form select, .nature-form textarea { width: 100%; padding: 15px; border: 2px solid #eee; border-radius: 8px; font-family: var(--font-body); background: #fafafa; }
.nature-form input:focus { border-color: var(--forest-green); outline: none; }
.btn-submit { width: 100%; padding: 15px; background: var(--forest-green); color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-size: 1.1rem; }
.btn-submit:hover { background: var(--earth-brown); }

/* Legal */
.rules-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 10px; }
.rules-content h1 { font-family: var(--font-hand); text-align: center; color: var(--earth-brown); font-size: 3rem; }
.rules-content h3 { color: var(--forest-green); margin-top: 30px; }
.leaf-separator { text-align: center; font-size: 2rem; margin-bottom: 40px; }

/* Footer */
.craft-footer { background: var(--dark-text); color: var(--beige); 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; }
.f-logo h4 { font-family: var(--font-hand); font-size: 2rem; margin-bottom: 5px; color: var(--forest-green); }
.f-links a { color: #ccc; margin-left: 20px; font-weight: bold; }
.f-links a:hover { color: var(--forest-green); }
.copyright { text-align: center; margin-top: 20px; font-size: 0.8rem; color: #777; }

/* Cookie Banner */
.cookie-box { position: fixed; bottom: 20px; left: 20px; background: var(--white); padding: 20px; border-left: 5px solid var(--forest-green); box-shadow: 0 5px 20px rgba(0,0,0,0.1); z-index: 9999; display: none; max-width: 300px; }
.cookie-box.active { display: block; animation: slideUp 0.5s; }
.cookie-box p { margin-bottom: 15px; }
.cookie-box button { background: var(--forest-green); color: white; border: none; padding: 8px 20px; border-radius: 20px; cursor: pointer; font-weight: bold; }

@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 900px) {
    .nature-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 3rem; }
    .van-grid, .about-story, .stories-grid, .contact-camp { grid-template-columns: 1fr; }
    .search-box form { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}