:root {
    --terracotta: #E07A5F;
    --forest: #3D405B;
    --cream: #F4F1DE;
    --sand: #F2CC8F;
    --text-dark: #222;
    
    --font-display: 'Staatliches', cursive;
    --font-body: 'Rubik', 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: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Alert */
.top-alert { background: var(--terracotta); color: var(--cream); text-align: center; padding: 5px; font-weight: bold; font-size: 0.9rem; }

/* Header */
.base-header { padding: 20px 0; background: var(--cream); border-bottom: 3px solid var(--forest); position: sticky; top: 0; z-index: 1000; }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-display); font-size: 2rem; color: var(--forest); display: flex; align-items: center; gap: 5px; letter-spacing: 1px; }
.highlight { color: var(--terracotta); }
.icon { font-size: 1.5rem; }

.camp-nav ul { display: flex; gap: 20px; list-style: none; align-items: center; }
.camp-nav a { font-weight: bold; text-transform: uppercase; font-size: 0.9rem; color: var(--forest); }
.camp-nav a:hover, .camp-nav a.active { color: var(--terracotta); }

.btn-book { background: var(--forest); color: var(--cream) !important; padding: 8px 20px; border-radius: 5px; transform: rotate(-2deg); display: inline-block; transition: 0.2s; }
.btn-book:hover { transform: rotate(0deg); background: var(--terracotta); }

/* Mobile Drawer */
.burger-menu { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.line { width: 30px; height: 4px; background: var(--forest); border-radius: 2px; }
.mobile-drawer { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--forest); z-index: 2000; display: flex; flex-direction: column; padding: 40px 20px; transition: 0.4s; box-shadow: -5px 0 20px rgba(0,0,0,0.2); }
.mobile-drawer.active { right: 0; }
.close-drawer { align-self: flex-end; background: none; border: 2px solid var(--cream); color: var(--cream); width: 30px; height: 30px; border-radius: 50%; font-weight: bold; cursor: pointer; margin-bottom: 20px; }
.mobile-drawer a { color: var(--cream); font-family: var(--font-display); font-size: 2rem; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* Hero */
.hero-camp { height: 80vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-overlay { width: 100%; height: 100%; background: rgba(61, 64, 91, 0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hero-badge { background: var(--terracotta); color: var(--cream); padding: 5px 15px; font-weight: bold; transform: rotate(-3deg); margin-bottom: 20px; border: 2px solid var(--cream); }
.hero-overlay h1 { font-family: var(--font-display); font-size: 4.5rem; color: var(--cream); line-height: 1; margin-bottom: 20px; text-shadow: 3px 3px 0 var(--forest); }
.hero-overlay p { color: var(--cream); font-size: 1.2rem; margin-bottom: 40px; font-weight: 500; }

.search-pod { background: var(--cream); padding: 15px; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); display: inline-block; border: 3px solid var(--forest); }
#bookingForm { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
#bookingForm input, #bookingForm select { padding: 10px; border: 2px solid #ddd; border-radius: 5px; font-family: var(--font-body); font-weight: bold; color: var(--forest); }
#bookingForm button { background: var(--terracotta); color: var(--cream); border: none; padding: 10px 25px; border-radius: 5px; font-weight: bold; cursor: pointer; font-family: var(--font-display); font-size: 1.2rem; }
#bookingForm button:hover { background: var(--forest); }

/* Rooms */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-display); font-size: 3rem; color: var(--forest); }
.zigzag { width: 100px; height: 10px; background: repeating-linear-gradient(45deg, var(--terracotta), var(--terracotta) 10px, transparent 10px, transparent 20px); margin: 10px auto; }

.room-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background: white; border-radius: 10px; overflow: hidden; border: 2px solid var(--forest); transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 5px 5px 0 var(--terracotta); }
.card-img { height: 200px; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { position: absolute; bottom: 10px; right: 10px; background: var(--forest); color: var(--cream); padding: 5px 10px; font-weight: bold; border-radius: 5px; font-family: var(--font-display); font-size: 1.2rem; }
.card-content { padding: 20px; }
.card-content h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); margin-bottom: 10px; }
.btn-outline { display: block; text-align: center; border: 2px solid var(--forest); color: var(--forest); padding: 8px; border-radius: 5px; font-weight: bold; margin-top: 15px; }
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* Vibes & Reviews */
.vibe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.vibe-text h1 { font-family: var(--font-display); font-size: 3.5rem; color: var(--forest); line-height: 1; }
.vibe-text .zigzag { margin: 20px 0; }
.amenities { margin-top: 30px; list-style: none; font-weight: 500; font-size: 1.1rem; }
.amenities li { margin-bottom: 10px; }
.vibe-img img { width: 100%; border-radius: 10px; border: 5px solid white; box-shadow: 10px 10px 0 var(--sand); }

.reviews-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-note { background: var(--sand); padding: 30px; position: relative; box-shadow: 3px 3px 5px rgba(0,0,0,0.1); transform: rotate(-2deg); }
.review-note.color { background: var(--terracotta); color: var(--cream); transform: rotate(2deg); }
.pin { width: 15px; height: 15px; background: var(--forest); border-radius: 50%; position: absolute; top: -7px; left: 50%; transform: translateX(-50%); }
.review-note p { font-family: 'Rubik', sans-serif; font-style: italic; margin-bottom: 15px; }
.review-note strong { font-family: var(--font-display); font-size: 1.1rem; }

/* Contact */
.contact-board { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: white; padding: 50px; border: 3px solid var(--forest); border-radius: 10px; }
.info-sheet h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--terracotta); }
.details { list-style: none; margin-top: 20px; font-size: 1.1rem; font-weight: bold; }
.details li { margin-bottom: 10px; }

.base-form label { display: block; font-weight: bold; margin-bottom: 5px; color: var(--forest); }
.base-form input, .base-form select, .base-form textarea { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 5px; margin-bottom: 20px; background: var(--cream); font-family: var(--font-body); }
.base-form input:focus { border-color: var(--terracotta); outline: none; }
.btn-submit { width: 100%; background: var(--forest); color: var(--cream); padding: 15px; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; font-family: var(--font-display); font-size: 1.3rem; }
.btn-submit:hover { background: var(--terracotta); }

/* Legal */
.legal-paper { max-width: 800px; margin: 0 auto; background: white; padding: 60px; border: 1px solid #ddd; box-shadow: 5px 5px 0 var(--forest); }
.legal-paper h1 { font-family: var(--font-display); font-size: 3rem; color: var(--forest); text-align: center; }
.legal-paper h3 { color: var(--terracotta); margin-top: 30px; font-family: var(--font-display); font-size: 1.8rem; }

/* Footer */
.base-footer { background: var(--forest); color: var(--cream); padding: 60px 0 20px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; }
.f-item h4 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; color: var(--terracotta); }
.f-item a { display: block; margin-bottom: 5px; }
.f-item a:hover { text-decoration: underline; }
.socials span { background: var(--cream); color: var(--forest); padding: 5px 10px; font-weight: bold; margin-right: 5px; border-radius: 3px; cursor: pointer; }
.copyright { text-align: center; margin-top: 20px; font-size: 0.8rem; opacity: 0.7; }

/* Cookie Toast */
.cookie-toast { position: fixed; bottom: 20px; right: 20px; background: var(--forest); color: var(--cream); padding: 15px 25px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 9999; display: none; align-items: center; gap: 15px; border: 2px solid var(--terracotta); }
.cookie-toast.show { display: flex; animation: slideUp 0.5s; }
.cookie-toast button { background: var(--terracotta); color: var(--cream); border: none; padding: 8px 15px; border-radius: 5px; font-weight: bold; cursor: pointer; font-family: var(--font-display); }

@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 900px) {
    .camp-nav { display: none; }
    .burger-menu { display: flex; }
    .hero-overlay h1 { font-size: 3rem; }
    #bookingForm { flex-direction: column; }
    .room-cards, .vibe-grid, .reviews-masonry, .contact-board { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}