/* Custom styling & animations for Party Planner */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Background mesh gradient */
.bg-party-mesh {
    background-color: #0f172a;
    background-image: 
        radial-gradient(at 0% 0%, hsla(253, 77%, 45%, 0.3) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 79%, 48%, 0.25) 0px, transparent 50%),
        radial-gradient(at 50% 100%, hsla(217, 91%, 60%, 0.2) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(168, 76%, 36%, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Glassmorphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth transitions */
.transition-smooth {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Choice card selected state */
.choice-card {
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
}

.choice-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.choice-input:checked + .choice-card {
    border-color: #6366f1;
    background-color: #eef2ff;
    box-shadow: 0 0 0 1px #6366f1;
}

.choice-input:checked + .choice-card .choice-icon {
    transform: scale(1.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Pulsing effect for accents */
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}

.pulse-subtle {
    animation: pulse-subtle 4s infinite ease-in-out;
}
