/* ===== HERO SECTION STYLES ===== */
.hero {
    position: relative;
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Ensure hero content is above the abstract background */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 194, 215, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(165, 200, 248, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(248, 233, 165, 0.2) 0%, transparent 50%);
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--space-xl);
    }
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        margin-bottom: 0;
        flex: 1;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    animation: titleGlow 2s ease-out 1s forwards;
}

@keyframes titleGlow {
    to {
        opacity: 1;
    }
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ffd93d 0%, #ff9a9e 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 154, 158, 0.3));
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd93d, #ff9a9e);
    border-radius: 2px;
    transform: scaleX(0);
    animation: expandLine 0.8s ease-out 0.5s forwards;
    box-shadow: 0 2px 8px rgba(255, 154, 158, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--white);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    opacity: 0.95;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 1px;
    opacity: 0;
    animation: subtitleLine 0.8s ease-out 0.6s forwards;
}

@keyframes subtitleLine {
    to {
        opacity: 1;
        width: 80px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        align-items: flex-start;
    }
}

.hero-buttons .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn:active {
    transform: translateY(-1px);
}

/* Enhanced Button Styles */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    color: var(--primary);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 165, 194, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f8f9fa, var(--white));
    color: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(248, 165, 194, 0.3);
}

.hero-buttons .btn-primary:hover::before {
    left: 100%;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-secondary:hover::before {
    left: 100%;
}

/* Button focus states for accessibility */
.hero-buttons .btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Button active states */
.hero-buttons .btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

/* Cute SVG Animations */
.hero-svg-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Improved SVG Animation Positioning */
.floating-heart {
    position: absolute;
    top: 15%;
    right: 20%;
    animation: floatHeart 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.4));
    z-index: 1;
}

.floating-star {
    position: absolute;
    top: 55%;
    left: 15%;
    animation: floatStar 5s ease-in-out infinite 1s;
    filter: drop-shadow(0 2px 4px rgba(255, 217, 61, 0.4));
    z-index: 1;
}

.floating-sparkle {
    position: absolute;
    top: 25%;
    left: 25%;
    animation: floatSparkle 6s ease-in-out infinite 0.5s;
    filter: drop-shadow(0 2px 4px rgba(168, 230, 207, 0.4));
    z-index: 1;
}

.floating-circle {
    position: absolute;
    top: 65%;
    right: 30%;
    animation: floatCircle 7s ease-in-out infinite 1.5s;
    filter: drop-shadow(0 2px 4px rgba(255, 154, 158, 0.4));
    z-index: 1;
}

.floating-diamond {
    position: absolute;
    top: 40%;
    right: 8%;
    animation: floatDiamond 8s ease-in-out infinite 2s;
    filter: drop-shadow(0 2px 4px rgba(213, 165, 248, 0.4));
    z-index: 1;
}

.floating-triangle {
    position: absolute;
    top: 75%;
    left: 5%;
    animation: floatTriangle 9s ease-in-out infinite 2.5s;
    filter: drop-shadow(0 2px 4px rgba(165, 248, 211, 0.4));
    z-index: 1;
}

.floating-moon {
    position: absolute;
    top: 35%;
    left: 8%;
    animation: floatMoon 10s ease-in-out infinite 3s;
    filter: drop-shadow(0 2px 4px rgba(255, 179, 186, 0.4));
    z-index: 1;
}

/* Enhanced Animation Keyframes */
@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.4));
    }
    25% {
        transform: translateY(-18px) rotate(8deg) scale(1.15);
        filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.6));
    }
    50% {
        transform: translateY(-28px) rotate(0deg) scale(1);
        filter: drop-shadow(0 6px 12px rgba(255, 107, 157, 0.8));
    }
    75% {
        transform: translateY(-18px) rotate(-8deg) scale(1.15);
        filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.6));
    }
}

@keyframes floatStar {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 2px 4px rgba(255, 217, 61, 0.4));
    }
    33% {
        transform: translateY(-22px) rotate(120deg) scale(1.25);
        filter: drop-shadow(0 4px 8px rgba(255, 217, 61, 0.6));
    }
    66% {
        transform: translateY(-12px) rotate(240deg) scale(0.85);
        filter: drop-shadow(0 2px 4px rgba(255, 217, 61, 0.3));
    }
}

@keyframes floatSparkle {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
        filter: drop-shadow(0 2px 4px rgba(168, 230, 207, 0.4));
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.35);
        opacity: 0.9;
        filter: drop-shadow(0 4px 8px rgba(168, 230, 207, 0.6));
    }
    50% {
        transform: translateY(-32px) rotate(180deg) scale(0.8);
        opacity: 1;
        filter: drop-shadow(0 6px 12px rgba(168, 230,207, 0.8));
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.35);
        opacity: 0.9;
        filter: drop-shadow(0 4px 8px rgba(168, 230, 207, 0.6));
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
        filter: drop-shadow(0 2px 4px rgba(255, 154, 158, 0.4));
    }
    50% {
        transform: translateY(-25px) scale(1.25);
        opacity: 1;
        filter: drop-shadow(0 4px 8px rgba(255, 154, 158, 0.6));
    }
}

@keyframes floatDiamond {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 2px 4px rgba(213, 165, 248, 0.4));
    }
    25% {
        transform: translateY(-15px) rotate(45deg) scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(213, 165, 248, 0.6));
    }
    50% {
        transform: translateY(-25px) rotate(90deg) scale(1.2);
        filter: drop-shadow(0 6px 12px rgba(213, 165, 248, 0.8));
    }
    75% {
        transform: translateY(-15px) rotate(135deg) scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(213, 165, 248, 0.6));
    }
}

@keyframes floatTriangle {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 2px 4px rgba(165, 248, 211, 0.4));
    }
    25% {
        transform: translateY(-10px) rotate(60deg) scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(165, 248, 211, 0.6));
    }
    50% {
        transform: translateY(-18px) rotate(120deg) scale(1.2);
        filter: drop-shadow(0 6px 12px rgba(165, 248, 211, 0.8));
    }
    75% {
        transform: translateY(-10px) rotate(180deg) scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(165, 248, 211, 0.6));
    }
}

@keyframes floatMoon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 2px 4px rgba(255, 179, 186, 0.4));
    }
    25% {
        transform: translateY(-12px) rotate(30deg) scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(255, 179, 186, 0.6));
    }
    50% {
        transform: translateY(-20px) rotate(60deg) scale(1.2);
        filter: drop-shadow(0 6px 12px rgba(255, 179, 186, 0.8));
    }
    75% {
        transform: translateY(-12px) rotate(90deg) scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(255, 179, 186, 0.6));
    }
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    animation: fadeIn 1s ease-out;
    transition: transform var(--transition-normal);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: var(--radius-circle);
    opacity: 0.2;
    filter: blur(40px);
}

.hero-shape:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background-color: var(--accent-1);
    animation: float 8s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
    bottom: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    background-color: var(--accent-2);
    animation: float 7s ease-in-out infinite 1s;
}

.hero-shape:nth-child(3) {
    top: 60%;
    left: 30%;
    width: 100px;
    height: 100px;
    background-color: var(--accent-3);
    animation: float 9s ease-in-out infinite 0.5s;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .hero-image {
        margin-top: var(--space-lg);
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Enhanced scroll-animate integration */
.hero-content.scroll-animate.visible {
    animation: heroContentReveal 1s ease-out forwards;
}

@keyframes heroContentReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-content.scroll-animate.visible .hero-title {
    animation: titleReveal 0.8s ease-out 0.2s both;
}

.hero-content.scroll-animate.visible .hero-subtitle {
    animation: subtitleReveal 0.8s ease-out 0.4s both;
}

.hero-content.scroll-animate.visible .hero-buttons {
    animation: buttonsReveal 0.8s ease-out 0.6s both;
}

.hero-content.scroll-animate.visible .hero-svg-animations {
    animation: svgReveal 0.8s ease-out 0.8s both;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonsReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes svgReveal {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments for SVG animations */
@media (max-width: 768px) {
    .floating-heart {
        top: 10%;
        right: 15%;
        width: 20px;
        height: 20px;
    }
    
    .floating-star {
        top: 50%;
        left: 10%;
        width: 16px;
        height: 16px;
    }
    
    .floating-sparkle {
        top: 20%;
        left: 20%;
        width: 14px;
        height: 14px;
    }
    
    .floating-circle {
        top: 60%;
        right: 20%;
        width: 15px;
        height: 15px;
    }
    
    .floating-diamond {
        top: 35%;
        right: 5%;
        width: 18px;
        height: 18px;
    }
    
    .floating-triangle {
        top: 70%;
        left: 3%;
        width: 15px;
        height: 15px;
    }
    
    .floating-moon {
        top: 30%;
        left: 5%;
        width: 17px;
        height: 17px;
    }
}

/* Dancing SVG Characters */
.dancing-cat {
    position: absolute;
    top: 25%;
    left: 15%;
    animation: danceCat 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 154, 158, 0.4));
    z-index: 1;
}

.dancing-bunny {
    position: absolute;
    top: 60%;
    right: 20%;
    animation: danceBunny 5s ease-in-out infinite 1s;
    filter: drop-shadow(0 2px 4px rgba(248, 233, 165, 0.4));
    z-index: 1;
}

.dancing-unicorn {
    position: absolute;
    top: 40%;
    right: 10%;
    animation: danceUnicorn 6s ease-in-out infinite 0.5s;
    filter: drop-shadow(0 2px 4px rgba(213, 165, 248, 0.4));
    z-index: 1;
}

/* Dancing Character Animations */
@keyframes danceCat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg) scale(1.1);
    }
    50% {
        transform: translateY(-30px) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
}

@keyframes danceBunny {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-25px) rotate(-8deg) scale(1.15);
    }
    40% {
        transform: translateY(-35px) rotate(0deg) scale(1);
    }
    60% {
        transform: translateY(-25px) rotate(8deg) scale(1.15);
    }
    80% {
        transform: translateY(-15px) rotate(4deg) scale(1.05);
    }
}

@keyframes danceUnicorn {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    16% {
        transform: translateY(-18px) rotate(-6deg) scale(1.12);
    }
    33% {
        transform: translateY(-28px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-18px) rotate(6deg) scale(1.12);
    }
    66% {
        transform: translateY(-8px) rotate(3deg) scale(1.06);
    }
    83% {
        transform: translateY(-18px) rotate(-3deg) scale(1.12);
    }
}

/* Header Dancing SVGs */
.header-dancing-svgs {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.header-dancing-svgs .dancing-heart {
    animation: headerHeartDance 3s ease-in-out infinite;
}

.header-dancing-svgs .dancing-star {
    animation: headerStarDance 4s ease-in-out infinite 0.5s;
}

.header-dancing-svgs .dancing-sparkle {
    animation: headerSparkleDance 5s ease-in-out infinite 1s;
}

@keyframes headerHeartDance {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.2);
    }
}

@keyframes headerStarDance {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-6px) rotate(180deg) scale(1.15);
    }
}

@keyframes headerSparkleDance {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(1.3);
        opacity: 0.8;
    }
}

/* Responsive adjustments for dancing characters */
@media (max-width: 768px) {
    .dancing-cat {
        top: 20%;
        left: 10%;
        width: 24px;
        height: 24px;
    }
    
    .dancing-bunny {
        top: 55%;
        right: 15%;
        width: 20px;
        height: 20px;
    }
    
    .dancing-unicorn {
        top: 35%;
        right: 8%;
        width: 22px;
        height: 22px;
    }
    
    .header-dancing-svgs {
        right: 15%;
        gap: var(--space-xs);
    }
    
    .header-dancing-svgs svg {
        width: 16px;
        height: 16px;
    }
}

/* Cute Abstract Background with Big Eyes */
.hero-abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Cute Running Monsters */
.monster {
    position: absolute;
    font-size: 32px;
    animation: monsterRun 8s linear infinite, monsterBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
    transition: all 0.3s ease;
}

.monster:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.monster-1 {
    top: 15%;
    left: -50px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.monster-2 {
    top: 25%;
    left: -50px;
    animation-delay: 2s;
    animation-duration: 10s;
}

.monster-3 {
    top: 35%;
    left: -50px;
    animation-delay: 4s;
    animation-duration: 14s;
}

.monster-4 {
    top: 45%;
    left: -50px;
    animation-delay: 1s;
    animation-duration: 11s;
}

.monster-5 {
    top: 55%;
    left: -50px;
    animation-delay: 3s;
    animation-duration: 13s;
}

.monster-6 {
    top: 65%;
    left: -50px;
    animation-delay: 5s;
    animation-duration: 9s;
}

.monster-7 {
    top: 75%;
    left: -50px;
    animation-delay: 6s;
    animation-duration: 15s;
}

.monster-8 {
    top: 85%;
    left: -50px;
    animation-delay: 7s;
    animation-duration: 16s;
}

/* Monster running animation */
@keyframes monsterRun {
    0% {
        transform: translateX(0) rotate(0deg) scale(1);
    }
    20% {
        transform: translateX(20vw) rotate(8deg) scale(1.1);
    }
    40% {
        transform: translateX(40vw) rotate(0deg) scale(1);
    }
    60% {
        transform: translateX(60vw) rotate(-8deg) scale(1.1);
    }
    80% {
        transform: translateX(80vw) rotate(0deg) scale(1);
    }
    100% {
        transform: translateX(100vw) rotate(0deg) scale(1);
    }
}

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

/* Abstract Cute Shapes */
.abstract-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(2px);
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9a9e, #ff6b9d);
    animation-delay: 0s;
}

.blob-2 {
    top: 70%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a8e6cf, #88d4a8);
    animation-delay: 2s;
}

.blob-3 {
    top: 45%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd93d, #ffb347);
    animation-delay: 4s;
}

.blob-4 {
    top: 80%;
    left: 25%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d5a5f8, #b388ff);
    animation-delay: 1s;
}

.blob-5 {
    top: 20%;
    right: 5%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffb3ba, #ff8a95);
    animation-delay: 3s;
}

/* Floating Cute Elements */
.floating-element {
    position: absolute;
    font-size: 24px;
    animation: elementFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.heart-1 {
    top: 35%;
    left: 15%;
    animation-delay: 0s;
}

.star-1 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.sparkle-1 {
    top: 25%;
    right: 10%;
    animation-delay: 2s;
}

.heart-2 {
    top: 75%;
    left: 10%;
    animation-delay: 3s;
}

.star-2 {
    top: 40%;
    right: 35%;
    animation-delay: 4s;
}

.rainbow-1 {
    top: 20%;
    right: 25%;
    animation-delay: 1.5s;
}

.cupcake-1 {
    top: 60%;
    right: 30%;
    animation-delay: 3.5s;
}

.donut-1 {
    top: 80%;
    right: 20%;
    animation-delay: 4.5s;
}

/* Cute Face Details */
.cute-nose {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: #ffb3ba;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(255, 179, 186, 0.3);
    animation: noseWiggle 5s ease-in-out infinite;
}

.cute-mouth {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    border: 3px solid #ff6b9d;
    border-top: none;
    border-radius: 0 0 40px 40px;
    animation: mouthSmile 4s ease-in-out infinite;
}

.cute-blush {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 25px;
    background: radial-gradient(ellipse, #ffb3ba, #ff8a95);
    border-radius: 50%;
    opacity: 0.7;
    animation: blushGlow 6s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(255, 179, 186, 0.4);
}

.left-blush {
    left: 25%;
    animation-delay: 0s;
}

.right-blush {
    right: 25%;
    animation-delay: 1s;
}

/* Monster Animations */
@keyframes monsterRun {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(25vw) rotate(5deg);
    }
    50% {
        transform: translateX(50vw) rotate(0deg);
    }
    75% {
        transform: translateX(75vw) rotate(-5deg);
    }
    100% {
        transform: translateX(100vw) rotate(0deg);
    }
}

@keyframes sparkleTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.3) rotate(90deg);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.6) rotate(180deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.2) rotate(270deg);
    }
}



@keyframes blobFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(5deg);
    }
    66% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

@keyframes noseWiggle {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes mouthSmile {
    0%, 100% {
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        transform: translateX(-50%) scaleX(1.2);
    }
}

@keyframes blushGlow {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.15);
    }
    75% {
        opacity: 0.75;
        transform: scale(1.02);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .monster {
        font-size: 24px;
    }
    
    .abstract-shape {
        width: 50px !important;
        height: 50px !important;
    }
    
    .floating-element {
        font-size: 18px;
    }
    
    .cute-nose {
        width: 15px;
        height: 12px;
    }
    
    .cute-mouth {
        width: 30px;
        height: 15px;
    }
    
    .cute-blush {
        width: 30px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .monster {
        font-size: 20px;
    }
    
    .abstract-shape {
        width: 40px !important;
        height: 40px !important;
    }
    
    .floating-element {
        font-size: 16px;
    }
}

/* Monster Hover Effects */
.monster:hover {
    animation-play-state: paused;
    transform: scale(1.3) rotate(10deg);
}

@keyframes sparkleBurst {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(2) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Abstract shape hover effects */
.abstract-shape:hover {
    animation-play-state: paused;
    transform: scale(1.2);
    filter: blur(0px);
    transition: all 0.3s ease;
}

/* Floating element hover effects */
.floating-element:hover {
    animation-play-state: paused;
    transform: scale(1.5) rotate(15deg);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Cute face detail hover effects */
.cute-nose:hover {
    animation-play-state: paused;
    transform: translateX(-50%) scale(1.3);
    transition: transform 0.3s ease;
}

.cute-mouth:hover {
    animation-play-state: paused;
    transform: translateX(-50%) scaleX(1.4);
    transition: transform 0.3s ease;
}

.cute-blush:hover {
    animation-play-state: paused;
    opacity: 1;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Additional cute elements */
.hero-abstract-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Enhanced monster effects */
.monster {
    transition: all 0.3s ease;
}

.monster:hover {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transform: scale(1.2) rotate(5deg);
}

/* Abstract shape enhanced effects */
.abstract-shape {
    transition: all 0.3s ease;
}

.abstract-shape:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Floating element enhanced effects */
.floating-element {
    transition: all 0.3s ease;
}

.floating-element:hover {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Cute face detail enhanced effects */
.cute-nose,
.cute-mouth,
.cute-blush {
    transition: all 0.3s ease;
}

.cute-nose:hover {
    box-shadow: 0 4px 12px rgba(255, 179, 186, 0.4);
}

.cute-mouth:hover {
    border-color: #ff8a95;
    box-shadow: 0 4px 12px rgba(255, 138, 149, 0.3);
}

.cute-blush:hover {
    box-shadow: 0 4px 12px rgba(255, 179, 186, 0.4);
}