/* ============================================
   🌸 WHIMSICAL HERO SECTION
   Playful, Creative, Beautiful Design
   ============================================ */

/* Base Variables */
:root {
    --whimsy-cream: #F9F0E8;
    --whimsy-pink-light: #FAE8E0;
    --whimsy-peach: #FDF5F0;
    --whimsy-gold: #D4A84B;
    --whimsy-coral: #F4A992;
    --whimsy-teal: #7BCCC4;
    --whimsy-lavender: #C8A9D8;
    --whimsy-pink: #F5C4C4;
    --whimsy-mint: #A8DDD0;
    --whimsy-yellow: #F9D56E;
}

/* Hero Section */
.whimsy-hero {
    min-height: 100vh;
    background: var(--whimsy-cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* ============================================
   DYNAMIC IMAGE COLLAGE BACKGROUND
   ============================================ */

.whimsy-hero__collage {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    padding: 4px;
    z-index: 0;
    opacity: 0.6;
}

.collage-cell {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    animation: collageFadeIn 1s ease forwards;
    animation-delay: calc(var(--cell-index, 0) * 0.1s);
}

.collage-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.collage-cell:hover img {
    transform: scale(1.05);
}

/* Staggered fade animation for cells */
.collage-cell:nth-child(1) {
    --cell-index: 1;
}

.collage-cell:nth-child(2) {
    --cell-index: 2;
}

.collage-cell:nth-child(3) {
    --cell-index: 3;
}

.collage-cell:nth-child(4) {
    --cell-index: 4;
}

.collage-cell:nth-child(5) {
    --cell-index: 5;
}

.collage-cell:nth-child(6) {
    --cell-index: 6;
}

.collage-cell:nth-child(7) {
    --cell-index: 7;
}

.collage-cell:nth-child(8) {
    --cell-index: 8;
}

.collage-cell:nth-child(9) {
    --cell-index: 9;
}

.collage-cell:nth-child(10) {
    --cell-index: 10;
}

.collage-cell:nth-child(11) {
    --cell-index: 11;
}

.collage-cell:nth-child(12) {
    --cell-index: 12;
}

.collage-cell:nth-child(13) {
    --cell-index: 13;
}

.collage-cell:nth-child(14) {
    --cell-index: 14;
}

.collage-cell:nth-child(15) {
    --cell-index: 15;
}

.collage-cell:nth-child(16) {
    --cell-index: 16;
}

.collage-cell:nth-child(17) {
    --cell-index: 17;
}

.collage-cell:nth-child(18) {
    --cell-index: 18;
}

.collage-cell:nth-child(19) {
    --cell-index: 19;
}

.collage-cell:nth-child(20) {
    --cell-index: 20;
}

.collage-cell:nth-child(21) {
    --cell-index: 21;
}

.collage-cell:nth-child(22) {
    --cell-index: 22;
}

.collage-cell:nth-child(23) {
    --cell-index: 23;
}

.collage-cell:nth-child(24) {
    --cell-index: 24;
}

@keyframes collageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Overlay for text readability - Radial fade */
.whimsy-hero__collage-overlay {
    position: absolute;
    inset: 0;
    /* Center is solid cream/white, fading to transparent at edges */
    background: radial-gradient(circle at center,
            rgba(249, 240, 232, 1) 0%,
            rgba(249, 240, 232, 0.9) 30%,
            rgba(249, 240, 232, 0.4) 60%,
            rgba(249, 240, 232, 0) 90%);
    z-index: 1;
    pointer-events: none;
    /* Optional: blur the center area slightly */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* ============================================
   ORGANIC BLOB SHAPES
   ============================================ */

.whimsy-hero__blob {
    position: absolute;
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    pointer-events: none;
    z-index: 1;
}

.whimsy-hero__blob--1 {
    width: 60%;
    height: 80%;
    top: -20%;
    right: -20%;
    background: var(--whimsy-pink-light);
    opacity: 0.6;
    animation: blobFloat 20s ease-in-out infinite;
}

.whimsy-hero__blob--2 {
    width: 40%;
    height: 50%;
    bottom: -10%;
    left: -10%;
    background: var(--whimsy-peach);
    opacity: 0.7;
    border-radius: 60% 40% 50% 60% / 40% 50% 60% 50%;
    animation: blobFloat 18s ease-in-out infinite reverse;
}

.whimsy-hero__blob--3 {
    width: 25%;
    height: 35%;
    bottom: 10%;
    right: 5%;
    background: linear-gradient(135deg, var(--whimsy-pink-light), var(--whimsy-peach));
    opacity: 0.5;
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    animation: blobFloat 15s ease-in-out infinite;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, 3%) rotate(2deg);
    }

    66% {
        transform: translate(-1%, -2%) rotate(-1deg);
    }
}

/* ============================================
   SCATTERED STARS
   ============================================ */

.whimsy-hero__star {
    position: absolute;
    font-size: 1rem;
    color: var(--whimsy-gold);
    z-index: 2;
    animation: starTwinkle 3s ease-in-out infinite;
}

.whimsy-hero__star--1 {
    top: 20%;
    left: 25%;
    font-size: 0.8rem;
    animation-delay: 0s;
}

.whimsy-hero__star--2 {
    top: 35%;
    right: 30%;
    font-size: 1rem;
    animation-delay: 0.5s;
}

.whimsy-hero__star--3 {
    bottom: 40%;
    left: 15%;
    font-size: 0.6rem;
    animation-delay: 1s;
}

.whimsy-hero__star--4 {
    top: 50%;
    right: 15%;
    font-size: 0.9rem;
    animation-delay: 1.5s;
}

.whimsy-hero__star--5 {
    bottom: 25%;
    left: 40%;
    font-size: 0.7rem;
    animation-delay: 2s;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ============================================
   DECORATIVE DOODLES
   ============================================ */

.whimsy-hero__doodles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.whimsy-doodle {
    position: absolute;
    animation: doodleFloat 6s ease-in-out infinite;
}

/* Pink Heart - top left */
.whimsy-doodle--heart-pink {
    top: 18%;
    left: 8%;
    width: 35px;
    height: 35px;
    color: var(--whimsy-pink);
    animation-delay: 0s;
}

/* Love Heart - top right */
.whimsy-doodle--heart-love {
    top: 12%;
    right: 12%;
    width: 45px;
    height: 45px;
    color: var(--whimsy-mint);
    animation-delay: 0.5s;
}

.whimsy-doodle--heart-love .love-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Dancing Script', cursive;
    font-size: 12px;
    color: white;
    font-weight: 500;
}

/* Smiley Face - upper area */
.whimsy-doodle--smiley {
    top: 25%;
    left: 18%;
    width: 50px;
    height: 50px;
    animation-delay: 0.3s;
}

/* Pink Ribbon - right edge */
.whimsy-doodle--ribbon {
    top: 8%;
    right: 0;
    width: 30px;
    height: 60px;
    color: var(--whimsy-pink);
    animation: none;
}

/* Daisy 1 - bottom left */
.whimsy-doodle--daisy-1 {
    bottom: 8%;
    left: 5%;
    width: 80px;
    height: 80px;
    animation-delay: 1s;
}

/* Daisy 2 - bottom left, smaller */
.whimsy-doodle--daisy-2 {
    bottom: 20%;
    left: 2%;
    width: 50px;
    height: 50px;
    animation-delay: 1.5s;
}

/* Notebook - bottom left */
.whimsy-doodle--notebook {
    bottom: 5%;
    left: 12%;
    width: 70px;
    height: 85px;
    animation-delay: 2s;
}

/* Pink Flower - center right */
.whimsy-doodle--flower-pink {
    top: 45%;
    right: 8%;
    width: 45px;
    height: 45px;
    animation-delay: 0.8s;
}

/* Purple Flower - right */
.whimsy-doodle--flower-purple {
    top: 25%;
    right: 5%;
    width: 55px;
    height: 55px;
    animation-delay: 1.2s;
}

/* Grid Notepad - bottom right */
.whimsy-doodle--notepad {
    bottom: 5%;
    right: 8%;
    width: 100px;
    height: 100px;
    animation-delay: 0.3s;
}

@keyframes doodleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.whimsy-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Eyebrow Text */
.whimsy-hero__eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--whimsy-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* Rainbow Cursive Title */
.whimsy-hero__title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.rainbow-text {
    display: inline-block;
}

.rainbow-text .letter {
    color: var(--color);
    transition: transform 0.3s ease;
    display: inline-block;
}

.rainbow-text .letter:hover {
    transform: translateY(-5px) rotate(-5deg);
}

/* Subtitle - Cursive Style */
.whimsy-hero__subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--whimsy-gold);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Tagline - Elegant Italic Style */
.whimsy-hero__tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

/* CTA Button */
.whimsy-hero__btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--whimsy-gold);
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.whimsy-hero__btn:hover {
    background: #c49940;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.3);
}

/* Bottom Colored Bar */
.whimsy-hero__bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg,
            var(--whimsy-teal) 0%,
            var(--whimsy-coral) 25%,
            var(--whimsy-yellow) 50%,
            var(--whimsy-lavender) 75%,
            var(--whimsy-pink) 100%);
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {

    .whimsy-doodle--flower-purple,
    .whimsy-doodle--flower-pink {
        display: none;
    }

    .whimsy-doodle--notepad {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .whimsy-hero {
        min-height: 80vh;
        padding: 1.5rem;
    }

    .whimsy-hero__eyebrow {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .whimsy-hero__subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .whimsy-hero__btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }

    /* Hide some doodles on mobile */
    .whimsy-doodle--daisy-2,
    .whimsy-doodle--notebook,
    .whimsy-doodle--notepad,
    .whimsy-doodle--ribbon {
        display: none;
    }

    .whimsy-doodle--daisy-1 {
        width: 60px;
        height: 60px;
        bottom: 5%;
        left: 2%;
    }

    .whimsy-doodle--heart-pink {
        width: 25px;
        height: 25px;
        top: 15%;
        left: 5%;
    }

    .whimsy-doodle--heart-love {
        width: 35px;
        height: 35px;
        top: 10%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .whimsy-hero__title {
        font-size: 2.5rem;
    }

    .whimsy-hero__subtitle {
        font-size: 0.875rem;
    }

    /* Hide all doodles on very small screens */
    .whimsy-hero__doodles {
        display: none;
    }

    .whimsy-hero__star {
        display: none;
    }
}

/* ============================================
   ✨ ENHANCEMENTS
   ============================================ */

/* #3 Letter Wave Animation on Hover */
.rainbow-text .letter {
    color: var(--color);
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: letterWave 3s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

@keyframes letterWave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.rainbow-text .letter:hover {
    transform: translateY(-15px) rotate(-10deg) scale(1.2);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* #9 Hoverable Doodles */
.whimsy-doodle {
    position: absolute;
    animation: doodleFloat 6s ease-in-out infinite;
    transition: transform 0.4s ease, filter 0.4s ease;
    pointer-events: auto;
    cursor: pointer;
}

.whimsy-hero__doodles {
    pointer-events: none;
}

.whimsy-doodle:hover {
    transform: scale(1.2) rotate(5deg) !important;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    animation-play-state: paused;
}

/* #11 Smiley Wink on Hover */
.whimsy-doodle--smiley svg circle:nth-child(2) {
    transition: all 0.3s ease;
}

.whimsy-doodle--smiley:hover svg circle:nth-child(2) {
    transform: scaleY(0.2);
    transform-origin: center;
}

/* Add a bounce to smiley on hover */
.whimsy-doodle--smiley:hover {
    animation: smileyBounce 0.5s ease !important;
}

@keyframes smileyBounce {

    0%,
    100% {
        transform: scale(1.2) rotate(0);
    }

    25% {
        transform: scale(1.3) rotate(-5deg);
    }

    50% {
        transform: scale(1.15) rotate(5deg);
    }

    75% {
        transform: scale(1.25) rotate(-3deg);
    }
}

/* #17 Brush Stroke Underline */
.whimsy-hero__title {
    position: relative;
    display: inline-block;
}

.brush-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 20px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--whimsy-coral) 15%,
            var(--whimsy-yellow) 35%,
            var(--whimsy-teal) 55%,
            var(--whimsy-lavender) 75%,
            transparent 100%);
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
    animation: brushReveal 1s ease forwards;
    animation-delay: 0.8s;
    transform-origin: left center;
}

@keyframes brushReveal {
    0% {
        transform: translateX(-50%) scaleX(0);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) scaleX(1);
        opacity: 0.5;
    }
}

/* #23 Two Button Layout */
.whimsy-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.whimsy-hero__btn {
    opacity: 1;
    animation: none;
}

.whimsy-hero__btn--primary {
    background: var(--whimsy-gold);
    color: white;
    border: 2px solid var(--whimsy-gold);
}

.whimsy-hero__btn--primary:hover {
    background: #c49940;
    border-color: #c49940;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.3);
}

.whimsy-hero__btn--outline {
    background: transparent;
    color: var(--whimsy-gold);
    border: 2px solid var(--whimsy-gold);
}

.whimsy-hero__btn--outline:hover {
    background: var(--whimsy-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.3);
}

/* #14 Scroll Indicator */
.whimsy-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--whimsy-gold);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: var(--whimsy-gold);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Mobile adjustments for buttons */
@media (max-width: 480px) {
    .whimsy-hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .whimsy-hero__btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .whimsy-hero__scroll {
        bottom: 20px;
    }

    .brush-underline {
        display: none;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .rainbow-text .letter,
    .whimsy-doodle,
    .whimsy-hero__star,
    .whimsy-hero__blob,
    .scroll-arrow {
        animation: none;
    }

    .brush-underline {
        animation: none;
        transform: translateX(-50%) scaleX(1);
        opacity: 0.5;
    }
}

/* ============================================
   ✨ PHASE 2 ENHANCEMENTS
   ============================================ */

/* Paint Palette Doodle */
.whimsy-doodle--palette {
    bottom: 35%;
    left: 3%;
    width: 65px;
    height: 55px;
    animation-delay: 1.8s;
}

/* Camera Doodle */
.whimsy-doodle--camera {
    top: 35%;
    right: 3%;
    width: 55px;
    height: 45px;
    animation-delay: 0.9s;
}

/* #2 Floating Sparkles */
.whimsy-hero__sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--whimsy-gold);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFloat 8s ease-in-out infinite;
}

.sparkle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px 2px var(--whimsy-gold);
}

.sparkle--1 {
    left: 10%;
    bottom: 20%;
    animation-delay: 0s;
}

.sparkle--2 {
    left: 25%;
    bottom: 30%;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
}

.sparkle--3 {
    left: 40%;
    bottom: 15%;
    animation-delay: 2s;
}

.sparkle--4 {
    right: 35%;
    bottom: 25%;
    animation-delay: 1.5s;
    width: 5px;
    height: 5px;
}

.sparkle--5 {
    right: 20%;
    bottom: 20%;
    animation-delay: 2.5s;
}

.sparkle--6 {
    right: 10%;
    bottom: 35%;
    animation-delay: 0.5s;
    width: 4px;
    height: 4px;
}

.sparkle--7 {
    left: 15%;
    bottom: 40%;
    animation-delay: 3s;
    width: 5px;
    height: 5px;
}

.sparkle--8 {
    right: 25%;
    bottom: 40%;
    animation-delay: 3.5s;
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    10% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-100px) scale(0.8);
    }

    100% {
        opacity: 0;
        transform: translateY(-200px) scale(0);
    }
}

/* #5 Text Glow Pulse - Apply to rainbow-text, not title */
.rainbow-text {
    text-shadow: 0 0 20px rgba(249, 213, 110, 0.3);
    animation: titleGlow 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(249, 213, 110, 0.2);
        filter: brightness(1);
    }

    50% {
        text-shadow:
            0 0 30px rgba(249, 213, 110, 0.4),
            0 0 60px rgba(200, 169, 216, 0.2);
        filter: brightness(1.05);
    }
}

/* #13 Social Icons Bar */
.whimsy-hero__social {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 15;
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 1.3s;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: var(--whimsy-gold);
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--whimsy-gold);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 168, 75, 0.3);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Mobile: Move social to bottom horizontal */
@media (max-width: 768px) {
    .whimsy-hero__social {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: 80px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 0.75rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }

    .whimsy-doodle--palette,
    .whimsy-doodle--camera {
        display: none;
    }

    .whimsy-hero__sparkles {
        display: none;
    }
}

@media (max-width: 480px) {
    .whimsy-hero__social {
        bottom: 70px;
    }
}