
:root {
    --liberty-50: #f0f4ff;
    --liberty-100: #d9e4ff;
    --liberty-500: #1a3a8f;
    --liberty-700: #0c225d;
    --liberty-900: #041243;
}

/* Custom CSS enhancements */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Form focus states */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.2);
    border-color: #1a3a8f;
}
textarea {
    min-height: 150px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: #374151;
}
/* Button transition */
.button-transition {
    transition: all 0.3s ease;
}

/* Hero text shadow */
.hero-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Custom max-width for better readability */
.max-w-readable {
    max-width: 65ch;
}

/* Custom underline */
.underline-liberty {
    position: relative;
    display: inline-block;
}

.underline-liberty::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a3a8f;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.underline-liberty:hover::after {
    transform: scaleX(1);
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Gradient background */
.bg-liberty-gradient {
    background: linear-gradient(135deg, #041243 0%, #1a3a8f 100%);
}