/* Sunshine Elementary School Styles */

/* Font Families */
.font-playful { font-family: 'Fredoka One', cursive; }
.font-friendly { font-family: 'Nunito', sans-serif; }
.font-comic { font-family: 'Comic Neue', cursive; }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    line-height: 1.6;
    color: hsl(222, 100%, 15%);
    background-color: hsl(196, 100%, 98%);
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navigation {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 220, 220, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, hsl(45, 100%, 70%), hsl(32, 95%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-fun 0.6s ease-in-out infinite;
    font-size: 1.5rem;
}

.nav-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: hsl(220, 100%, 55%);
    margin: 0;
}

.nav-links {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: hsl(222, 100%, 15%);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: hsl(220, 100%, 55%);
}

.nav-btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

/* Buttons */
.btn-primary {
    background-color: hsl(220, 100%, 55%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
}

.btn-primary:hover {
    background-color: hsl(220, 100%, 50%);
    transform: translateY(-4px) scale(1.02);
}

.btn-accent {
    background-color: hsl(32, 95%, 60%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px -3px hsl(32, 95%, 60%, 0.4);
}

.btn-accent:hover {
    background-color: hsl(32, 95%, 55%);
    transform: translateY(-4px) scale(1.02);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid hsl(220, 100%, 55%);
    color: hsl(220, 100%, 55%);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-outline-primary:hover {
    background-color: hsl(220, 100%, 55%);
    color: white;
    transform: translateY(-4px) scale(1.02);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, hsl(196, 100%, 85%), hsl(220, 100%, 90%));
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('src/assets/school-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.floating-element {
    position: absolute;
    font-size: 4rem;
    z-index: 1;
}

.star {
    top: 5rem;
    left: 2.5rem;
    animation: bounce-fun 0.6s ease-in-out infinite;
}

.balloon {
    top: 8rem;
    right: 5rem;
    animation: wiggle 0.8s ease-in-out infinite;
}

.rainbow {
    bottom: 8rem;
    left: 5rem;
    animation: bounce-fun 0.6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2rem;
    }
}

.hero-description {
    font-family: 'Comic Neue', cursive;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: 6rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: hsl(220, 100%, 55%);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 4rem;
    }
}

.section-description {
    font-family: 'Comic Neue', cursive;
    font-size: 1.25rem;
    color: hsl(215, 25%, 50%);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.5rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: hsl(196, 100%, 98%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    border: 2px solid rgba(220, 220, 220, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: hsl(220, 100%, 55%, 0.3);
}

.feature-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce-fun 0.6s ease-in-out infinite;
}

.feature-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: hsl(220, 100%, 55%);
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Comic Neue', cursive;
    font-size: 1.125rem;
    color: hsl(222, 100%, 15%);
    line-height: 1.5;
}

.why-choose-us {
    background: linear-gradient(135deg, hsl(220, 100%, 55%), hsl(142, 76%, 70%), hsl(32, 95%, 60%), hsl(280, 100%, 70%));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
}

.why-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .why-title {
        font-size: 3rem;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.why-icon {
    font-size: 1.5rem;
}

/* Activities Section */
.activities-section {
    padding: 5rem 0;
    background-color: hsl(196, 100%, 95%);
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.activity-card {
    background-color: white;
    border: 2px solid rgba(220, 220, 220, 0.5);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.activity-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: hsl(220, 100%, 55%, 0.3);
}

.activity-header {
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pink-purple { background: linear-gradient(135deg, #f8bbd9, #c084fc); }
.blue-indigo { background: linear-gradient(135deg, #93c5fd, #a78bfa); }
.green-teal { background: linear-gradient(135deg, #86efac, #5eead4); }
.orange-red { background: linear-gradient(135deg, #fdba74, #fca5a5); }
.yellow-amber { background: linear-gradient(135deg, #fde047, #fbbf24); }
.cyan-blue { background: linear-gradient(135deg, #67e8f9, #60a5fa); }
.yellow-orange { background: linear-gradient(135deg, #fde047, #fb923c); }
.green-emerald { background: linear-gradient(135deg, #86efac, #34d399); }
.purple-pink { background: linear-gradient(135deg, #c084fc, #f472b6); }

.activity-icon {
    font-size: 2.5rem;
    animation: wiggle 0.8s ease-in-out infinite;
}

.activity-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin: 0;
}

.activity-content {
    padding: 1.5rem;
    background-color: white;
}

.activity-description {
    font-family: 'Comic Neue', cursive;
    font-size: 1.125rem;
    color: hsl(222, 100%, 15%);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.activity-time {
    background-color: hsl(220, 100%, 55%, 0.1);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    text-align: center;
    color: hsl(220, 100%, 55%);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.special-events {
    background: linear-gradient(135deg, hsl(45, 100%, 70%), hsl(32, 95%, 60%));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px -3px hsl(32, 95%, 60%, 0.4);
}

.events-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    color: white;
    font-family: 'Nunito', sans-serif;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.event-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.event-name {
    font-size: 1rem;
}

/* Teachers Section */
.teachers-section {
    padding: 5rem 0;
    background-color: hsl(196, 100%, 98%);
}

.teachers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .teachers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.teacher-card {
    background-color: white;
    border: 2px solid rgba(220, 220, 220, 0.5);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.teacher-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: hsl(220, 100%, 55%, 0.3);
}

.teacher-header {
    padding: 1.5rem;
    text-align: center;
}

.teacher-emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce-fun 0.6s ease-in-out infinite;
}

.teacher-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.teacher-subject {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0;
}

.teacher-content {
    padding: 1.5rem;
    background-color: white;
    text-align: center;
}

.teacher-hobby {
    font-family: 'Comic Neue', cursive;
    font-size: 1.125rem;
    color: hsl(222, 100%, 15%);
    line-height: 1.5;
}

.teacher-qualities {
    background: linear-gradient(135deg, hsl(220, 100%, 55%), hsl(142, 76%, 70%), hsl(32, 95%, 60%), hsl(280, 100%, 70%));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
}

.qualities-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.qualities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .qualities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .qualities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.quality-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.quality-description {
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: hsl(196, 100%, 95%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: white;
    border: 2px solid rgba(220, 220, 220, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 2.5rem;
    animation: wiggle 0.8s ease-in-out infinite;
}

.contact-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: hsl(220, 100%, 55%);
    margin: 0;
}

.contact-details {
    font-family: 'Comic Neue', cursive;
    font-size: 1.125rem;
    color: hsl(222, 100%, 15%);
    line-height: 1.5;
}

.school-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-card {
    background: linear-gradient(135deg, hsl(45, 100%, 70%), hsl(32, 95%, 60%));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px -3px hsl(32, 95%, 60%, 0.4);
}

.hours-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.facts-card {
    background: linear-gradient(135deg, hsl(220, 100%, 55%), hsl(142, 76%, 70%), hsl(32, 95%, 60%), hsl(280, 100%, 70%));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
}

.facts-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    color: white;
    font-family: 'Nunito', sans-serif;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fact-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.fact-label {
    font-size: 0.875rem;
}

.cta-section {
    text-align: center;
}

.cta-card {
    background-color: hsl(220, 100%, 55%, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 25px -8px hsl(220, 100%, 55%, 0.3);
}

.cta-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: hsl(220, 100%, 55%);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-family: 'Comic Neue', cursive;
    font-size: 1.25rem;
    color: hsl(222, 100%, 15%);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background-color: hsl(220, 100%, 55%);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-brand {
        justify-content: flex-start;
    }
}

.footer-logo {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, hsl(45, 100%, 70%), hsl(32, 95%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-fun 0.6s ease-in-out infinite;
    font-size: 1.5rem;
}

.footer-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin: 0;
}

.footer-description {
    font-family: 'Comic Neue', cursive;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-heading {
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(32, 95%, 60%);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Comic Neue', cursive;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-copyright {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright p {
    font-family: 'Comic Neue', cursive;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-emojis {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

/* Animations */
@keyframes bounce-fun {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.6); }
}

.bounce-1 { animation: bounce-fun 0.6s ease-in-out infinite; }
.bounce-2 { animation: bounce-fun 0.6s ease-in-out infinite; animation-delay: 0.5s; }
.wiggle-1 { animation: wiggle 0.8s ease-in-out infinite; }
.wiggle-2 { animation: wiggle 0.8s ease-in-out infinite; animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .why-title, .qualities-title { font-size: 2rem; }
    .cta-title { font-size: 2rem; }
    
    .floating-element {
        font-size: 3rem;
    }
    
    .star { top: 3rem; left: 1rem; }
    .balloon { top: 5rem; right: 1rem; }
    .rainbow { bottom: 6rem; left: 1rem; }
}