:root { --primary-color: #ff6b35; --secondary-color: #2c3e50; --accent-color: #f39c12; --kids-color: #4caf50; --kids-secondary: #ff9800; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
/* Navigation */
.navbar { background-color: var(--secondary-color) !important; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.navbar-brand { font-weight: bold; font-size: 1.5rem; color: var(--primary-color) !important; }
.nav-link { color: white !important; margin: 0 10px; transition: color 0.3s ease; }
.nav-link:hover { color: var(--primary-color) !important; }
/* Hero Section */
.kids-hero { height: 70vh; background: linear-gradient(rgba(76, 175, 80, 0.8), rgba(255, 152, 0, 0.6)), url('../public/image/mock/Kids-Bicycles.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.kids-hero h1 { font-size: 4rem; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.kids-hero .lead { font-size: 1.5rem; text-shadow: 1px 1px 2px rgba(0,0,0,0.7); }
/* Kids Content */
.kids-content { padding: 80px 0; }
.feature-card { background: white; border-radius: 15px; padding: 30px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease; height: 100%; margin-bottom: 30px; border: 2px solid transparent; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--kids-color); }
.feature-icon { font-size: 3rem; color: var(--kids-color); margin-bottom: 20px; }
.bike-card { border: none; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; margin-bottom: 30px; position: relative; }
.bike-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.bike-card img { height: 250px; object-fit: cover; transition: transform 0.3s ease; }
.bike-card:hover img { transform: scale(1.05); }
.bike-badge { position: absolute; top: 15px; right: 15px; background: var(--kids-color); color: white; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.9rem; }
.price-tag { background: var(--primary-color); color: white; padding: 8px 20px; border-radius: 25px; font-weight: bold; font-size: 1.1rem; display: inline-block; margin-top: 10px; }
.age-filter { background: linear-gradient(135deg, #e8f5e8, #fff3e0); padding: 40px; border-radius: 15px; margin-bottom: 50px; }
.age-btn { background: white; border: 2px solid var(--kids-color); color: var(--kids-color); padding: 15px 30px; border-radius: 25px; margin: 5px; transition: all 0.3s ease; font-weight: 500; font-size: 1.1rem; }
.age-btn:hover, .age-btn.active { background: var(--kids-color); color: white; transform: translateY(-2px); }
.safety-feature { background: #f8f9fa; border-radius: 15px; padding: 30px; margin: 20px 0; border-left: 5px solid var(--kids-color); }
.safety-icon { font-size: 2.5rem; color: var(--kids-color); margin-bottom: 15px; }
.age-guide { background: linear-gradient(135deg, var(--kids-color), var(--kids-secondary)); color: white; padding: 40px; border-radius: 15px; margin: 40px 0; }
.age-card { background: rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 25px; text-align: center; margin: 10px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); transition: transform 0.3s ease; }
.age-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.2); }
.fun-fact { background: #fff3cd; border: 1px solid #ffeaa7; border-radius: 15px; padding: 20px; margin: 20px 0; border-left: 5px solid var(--kids-secondary); }
.testimonial-card { background: white; border-radius: 15px; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 30px; border-left: 5px solid var(--kids-color); }
.testimonial-author { display: flex; align-items: center; margin-top: 20px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--kids-color); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 15px; }
.promo-banner { background: linear-gradient(135deg, var(--kids-color), var(--kids-secondary)); color: white; padding: 60px 0; border-radius: 15px; margin: 60px 0; text-align: center; }
.promo-banner h2 { font-size: 2.5rem; margin-bottom: 20px; }
/* Footer */
.footer { background-color: #1a252f; color: white; padding: 40px 0 20px; }
.footer h5 { color: var(--primary-color); margin-bottom: 20px; }
.footer a { color: #bdc3c7; text-decoration: none; transition: color 0.3s ease; }
.footer a:hover { color: var(--primary-color); }
.social-icons a { font-size: 1.5rem; margin: 0 10px; }
/* Responsive */
@media (max-width: 768px) { .kids-hero h1 { font-size: 2.5rem; } .kids-hero .lead { font-size: 1.2rem; } }
/* Animations */
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }
.bounce { animation: bounce 2s infinite; }
