/* FILE: /assets/site.css */

/* Custom focus rings for better accessibility */
:focus-visible {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
}

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

/* Prose adjustments for FAQs */
.prose {
    line-height: 1.7;
}

.prose h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.prose p {
    margin-bottom: 1rem;
}

/* Form input focus states */
input:focus, textarea:focus, select:focus {
    border-color: #1e3a8a;
    box-shadow: inset 0 0 0 1px #1e3a8a;
}

/* Button transitions */
button {
    transition: all 0.2s ease;
}

/* Link underlines on hover */
a {
    transition: color 0.2s ease;
}

/* Placeholder text */
::placeholder {
    color: #a1a5ab;
    opacity: 1;
}

/* Container max-width for content sections */
.max-w-6xl {
    max-width: 72rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-2xl {
    max-width: 42rem;
}

/* Ensure proper spacing on small screens */
@media (max-width: 640px) {
    h1 {
        line-height: 1.2;
    }
    
    h2 {
        line-height: 1.3;
    }
}
