:root {
    --charcoal: #2C3E50;
    --yellow: #F1C40F;
    --white: #ECF0F1;
    --grey: #95a5a6;
    
    --font-head: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--charcoal);
    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; }

/* Header */
.nest-header { padding: 15px 0; background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; color: var(--charcoal); display: flex; align-items: center; gap: 5px; }
.yellow { color: var(--yellow); }
.icon { font-size: 1.5rem; color: var(--yellow); }

.nest-nav ul { display: flex; gap: 20px; list-style: none; align-items: center; }
.nest-nav a { font-weight: 700; font-size: 1rem; color: var(--grey); }
.nest-nav a:hover, .nest-nav a.active { color: var(--charcoal); }

.btn-yellow { background: var(--yellow); color: var(--charcoal) !important; padding: 8px 20px; border-radius: 8px; font-weight: 700; box-shadow: 0 4px 0 #d4ac0d; transition: 0.2s; }
.btn-yellow:hover { transform: translateY(2px); box-shadow: 0 2px 0 #d4ac0d; }

/* Mobile Menu */
.menu-btn { display: none; cursor: pointer; flex-direction: column; gap: 4px; }
.dot { width: 6px; height: 6px; background: var(--charcoal); border-radius: 50%; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--charcoal); 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; color: var(--yellow); cursor: pointer; }
.menu-links a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: var(--white); }

/* Hero */
.hero-nest { height: 75vh; background-size: cover; background-position: center; position: relative; border-radius: 0 0 30px 30px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-overlay { width: 100%; height: 100%; background: rgba(44, 62, 80, 0.6); display: flex; align-items: center; justify-content: center; }
.hero-card { background: var(--white); padding: 40px; border-radius: 20px; text-align: center; max-width: 500px; width: 90%; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.hero-card h1 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; color: var(--charcoal); line-height: 1.1; }
.hero-card p { margin-bottom: 20px; color: var(--grey); }

.quick-book { display: flex; flex-direction: column; gap: 15px; }
.input-wrap { text-align: left; }
.input-wrap label { font-size: 0.8rem; font-weight: bold; color: var(--charcoal); margin-bottom: 5px; display: block; }
.input-wrap input, .input-wrap select { width: 100%; padding: 10px; border: 2px solid #eee; border-radius: 8px; font-family: var(--font-body); }
.btn-search { background: var(--charcoal); color: var(--white); border: none; padding: 12px; border-radius: 8px; font-weight: bold; cursor: pointer; font-family: var(--font-head); }
.btn-search:hover { background: #34495e; }

/* Grid */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--charcoal); }
.yellow-dot { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; margin: 10px auto; }

.nest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.nest-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; border: 2px solid transparent; }
.nest-card:hover { transform: translateY(-5px); }
.nest-card.highlight { border-color: var(--yellow); }
.card-img { position: relative; height: 200px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { position: absolute; bottom: 10px; right: 10px; background: var(--yellow); color: var(--charcoal); padding: 5px 10px; border-radius: 8px; font-weight: bold; font-family: var(--font-head); }
.card-body { padding: 20px; }
.card-body h3 { font-family: var(--font-head); margin-bottom: 5px; }
.features { list-style: none; margin: 15px 0; display: flex; gap: 15px; font-size: 0.9rem; color: var(--grey); }
.btn-outline { display: block; text-align: center; border: 2px solid var(--charcoal); color: var(--charcoal); padding: 8px; border-radius: 8px; font-weight: bold; }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

/* About & Amenities */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-col h1 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; }
.yellow-dash { width: 50px; height: 5px; background: var(--yellow); margin-bottom: 20px; border-radius: 5px; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.amenity { display: flex; align-items: center; gap: 10px; font-weight: bold; }
.amenity .icon { background: #eee; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.img-col img { width: 100%; border-radius: 20px; }

/* Testimonials */
.review-wall { display: flex; flex-direction: column; gap: 20px; max-width: 700px; margin: 0 auto; }
.review-bubble { background: #fff; padding: 25px; border-radius: 15px; border: 2px solid #eee; }
.review-bubble.yellow-bg { background: #FFF9C4; border-color: #FFF9C4; }
.stars { color: var(--yellow); margin-bottom: 10px; }
.review-bubble strong { display: block; margin-top: 10px; font-family: var(--font-head); }

/* Contact Form */
.contact-card { display: flex; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.05); max-width: 900px; margin: 0 auto; }
.info-side { flex: 1; background: var(--charcoal); color: var(--white); padding: 50px; }
.info-side h2 { font-family: var(--font-head); margin-bottom: 20px; color: var(--yellow); }
.contact-details { margin-top: 30px; font-size: 1.1rem; }
.contact-details p { margin-bottom: 10px; }
.nest-form { flex: 1.5; padding: 50px; }
.input-group { margin-bottom: 20px; }
.input-group input, .input-group select, .input-group textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; font-family: var(--font-body); }
.input-group input:focus, .input-group textarea:focus { border-color: var(--yellow); outline: none; }
.btn-send { width: 100%; background: var(--charcoal); color: var(--white); padding: 15px; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-family: var(--font-head); font-size: 1.1rem; }

/* Legal */
.rules-box { max-width: 700px; margin: 0 auto; background: white; padding: 50px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.rules-box h1 { font-family: var(--font-head); color: var(--charcoal); }
.rules-box h3 { color: var(--yellow); margin-top: 30px; font-family: var(--font-head); }

/* Footer */
.nest-footer { background: var(--charcoal); color: var(--white); padding: 60px 0 20px; margin-top: 80px; text-align: center; }
.footer-content { display: flex; justify-content: space-between; align-items: center; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.brand h4 { font-family: var(--font-head); margin-bottom: 5px; color: var(--yellow); }
.socials a, .legal a { color: #ccc; margin: 0 10px; font-weight: bold; font-size: 0.9rem; }
.socials a:hover, .legal a:hover { color: var(--white); }
.copyright { margin-top: 20px; font-size: 0.8rem; color: #7f8c8d; }

/* Cookie Banner */
.cookie-popup { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--charcoal); color: var(--white); padding: 15px 30px; border-radius: 50px; z-index: 9999; display: none; box-shadow: 0 5px 20px rgba(0,0,0,0.3); }
.cookie-popup.active { display: block; animation: bounceUp 0.5s; }
.cookie-content { display: flex; align-items: center; gap: 15px; }
.cookie-content button { background: var(--yellow); color: var(--charcoal); border: none; padding: 5px 15px; border-radius: 20px; font-weight: bold; cursor: pointer; }

@keyframes bounceUp { from { transform: translate(-50%, 100px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

@media (max-width: 900px) {
    .nest-nav { display: none; }
    .menu-btn { display: flex; }
    .hero-card { width: 100%; margin: 0 20px; }
    .nest-grid, .about-split, .contact-card { grid-template-columns: 1fr; flex-direction: column; }
    .footer-content { flex-direction: column; gap: 20px; }
}