/* styles.css */

/* Color Palette */
:root {
    --primary-blue: #2B6CB0;
    --secondary-green: #48BB78;
    --neutral-gray: #A0AEC0;
    --accent-orange: #F6AD55;
    --dark-text: #2D3748;
    --light-bg: #EDF2F7;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-open-sans {
    font-family: 'Open Sans', sans-serif;
}

.bg-primary-blue {
    background-color: var(--primary-blue);
}

.bg-secondary-green {
    background-color: var(--secondary-green);
}

.bg-accent-orange {
    background-color: var(--accent-orange);
}

.bg-dark-text {
    background-color: var(--dark-text);
}

.bg-light-bg {
    background-color: var(--light-bg);
}

.text-primary-blue {
    color: var(--primary-blue);
}

.text-secondary-green {
    color: var(--secondary-green);
}

.text-accent-orange {
    color: var(--accent-orange);
}

.text-dark-text {
    color: var(--dark-text);
}

.text-light-bg {
    color: var(--light-bg);
}

/* Basic utility classes (mimicking Tailwind for quick styling) */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.text-white {
    color: #fff;
}

.text-gray-500 {
    color: #6B7280;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1F2937;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.875rem;
}

.font-bold {
    font-weight: 700;
}

.leading-tight {
    line-height: 1.25;
}

.text-center {
    text-align: center;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-white {
    background-color: #fff;
}

.bg-gray-100 {
    background-color: #F3F4F6;
}

.bg-gray-200 {
    background-color: #E5E7EB;
}

.opacity-20 {
    opacity: 0.2;
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

.from-primary-blue {
    background-image: linear-gradient(to right, var(--primary-blue), var(--secondary-green));
}

.to-accent-green {
    /* Defined in from-primary-blue, but keeping for conceptual clarity */
}

.hover\:bg-orange-600:hover {
    background-color: #DD6B20; /* A darker shade of accent-orange */
}

.hover\:bg-green-600:hover {
    background-color: #38A169; /* A darker shade of secondary-green */
}

.hover\:bg-gray-500:hover {
    background-color: #6B7280; /* A darker shade of gray-400 */
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.w-full {
    width: 100%;
}

.w-1\/2 {
    width: 50%;
}

.w-1\/3 {
    width: 33.333333%;
}

.w-1\/4 {
    width: 25%;
}

.hidden {
    display: none;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form specific styles */
.form-step {
    /* Handled by JS toggling 'hidden' class */
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.border {
    border-width: 1px;
    border-color: #D1D5DB;
}

.focus\:outline-none:focus {
    outline: 0;
}

.focus\:shadow-outline:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .md\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    .md\:text-xl {
        font-size: 1.25rem;
    }
}
