@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Crimson+Pro:wght@400;600;700&display=swap");

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
    color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Minimal custom styles - let Tailwind handle the rest */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: #4263eb;
    color: white;
}

.btn-primary:hover {
    background-color: #3451d1;
}

.btn-secondary {
    background-color: #c2185b;
    color: white;
}

.btn-secondary:hover {
    background-color: #a31545;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-primary, .badge {
    background-color: #4263eb;
    color: white;
}

.badge-secondary {
    background-color: #c2185b;
    color: white;
}

.badge-outline {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
}

.input, .textarea, .select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    background-color: white;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.input:focus, .textarea:focus, .select:focus {
    outline: none;
    border-color: #4263eb;
    box-shadow: 0 0 0 3px rgba(66, 99, 235, 0.1);
}

.textarea {
    resize: vertical;
    min-height: 100px;
}

.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}
