:root {
    --earth-brown: #8D6E63;
    --olive-green: #558B2F;
    --cream: #F9FBE7;
    --white: #ffffff;
    --text-dark: #333333;
    
    --font-head: 'Comfortaa', cursive;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--cream);
    color: var(--text-dark);
    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 { background: var(--white); padding: 15px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--olive-green); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 5px; }
.earth { color: var(--earth-brown); }
.icon { font-size: 2rem; }

.nature-nav ul { display: flex; gap: 25px; list-style: none; align-items: center; }
.nature-nav a { font-weight: 600; font-size: 0.95rem; color: #555; }
.nature-nav a:hover, .nature-nav a.active { color: var(--olive-green); }

.btn-olive { background: var(--olive-green); color: var(--white) !important; padding: 10px 25px; border-radius: 20px; font-weight: bold; }
.btn-olive:hover { background: var(--earth-brown); }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 3px; background: var(--olive-green); border-radius: 2px; }
.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-head); font-size: 1.8rem; margin: 15px 0; color: var(--text-dark); font-weight: bold; }

/* Hero */
.hero-camping { 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; flex-direction: column; align-items: center; justify-content: center; }
.hero-content { background: rgba(255,255,255,0.9); padding: 40px; border-radius: 10px; max-width: 700px; width: 90%; }
.badge { background: var(--earth-brown); color: var(--white); padding: 5px 15px; border-radius: 15px; font-size: 0.8rem; font-weight: bold; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin: 20px 0; color: var(--olive-green); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #555; }

.search-box form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.input-group { text-align: left; flex: 1; min-width: 150px; }
.input-group label { display: block; font-size: 0.8rem; margin-bottom: 5px; font-weight: bold; color: var(--text-dark); }
.input-group input, .input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-family: var(--font-body); }
.btn-search { background: var(--earth-brown); color: var(--white); border: none; padding: 10px 20px; border-radius: 5px; font-weight: bold; cursor: pointer; align-self: flex-end; }
.btn-search:hover { background: var(--olive-green); }

/* Vehicles Grid */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--earth-brown); }
.leaf-icon { font-size: 2rem; }

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.v-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.v-card:hover { transform: translateY(-10px); }
.v-img { position: relative; height: 200px; }
.v-img img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { position: absolute; bottom: 10px; right: 10px; background: var(--olive-green); color: var(--white); padding: 5px 10px; border-radius: 5px; font-weight: bold; }
.v-info { padding: 25px; }
.v-info h3 { font-family: var(--font-head); margin-bottom: 10px; color: var(--text-dark); }
.features { list-style: none; margin: 15px 0; display: flex; gap: 15px; font-weight: 600; color: #666; }
.btn-outline { display: block; text-align: center; border: 2px solid var(--earth-brown); color: var(--earth-brown); padding: 8px; border-radius: 5px; font-weight: bold; }
.btn-outline:hover { background: var(--earth-brown); color: var(--white); }

/* About & Contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.line-deco { width: 50px; height: 3px; background: var(--olive-green); margin: 20px 0; }
.benefits { margin-top: 30px; list-style: none; font-size: 1.1rem; }
.benefits li { margin-bottom: 10px; }
.img-side img { width: 100%; border-radius: 20px; }

.contact-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 10px; border-top: 5px solid var(--olive-green); display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info h2 { font-family: var(--font-head); color: var(--earth-brown); }
.details { margin-top: 20px; font-weight: bold; color: #555; }
.nature-form input, .nature-form textarea, .nature-form select { width: 100%; padding: 12px; border: 1px solid #ddd; background: var(--cream); border-radius: 5px; font-family: var(--font-body); }
.nature-form .form-group { margin-bottom: 15px; }
.form-row { display: flex; gap: 15px; margin-bottom: 15px; }
.form-row input { flex: 1; }
.btn-submit { width: 100%; padding: 15px; background: var(--olive-green); color: var(--white); border: none; font-weight: bold; border-radius: 5px; cursor: pointer; }

/* Testimonials */
.stories-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.story-card { background: var(--white); padding: 30px; border-radius: 10px; text-align: center; }
.story-card.highlight { background: var(--earth-brown); color: var(--white); transform: scale(1.05); }
.avatar { width: 60px; height: 60px; background: #eee; border-radius: 50%; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #555; font-size: 1.2rem; }
.highlight .avatar { color: var(--earth-brown); }
.author { display: block; margin-top: 15px; font-weight: bold; font-family: var(--font-head); }

/* Legal */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 10px; }
.legal-doc h1 { font-family: var(--font-head); color: var(--olive-green); }
.legal-doc h3 { margin-top: 30px; color: var(--earth-brown); }

/* Footer */
.craft-footer { background: #3E2723; color: #D7CCC8; padding: 60px 0 20px; margin-top: 80px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #5D4037; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { font-family: var(--font-head); color: var(--olive-green); margin-bottom: 5px; }
.f-col a { color: #D7CCC8; margin-right: 20px; }
.f-col a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-box { position: fixed; bottom: 20px; left: 20px; background: var(--white); padding: 20px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); border-left: 5px solid var(--earth-brown); z-index: 9999; display: none; }
.cookie-box.active { display: block; animation: slideUp 0.5s; }
.cookie-content { display: flex; gap: 15px; align-items: center; }
.cookie-content button { background: var(--earth-brown); color: var(--white); border: none; padding: 5px 15px; border-radius: 5px; cursor: pointer; }

@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: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .vehicle-grid, .about-grid, .stories-list, .contact-box { grid-template-columns: 1fr; }
    .footer-row { flex-direction: column; text-align: center; gap: 20px; }
    .story-card.highlight { transform: none; }
}