/* ============================================
   🌸 SIMPLY WONDERFUL - ENHANCED FOOTER
   Professional, Beautiful, Animated
   ============================================ */

/* ============================================
   CSS VARIABLES - Design System
   ============================================ */
:root {
    /* Footer Colors */
    --footer-bg-start: #FDF8F5;
    --footer-bg-end: #F5EDE8;
    --footer-accent-gold: #D4A84B;
    --footer-accent-gold-light: #E4C994;
    --footer-accent-lavender: #C8A9D8;
    --footer-accent-mint: #7BCCC4;
    --footer-accent-peach: #F4A992;
    --footer-text-primary: #4A3A3A;
    --footer-text-secondary: #6B5A5A;
    --footer-text-muted: #8A7A7A;
    --footer-glass-bg: rgba(255, 255, 255, 0.75);
    --footer-border: rgba(139, 90, 90, 0.1);
    
    /* Animation Timing */
    --anim-duration-fast: 0.3s;
    --anim-duration-normal: 0.5s;
    --anim-duration-slow: 0.8s;
    --anim-easing: cubic-bezier(0.4, 0, 0.2, 1);
    --anim-easing-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   MAIN FOOTER CONTAINER
   ============================================ */
.artist-footer {
    position: relative;
    background: linear-gradient(135deg, var(--footer-bg-start) 0%, var(--footer-bg-end) 100%);
    color: var(--footer-text-primary);
    padding-top: 8rem;
    padding-bottom: 2rem;
    overflow: hidden;
    isolation: isolate;
}

/* ============================================
   ENHANCED WAVE DIVIDER - 3 LAYER DEPTH
   Colors matched to footer gradient background
   ============================================ */
.artist-footer_wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
}

/* Back Wave Layer - Deepest, most subtle */
.artist-footer_wave-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23F5EDE8' fill-opacity='0.9' d='M0,50 C240,80 480,30 720,50 C960,70 1200,40 1440,60 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
    background-size: 1440px 100%;
    background-repeat: repeat-x;
    animation: waveFloat 25s ease-in-out infinite;
    transform-origin: center bottom;
}

/* Middle Wave Layer */
.artist-footer_wave-middle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23F9F0E8' fill-opacity='0.95' d='M0,35 C360,65 720,25 1080,45 C1260,55 1380,50 1440,48 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
    background-size: 1440px 100%;
    background-repeat: repeat-x;
    animation: waveFloat 18s ease-in-out infinite reverse;
    transform-origin: center bottom;
}

/* Front Wave Layer - Matches page background */
.artist-footer_wave-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFFFF' fill-opacity='1' d='M0,20 C180,50 540,15 900,35 C1170,55 1350,40 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
    background-size: 1440px 100%;
    background-repeat: repeat-x;
    animation: waveFloat 12s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes waveFloat {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-30px) scaleY(1.03); }
}

/* ============================================
   FLOATING PAINT SPLASHES - WATERCOLOR STYLE
   ============================================ */
.artist-footer_paint-splash {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.12;
    will-change: transform;
}

.artist-footer_paint-splash--1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cellipse cx='100' cy='100' rx='80' ry='60' fill='%237BCCC4'/%3E%3Ccircle cx='60' cy='80' r='25' fill='%237BCCC4'/%3E%3Ccircle cx='140' cy='120' r='20' fill='%237BCCC4'/%3E%3Ccircle cx='120' cy='70' r='15' fill='%237BCCC4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: gentleFloat 18s ease-in-out infinite;
}

.artist-footer_paint-splash--2 {
    top: 30%;
    right: 8%;
    width: 180px;
    height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cellipse cx='100' cy='100' rx='70' ry='70' fill='%23C8A9D8'/%3E%3Ccircle cx='50' cy='100' r='30' fill='%23C8A9D8'/%3E%3Ccircle cx='150' cy='90' r='25' fill='%23C8A9D8'/%3E%3Ccircle cx='100' cy='50' r='20' fill='%23C8A9D8'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: gentleFloat 22s ease-in-out infinite reverse;
}

.artist-footer_paint-splash--3 {
    bottom: 20%;
    left: 15%;
    width: 220px;
    height: 220px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cellipse cx='100' cy='100' rx='75' ry='55' fill='%23F4A992'/%3E%3Ccircle cx='70' cy='120' r='22' fill='%23F4A992'/%3E%3Ccircle cx='130' cy='80' r='28' fill='%23F4A992'/%3E%3Ccircle cx='100' cy='140' r='18' fill='%23F4A992'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: gentleFloat 20s ease-in-out infinite;
    animation-delay: -5s;
}

.artist-footer_paint-splash--4 {
    bottom: 30%;
    right: 10%;
    width: 160px;
    height: 160px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cellipse cx='100' cy='100' rx='65' ry='65' fill='%23D4A84B'/%3E%3Ccircle cx='80' cy='70' r='20' fill='%23D4A84B'/%3E%3Ccircle cx='120' cy='130' r='25' fill='%23D4A84B'/%3E%3Ccircle cx='60' cy='110' r='15' fill='%23D4A84B'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: gentleFloat 16s ease-in-out infinite reverse;
    animation-delay: -8s;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(3deg) scale(1.02); }
    50% { transform: translateY(-10px) rotate(0deg) scale(1); }
    75% { transform: translateY(-25px) rotate(-3deg) scale(1.01); }
}

/* ============================================
   ELEGANT FLOATING DOTS - Subtle Accents
   ============================================ */
.artist-footer_dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    will-change: opacity, transform;
}

.artist-footer_dot--1 { top: 20%; left: 15%; background: var(--footer-accent-mint); opacity: 0.4; animation: dotFloat 8s ease-in-out infinite; }
.artist-footer_dot--2 { top: 35%; left: 85%; background: var(--footer-accent-lavender); opacity: 0.35; animation: dotFloat 10s ease-in-out infinite; animation-delay: 1s; }
.artist-footer_dot--3 { top: 55%; left: 8%; background: var(--footer-accent-peach); opacity: 0.3; animation: dotFloat 9s ease-in-out infinite; animation-delay: 2s; }
.artist-footer_dot--4 { top: 70%; left: 75%; background: var(--footer-accent-gold); opacity: 0.35; animation: dotFloat 11s ease-in-out infinite; animation-delay: 0.5s; }
.artist-footer_dot--5 { top: 85%; left: 25%; background: var(--footer-accent-mint); opacity: 0.3; animation: dotFloat 12s ease-in-out infinite; animation-delay: 3s; }
.artist-footer_dot--6 { top: 45%; left: 92%; background: var(--footer-accent-lavender); opacity: 0.4; animation: dotFloat 7s ease-in-out infinite; animation-delay: 1.5s; }

@keyframes dotFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.5; }
}

/* ============================================
   CONTENT CONTAINER
   ============================================ */
.artist-footer_content {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

/* ============================================
   TOP SECTION - 4 COLUMNS
   ============================================ */
.artist-footer_top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
}

/* Column Entrance Animations - Always Visible by Default */
.artist-footer_column {
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--anim-duration-slow) var(--anim-easing), 
                transform var(--anim-duration-slow) var(--anim-easing);
    will-change: opacity, transform;
}

/* When JS adds animate class, trigger entrance */
.artist-footer_column.animate {
    opacity: 0;
    transform: translateY(30px);
}

.artist-footer_column.animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for animated entrance */
.artist-footer_column.animate.is-visible:nth-child(1) { transition-delay: 0s; }
.artist-footer_column.animate.is-visible:nth-child(2) { transition-delay: 0.12s; }
.artist-footer_column.animate.is-visible:nth-child(3) { transition-delay: 0.24s; }
.artist-footer_column.animate.is-visible:nth-child(4) { transition-delay: 0.36s; }

/* ============================================
   BRAND COLUMN - ENHANCED
   ============================================ */
.artist-footer_brand {
    padding-right: 1rem;
}

.artist-footer_logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform var(--anim-duration-fast) var(--anim-easing);
}

.artist-footer_logo:hover {
    transform: scale(1.02);
}

.artist-footer_logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--footer-accent-peach), var(--footer-accent-lavender));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sacramento', cursive;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(244, 169, 146, 0.4);
    transition: all var(--anim-duration-fast) var(--anim-easing);
}

.artist-footer_logo:hover .artist-footer_logo-icon {
    box-shadow: 0 6px 20px rgba(244, 169, 146, 0.5);
    transform: rotate(5deg);
}

.artist-footer_logo-name {
    font-family: 'Sacramento', cursive;
    font-size: 2.25rem;
    color: var(--footer-text-primary);
    font-weight: 700;
    line-height: 1;
}

.artist-footer_philosophy {
    font-family: 'Schoolbell', cursive !important;
    font-size: 1.25rem !important; /* Scaled up from 1.1rem */
    font-style: italic;
    color: var(--footer-text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--footer-accent-gold);
}

.artist-footer_desc {
    font-family: 'Schoolbell', cursive !important;
    font-size: 1.15rem !important; /* Scaled up from 0.95rem */
    color: var(--footer-text-muted);
    line-height: 1.8;
}

/* Animated Signature */
.artist-footer_signature {
    margin-top: 1.5rem;
    font-family: 'Sacramento', cursive;
    font-size: 1.5rem;
    color: var(--footer-accent-gold);
    position: relative;
    display: inline-block;
}

.artist-footer_signature-text {
    background: linear-gradient(90deg, var(--footer-accent-gold), var(--footer-accent-peach), var(--footer-accent-gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   SECTION HEADINGS - ENHANCED & VISIBLE
   ============================================ */
.artist-footer_heading,
.artist-footer .artist-footer_heading,
.artist-footer_column .artist-footer_heading {
    font-family: 'Schoolbell', cursive !important;
    font-size: 1.15rem !important; /* Scaled up from 0.95rem */
    font-weight: 700 !important;
    color: #5A4A3A !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 0.6rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: none !important;
    -webkit-text-fill-color: #5A4A3A !important;
}

.artist-footer_heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--footer-accent-gold), var(--footer-accent-lavender));
    border-radius: 2px;
    transition: width var(--anim-duration-fast) var(--anim-easing);
}

.artist-footer_column:hover .artist-footer_heading::after {
    width: 50px;
}

/* ============================================
   LINKS - ENHANCED WITH MICRO-INTERACTIONS
   ============================================ */
.artist-footer_links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.artist-footer_link {
    font-family: 'Schoolbell', cursive !important;
    font-size: 1.15rem !important; /* Scaled up from 0.95rem */
    color: var(--footer-text-secondary);
    text-decoration: none;
    transition: all var(--anim-duration-fast) var(--anim-easing);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.25rem 0;
    position: relative;
    overflow: hidden;
}

.artist-footer_link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--footer-accent-gold), var(--footer-accent-lavender));
    transition: width var(--anim-duration-fast) var(--anim-easing);
}

.artist-footer_link i {
    font-size: 0.75rem;
    color: var(--footer-accent-lavender);
    transition: all var(--anim-duration-fast) var(--anim-easing);
    opacity: 0.7;
}

.artist-footer_link:hover {
    color: var(--footer-accent-gold);
    transform: translateX(8px);
}

.artist-footer_link:hover::before {
    width: 100%;
}

.artist-footer_link:hover i {
    color: var(--footer-accent-gold);
    transform: translateX(4px);
    opacity: 1;
}

/* ============================================
   CONNECT SECTION - INTERACTIVE CARDS
   ============================================ */
.artist-footer_connect {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.artist-footer_contact-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.1rem;
    background: var(--footer-glass-bg);
    border-radius: 12px;
    color: var(--footer-text-secondary);
    text-decoration: none;
    font-family: 'Schoolbell', cursive !important;
    font-size: 1.1rem !important; /* Scaled up from 0.9rem */
    transition: all var(--anim-duration-fast) var(--anim-easing);
    border: 1px solid var(--footer-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.artist-footer_contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--footer-accent-gold);
    color: var(--footer-accent-gold);
}

.artist-footer_contact-card i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--footer-accent-gold-light), var(--footer-accent-gold));
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all var(--anim-duration-fast) var(--anim-easing);
}

.artist-footer_contact-card:hover i {
    background: linear-gradient(135deg, var(--footer-accent-gold), var(--footer-accent-peach));
    transform: scale(1.1);
}

/* ============================================
   SOCIAL ICONS - ENHANCED HOVER EFFECTS
   ============================================ */
.artist-footer_social-row {
    display: flex;
    gap: 0.875rem;
    margin-top: 0.5rem;
}

.artist-footer_social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--footer-border);
    border-radius: 50%;
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: all var(--anim-duration-fast) var(--anim-easing-bounce);
    background: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.artist-footer_social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--footer-accent-gold), var(--footer-accent-peach));
    opacity: 0;
    transition: opacity var(--anim-duration-fast) var(--anim-easing);
    z-index: 0;
}

.artist-footer_social-btn i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    transition: all var(--anim-duration-fast) var(--anim-easing);
}

.artist-footer_social-btn:hover {
    border-color: transparent;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 168, 75, 0.35);
    color: white;
}

.artist-footer_social-btn:hover::before {
    opacity: 1;
}

.artist-footer_social-btn:hover i {
    transform: scale(1.15);
}

/* ============================================
   BOTTOM BAR - ENHANCED
   ============================================ */
.artist-footer_bottom {
    border-top: 1px solid var(--footer-border);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.artist-footer_copyright {
    font-family: 'Schoolbell', cursive !important;
    font-size: 1.05rem !important; /* Scaled up from 0.875rem */
    color: var(--footer-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.artist-footer_copyright i {
    color: var(--footer-accent-peach);
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.artist-footer_bottom-links {
    display: flex;
    gap: 1.5rem;
}

.artist-footer_bottom-link {
    font-family: 'Schoolbell', cursive !important;
    font-size: 1.05rem !important; /* Scaled up from 0.875rem */
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: all var(--anim-duration-fast) var(--anim-easing);
    position: relative;
}

.artist-footer_bottom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--footer-accent-gold);
    transition: width var(--anim-duration-fast) var(--anim-easing);
}

.artist-footer_bottom-link:hover {
    color: var(--footer-accent-gold);
}

.artist-footer_bottom-link:hover::after {
    width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .artist-footer_top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .artist-footer_brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
    
    .artist-footer_paint-splash {
        opacity: 0.06;
        transform: scale(0.7);
    }
}

@media (max-width: 768px) {
    .artist-footer {
        padding-top: 6rem;
    }
    
    .artist-footer_wave-container {
        height: 80px;
    }
    
    .artist-footer_content {
        padding: 0 1.5rem;
    }
    
    .artist-footer_top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .artist-footer_heading {
        margin-bottom: 1.25rem;
    }
    
    .artist-footer_social-btn {
        width: 40px;
        height: 40px;
    }
    
    .artist-footer_paint-splash,
    .artist-footer_dot {
        display: none;
    }
    
    .artist-footer_column {
        /* Reduce animation on mobile */
        transition-duration: 0.4s;
    }
}

@media (max-width: 480px) {
    .artist-footer_content {
        padding: 0 1rem;
    }
    
    .artist-footer_logo-name {
        font-size: 1.75rem;
    }
    
    .artist-footer_bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .artist-footer_copyright {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .artist-footer_bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   ACCESSIBILITY - PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .artist-footer_wave-back,
    .artist-footer_wave-middle,
    .artist-footer_wave-front,
    .artist-footer_paint-splash,
    .artist-footer_sparkle,
    .artist-footer_signature-text {
        animation: none;
    }
    
    .artist-footer_column {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .artist-footer_link,
    .artist-footer_social-btn,
    .artist-footer_contact-card,
    .artist-footer_bottom-link {
        transition: none;
    }
    
    .artist-footer_copyright i {
        animation: none;
    }
}

/* ============================================
   FOCUS STATES FOR ACCESSIBILITY
   ============================================ */
.artist-footer_link:focus-visible,
.artist-footer_social-btn:focus-visible,
.artist-footer_contact-card:focus-visible,
.artist-footer_bottom-link:focus-visible {
    outline: 2px solid var(--footer-accent-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.artist-footer_social-btn:focus-visible {
    border-radius: 50%;
}

/* ============================================
   HIGH CONTRAST MODE SUPPORT
   ============================================ */
@media (prefers-contrast: high) {
    .artist-footer {
        background: #FFFFFF;
    }
    
    .artist-footer_link,
    .artist-footer_text-secondary {
        color: #000000;
    }
    
    .artist-footer_contact-card {
        border: 2px solid #000000;
    }
}
