/* MBS Budownictwo - Style CSS */

body { 
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth; 
}

html { 
    scroll-behavior: smooth; 
}

/* Custom Colors */
.text-gold { 
    color: #d4af37; 
}

.bg-gold { 
    background-color: #d4af37; 
}

.border-gold { 
    border-color: #d4af37; 
}

.hover-bg-gold:hover { 
    background-color: #b5952f; 
}

.bg-navy { 
    background-color: #0f172a; 
}

/* Chat Animations */
.chat-message { 
    animation: fadeIn 0.3s ease-out; 
}

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

/* Typing Indicator */
.typing-dot { 
    animation: typing 1.4s infinite ease-in-out both; 
}

.typing-dot:nth-child(1) { 
    animation-delay: -0.32s; 
}

.typing-dot:nth-child(2) { 
    animation-delay: -0.16s; 
}

@keyframes typing { 
    0%, 80%, 100% { 
        transform: scale(0); 
    } 
    40% { 
        transform: scale(1); 
    } 
}

/* Prose Styles */
.prose p { 
    margin-bottom: 0.5rem; 
}

.prose ul { 
    list-style-type: disc; 
    padding-left: 1.2rem; 
    margin-bottom: 0.5rem; 
}

.prose strong { 
    font-weight: 600; 
    color: #0B1D35; 
}
