﻿/* Custom styles for the high-tech theme */

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A192F; /* Deep Navy Blue */
    color: #8892B0; /* Slate Blue */
}

.text-light-slate {
    color: #CCD6F6;
}

.text-accent {
    color: #64FFDA;
}

.bg-accent {
    background-color: #64FFDA;
}

.border-accent {
    border-color: #64FFDA;
}

/* Glassmorphism effect for the navbar */
.glass-nav {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animated gradient for CTA buttons */
.btn-primary {
    background-image: linear-gradient(to right, #007BFF, #00C6FF, #007BFF);
    background-size: 200% auto;
    transition: all 0.4s ease-in-out;
}

    .btn-primary:hover {
        background-position: right center;
    }

/* Reveal on scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Custom focus ring color */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #64FFDA;
}

/* Styling for the AI analysis result */
.ai-response-container h4 {
    color: #64FFDA;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.ai-response-container ul {
    list-style-type: none;
    padding-left: 1rem;
}

.ai-response-container li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.25rem;
}

    .ai-response-container li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #64FFDA;
    }

/* Styling for chat interfaces */
.chat-bubble {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    max-width: 85%;
    word-wrap: break-word;
}

.chat-bubble.user {
    background-color: #007BFF;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 0.125rem;
}

.chat-bubble.ai {
    background-color: #1E293B; /* slate-800 */
    color: #CCD6F6; /* text-light-slate */
    margin-right: auto;
    border-bottom-left-radius: 0.125rem;
}
