:root {
    --yellow: #ffd93d;
    --blue: #4d96ff;
    --red: #ff6b6b;
    --green: #6bcb77;
    --white: #ffffff;
    --text: #2d3436;
    --bg: #f9f9f9;
    
    --font-head: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.kids-header { background-color: var(--white); padding: 15px 0; border-bottom: 5px solid var(--yellow); 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: 2rem; color: var(--blue); font-weight: 600; letter-spacing: 1px; }
.dot { color: var(--red); font-size: 3rem; line-height: 0; }

.kids-nav ul { display: flex; gap: 20px; list-style: none; align-items: center; }
.kids-nav a { font-weight: 800; font-size: 1.1rem; color: var(--text); }
.kids-nav a:hover, .kids-nav a.active { color: var(--blue); }

.btn-fun { background-color: var(--red); color: var(--white) !important; padding: 10px 25px; border-radius: 50px; box-shadow: 0 4px 0 #c0392b; transform: translateY(0); }
.btn-fun:hover { transform: translateY(2px); box-shadow: 0 2px 0 #c0392b; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); border-left: 5px solid var(--blue); }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2rem; border: none; background: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 20px; color: var(--text); }

/* Hero */
.hero-kids { padding: 60px 0; background-color: var(--white); overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.badge-new { background-color: var(--yellow); color: var(--text); padding: 5px 15px; border-radius: 20px; font-weight: 800; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; transform: rotate(-2deg); }
.hero-text h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--blue); }
.hero-text p { font-size: 1.2rem; color: #666; margin-bottom: 30px; }

.hero-btns { display: flex; gap: 15px; }
.btn-yellow { background-color: var(--yellow); color: var(--text); padding: 12px 30px; border-radius: 50px; font-weight: 800; box-shadow: 0 4px 0 #d4b106; }
.btn-yellow:hover { transform: translateY(2px); box-shadow: 0 2px 0 #d4b106; }
.btn-blue { background-color: var(--blue); color: var(--white); padding: 12px 30px; border-radius: 50px; font-weight: 800; }
.btn-blue:hover { opacity: 0.9; }

.hero-img img { width: 100%; border-radius: 30px; border: 5px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: rotate(2deg); }
.shape-divider { height: 50px; background-color: var(--bg); border-radius: 50% 50% 0 0 / 100% 100% 0 0; margin-top: -30px; position: relative; z-index: 2; }

/* Categories */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--text); }
.zigzag { width: 100px; height: 10px; background: repeating-linear-gradient(45deg, var(--red), var(--red) 10px, transparent 10px, transparent 20px); margin: 10px auto; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.cat-card { background: var(--white); padding: 30px 20px; border-radius: var(--radius); text-align: center; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-bottom: 5px solid transparent; }
.cat-card:hover { transform: translateY(-10px); }
.emoji { font-size: 4rem; margin-bottom: 10px; }
.cat-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 5px; }
.c-blue { border-bottom-color: var(--blue); } .c-red { border-bottom-color: var(--red); }
.c-yellow { border-bottom-color: var(--yellow); } .c-green { border-bottom-color: var(--green); }

/* About */
.page-header { padding: 60px 0; text-align: center; border-radius: 0 0 50% 50% / 20px; color: var(--text); }
.bg-yellow { background-color: var(--yellow); } .bg-blue { background-color: var(--blue); color: var(--white); }
.page-header h1 { font-family: var(--font-head); font-size: 3rem; }

.about-flex { display: flex; gap: 50px; align-items: center; }
.text-block h2 { font-family: var(--font-head); font-size: 2rem; color: var(--blue); margin-bottom: 20px; }
.fun-list { list-style: none; margin-top: 20px; font-size: 1.1rem; font-weight: 700; }
.fun-list li { margin-bottom: 10px; }
.img-block img { width: 100%; border-radius: var(--radius); border: 10px solid var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: rotate(-3deg); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative; }
.review-card::before { content: '“'; font-size: 5rem; color: var(--yellow); position: absolute; top: 10px; right: 20px; font-family: serif; line-height: 0.5; opacity: 0.5; }
.stars { margin-bottom: 10px; }
.mom-name { font-weight: 800; color: var(--red); margin-top: 15px; font-size: 0.9rem; }

/* Contact Form */
.contact-box { display: flex; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.info-side { flex: 1; background-color: var(--blue); color: var(--white); padding: 50px; }
.info-side h2 { font-family: var(--font-head); margin-bottom: 20px; }
.contact-list p { margin-bottom: 15px; font-size: 1.1rem; font-weight: 700; }

.kids-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 800; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 10px; font-family: var(--font-body); font-size: 1rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); outline: none; }
.submit-btn { width: 100%; background-color: var(--green); color: var(--white); border: none; padding: 15px; border-radius: 10px; font-weight: 800; cursor: pointer; font-size: 1.1rem; }
.submit-btn:hover { background-color: #58b664; }

/* Legal */
.safety-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: var(--radius); }
.safety-content h1 { font-family: var(--font-head); text-align: center; color: var(--red); }
.safety-content h3 { color: var(--blue); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.kids-footer { background-color: var(--white); padding: 50px 0; border-top: 10px solid var(--green); text-align: center; margin-top: auto; }
.footer-logo { font-family: var(--font-head); font-size: 2rem; color: var(--text); margin-bottom: 20px; font-weight: 600; }
.footer-links a { margin: 0 15px; font-weight: 700; color: var(--blue); }
.footer-links a:hover { color: var(--red); }

@media (max-width: 900px) {
    .kids-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-grid, .cat-grid, .about-flex, .review-grid, .contact-box { grid-template-columns: 1fr; flex-direction: column; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-img img { transform: rotate(0); }
}