/* Smart Planlegger Styles */

.planner-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
}

.progress-section {
    margin-bottom: 3rem;
    text-align: center;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto 1rem;
    gap: 0.5rem;
}

.progress-step {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.progress-step.active {
    background: #1e293b;
}

.progress-text {
    color: #64748b;
    font-size: 0.875rem;
}

.step-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.step-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.option-grid {
    display: grid;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.option-btn {
    padding: 0;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.option-btn:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option-btn.selected {
    border-color: #1e293b;
    background: #f8fafc;
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.1);
}

.option-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
}

.option-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    padding: 0.75rem 1rem 0.25rem;
}

.option-desc {
    font-size: 0.75rem;
    color: #64748b;
    padding: 0 1rem 0.75rem;
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-input.large {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
}

.form-input.xlarge {
    font-size: 2rem;
    padding: 1rem 1.5rem;
    font-weight: bold;
}

.info-box {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
}

.info-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.budget-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.budget-option {
    padding: 1rem;
}

.budget-option.recommended {
    background: #dcfce7;
    border-radius: 0.5rem;
}

.budget-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.budget-amount {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1e293b;
}

.budget-option.recommended .budget-amount {
    color: #16a34a;
}

.warning-box {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.warning-box p {
    color: #92400e;
    font-size: 0.875rem;
    margin: 0;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #1e293b;
    color: white;
    margin-left: auto;
}

.btn-primary:hover {
    background: #0f172a;
}

.btn-secondary {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-secondary:hover {
    background: #cbd5e1;
}

.btn-success {
    background: #16a34a;
    color: white;
    margin-left: auto;
}

.btn-success:hover {
    background: #15803d;
}

