/* Welcome Page Styles */
.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Nunito', sans-serif;
}

/* Hero Section */
.welcome-hero {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    border-radius: 14px;
    padding: 2rem 1rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(60, 160, 160, 0.2);
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.welcome-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Action Cards */
.welcome-actions {
    margin-bottom: 2rem;
}

.welcome-actions h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #5471a2;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.action-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.action-card p {
    color: #718096;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: white;
}

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

.btn-secondary:hover {
    background: #4a5568;
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--color-accent-hover);
    border: 2px solid #3ca0a0;
}

.btn-outline:hover {
    background: var(--color-accent-active);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-icon {
background: var(--color-surface);
border: none;
color: var(--color-text);
font-size: 1.2rem;
cursor: pointer;
}

.btn-icon:hover {
    background: var(--color-surface);
    border: none;
    color: var(--color-accent);
    font-size: 1.2rem;
    cursor: pointer;
    transform: translateY(-2px);
}

/* Workflow Grid */
.welcome-workflows {
    margin-bottom: 3rem;
}

.welcome-workflows h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.workflow-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.workflow-card:hover {
    transform: translateY(-2px);
}

.workflow-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.workflow-header i {
    color: #3ca0a0;
    font-size: 1.2rem;
}

.workflow-header h4 {
    margin: 0;
    color: #2d3748;
}

.workflow-description {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.view-all-workflows {
    text-align: center;
}

/* Getting Started */
.welcome-getting-started h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3ca0a0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
}

.step-content p {
    margin: 0;
    color: #718096;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-container {
        padding: 1rem;
    }
    
    .welcome-hero {
        padding: 2rem 1rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
}
