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

:root {
    --primary-green: #14532d;
    --primary-green-hover: #166534;
    --accent-green: #16a34a;
    --light-mint: #f0fdf4;
    --surface-card: #ffffff;
    --border-color: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Custom transitions and hover states */
.btn-primary-green {
    background-color: #14532d;
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-green:hover {
    background-color: #166534;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 83, 45, 0.25);
}

.btn-primary-green:active {
    transform: translateY(0);
}

.btn-outline-green {
    border: 1.5px solid #14532d;
    color: #14532d;
    background: transparent;
    transition: all 0.2s ease;
}

.btn-outline-green:hover {
    background-color: #f0fdf4;
    border-color: #166534;
}

/* Card hover lifts */
.card-hover-effect {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
}

/* Active Nav Indicator */
.nav-link-active {
    color: #14532d !important;
    font-weight: 600;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Stepper Pill Styling */
.step-circle {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
}

.step-active {
    background-color: #14532d;
    color: #ffffff;
}

.step-completed {
    background-color: #16a34a;
    color: #ffffff;
}

.step-inactive {
    background-color: #e2e8f0;
    color: #64748b;
}

/* Drag and Drop Box */
.dropzone-box {
    border: 2px dashed #cbd5e1;
    transition: all 0.2s ease;
}

.dropzone-box:hover, .dropzone-box.dragover {
    border-color: #16a34a;
    background-color: #f0fdf4;
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-message {
    pointer-events: auto;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
