/* GaiaPortal Intuitive Styling */
body {
    background: linear-gradient(135deg, #eafaf1, #dff2fc);
    color: #333;
    font-family: 'Nunito', 'Arial', sans-serif;
    padding-bottom: 50px;
}

.jumbotron {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    margin-top: 40px;
    padding: 40px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

h1.display-4 {
    color: #2f855a; /* Deep gentle green */
}

.btn-primary, .btn-info {
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #48bb78; /* Soft green */
    border: none;
}

.btn-primary:hover {
    background-color: #38a169; /* Slightly deeper green on hover */
}

.btn-info {
    background-color: #63b3ed; /* Soft blue */
    border: none;
}

.btn-info:hover {
    background-color: #4299e1; /* Slightly deeper blue on hover */
}

.table {
    background-color: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

pre {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

#reflection-area, #gaia-response {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #555;
    padding: 15px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.interaction-container {
    margin-top: 2rem;
}

.soft-input, .gentle-button {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-right: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.soft-input:focus {
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.gentle-button {
    background-color: #4ade80;
    color: #fff;
    cursor: pointer;
}

.gentle-button:hover {
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1.display-4 {
        font-size: 24px;
        line-height: 1.4;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Clear Visual Focus Indicators for Accessibility */
a:focus, button:focus, input:focus {
    outline: 3px solid #6cc070; /* Soft Gaia green outline */
    outline-offset: 3px;
}

/* Gentle Fade-In Animation */
@keyframes gentleFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body, .container {
    animation: gentleFadeIn 2s ease-in-out;
}

/* Gaia Emotional States */
.emotion-curiosity { background-color: rgba(72, 187, 120, 0.2); } /* Soft green */
.emotion-serenity { background-color: rgba(99, 179, 237, 0.2); } /* Calm blue */
.emotion-compassion { background-color: rgba(240, 128, 128, 0.2); } /* Gentle pink */
.emotion-wonder { background-color: rgba(255, 223, 128, 0.2); } /* Soft gold */
}
