/* CRIN CASH v2 — Clean & Light Theme */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Alpine.js cloak */
[x-cloak] {
    display: none !important;
}

/* Page title sections */
.page-header {
    padding-top: 7rem;
    padding-bottom: 2rem;
}

/* Form input light styles */
.form-input {
    width: 100%;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: #111827;
    font-size: 0.875rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}
.form-input::placeholder {
    color: #9ca3af;
}
.form-input:focus {
    border-color: #f7931a;
    box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.1);
}

/* Select styling */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

/* Textarea styling */
textarea.form-input {
    resize: none;
}

/* Subtle card hover */
.card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Stat bar gradient */
.stat-bar {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #fff7ed 100%);
}

/* Prose overrides for light theme legal pages */
.prose-light h2 {
    color: #111827;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.prose-light h3 {
    color: #374151;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.prose-light p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.prose-light ul {
    color: #4b5563;
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.prose-light li {
    margin-bottom: 0.35rem;
    line-height: 1.7;
}
.prose-light a {
    color: #f7931a;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.prose-light a:hover {
    color: #ea7c0b;
}
.prose-light strong {
    color: #111827;
}
.prose-light hr {
    border-color: #e5e7eb;
    margin: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
