/* ==============================================================================
   style.css — Desain Mobile-First Responsive "Luxury Digital Sanctuary"
   SOULOS AI - Personal Growth Companion
   ============================================================================== */

/* Base & Typography Adjustments */
body {
    background-color: #FAF7F2;
    color: #1A1E29;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
}

/* Glassmorphism Cards */
.card-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px -10px rgba(26, 30, 41, 0.05);
}

.card-glass-dark {
    background: rgba(26, 30, 41, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Luxury Glow Effects */
.glow-gold {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.glow-purple {
    box-shadow: 0 0 30px rgba(232, 222, 248, 0.8);
}

/* Custom Gradients */
.bg-gradient-luxury {
    background: linear-gradient(135deg, #1A1E29 0%, #2A3042 100%);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulseSlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}

.animate-pulse-slow {
    animation: pulseSlow 3s infinite ease-in-out;
}

/* Custom Scrollbar for Chat & Reports */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(26, 30, 41, 0.03);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}

/* Responsive Touch Target (Mobile First Optimization) */
button, a, input, select, textarea {
    min-height: 44px;
}

/* Tab Navigation Styling */
.tab-btn {
    transition: all 0.25s ease;
}
.tab-btn.active {
    background-color: #1A1E29;
    color: #FAF7F2;
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(26, 30, 41, 0.15);
}
.tab-btn:not(.active):hover {
    background-color: rgba(232, 222, 248, 0.4);
    color: #6750A4;
}

/* Spinner */
.spinner {
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid #D4AF37;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
