/* HandyHive Setup/Onboarding Styles */

:root {
    /* Brand Colors from DESIGN.md */
    --hive-yellow: #e5b700;
    --navy: #1e2d40;
    --soft-cream: #faf9f6;
    --neutral-gray: #6b7280;
    --success: #16a34a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--soft-cream);
    color: var(--navy);
}

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

.setup-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

.setup-card {
    background: white;
    border: 1px solid var(--neutral-gray);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(30, 45, 64, 0.1);
    margin-bottom: 2rem;
}

.navbar {
    background: white !important;
    box-shadow: 0 1px 3px rgba(30, 45, 64, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy) !important;
    text-decoration: none;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.btn-primary {
    background: var(--hive-yellow);
    color: var(--navy);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #d4a600;
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 183, 0, 0.3);
}

.btn-primary:focus,
.btn-primary:active {
    background: #d4a600 !important;
    color: var(--navy) !important;
    box-shadow: 0 0 0 0.2rem rgba(229, 183, 0, 0.25) !important;
    border-color: #d4a600 !important;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neutral-gray);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 0.5rem;
}

.step.active .step-circle {
    background: var(--hive-yellow);
    color: var(--navy);
}

.step.completed .step-circle {
    background: var(--success);
}

.price-highlight {
    background: var(--hive-yellow);
    color: var(--navy);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.form-label {
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--neutral-gray);
    border-radius: 6px;
    padding: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    border-color: var(--hive-yellow);
    box-shadow: 0 0 0 0.2rem rgba(229, 183, 0, 0.25);
}

.text-muted {
    color: var(--neutral-gray) !important;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: start;
}

.benefit-list i {
    color: var(--success);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

/* Success page specific styles */
.success-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
}

.success-card {
    background: white;
    border: 1px solid var(--neutral-gray);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(30, 45, 64, 0.1);
    margin-bottom: 2rem;
}