Changed around line 1
+ :root {
+ --primary-color: #FF9ECD;
+ --secondary-color: #9ED8FF;
+ --accent-color: #FFE15D;
+ --text-color: #4A4A4A;
+ --background-color: #FFF5F9;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ padding: 2rem;
+ text-align: center;
+ position: relative;
+ height: 30vh;
+ min-height: 200px;
+ }
+
+ h1 {
+ color: white;
+ font-size: 3.5rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
+ animation: bounce 2s infinite;
+ }
+
+ .floating-clouds {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ }
+
+ .cloud {
+ position: absolute;
+ background: white;
+ border-radius: 50px;
+ opacity: 0.8;
+ animation: float 20s infinite linear;
+ }
+
+ .cloud:nth-child(1) { width: 100px; height: 40px; top: 20%; animation-delay: 0s; }
+ .cloud:nth-child(2) { width: 80px; height: 30px; top: 50%; animation-delay: -7s; }
+ .cloud:nth-child(3) { width: 120px; height: 45px; top: 70%; animation-delay: -14s; }
+
+ .balloon-container {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin: 2rem 0;
+ }
+
+ .balloon {
+ width: 60px;
+ height: 80px;
+ border-radius: 50%;
+ position: relative;
+ animation: float-balloon 3s infinite ease-in-out;
+ }
+
+ .balloon[data-color="pink"] { background: var(--primary-color); animation-delay: 0s; }
+ .balloon[data-color="purple"] { background: #B19EFF; animation-delay: -1s; }
+ .balloon[data-color="yellow"] { background: var(--accent-color); animation-delay: -2s; }
+
+ .activity-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .activity-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 20px;
+ text-align: center;
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .activity-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .activity-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .bubble-wrap {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 1rem;
+ padding: 2rem;
+ }
+
+ .bubble {
+ width: 50px;
+ height: 50px;
+ background: radial-gradient(circle at 30% 30%, white, var(--secondary-color));
+ border-radius: 50%;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .bubble:hover {
+ transform: scale(1.1);
+ }
+
+ section {
+ padding: 4rem 2rem;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ color: var(--text-color);
+ }
+
+ footer {
+ background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
+ color: white;
+ text-align: center;
+ padding: 2rem;
+ margin-top: 2rem;
+ }
+
+ @keyframes bounce {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-10px); }
+ }
+
+ @keyframes float {
+ from { transform: translateX(-100%); }
+ to { transform: translateX(100vw); }
+ }
+
+ @keyframes float-balloon {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ @media (max-width: 768px) {
+ h1 { font-size: 2.5rem; }
+ .activity-grid { grid-template-columns: 1fr; }
+ .balloon-container { gap: 1rem; }
+ .balloon { width: 40px; height: 60px; }
+ }