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

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

.theme-red {
    background-color: #c41e3a; /* Deep red */
}

.theme-gold {
    color: #d4af37; /* Metallic gold */
}

.bg-red-deep {
    background-color: #c41e3a;
}

.border-gold {
    border-color: #d4af37;
}

.text-gold {
    color: #d4af37;
}

.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1rem;
}

.btn-primary {
    background-color: #c41e3a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

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

.btn-gold {
    background-color: #d4af37;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-gold:hover {
    background-color: #b8962f;
}

.input-field {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    outline: none;
    transition: border-color 0.2s;
}

.input-field:focus {
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.nav-link {
    color: #4b5563;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s, color 0.2s;
}

.nav-link:hover {
    background-color: #f3f4f6;
    color: #c41e3a;
}

.nav-link.active {
    background-color: #fee2e2;
    color: #c41e3a;
    font-weight: 600;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
