/* Welcome View Styles */

.welcome-view {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-header {
    text-align: center;
    margin-bottom: 60px;
}

.welcome-header__title {
    font-size: 2.5rem;
    color: var(--theme-text-primary);
    margin-bottom: 15px;
}

.welcome-header__subtitle {
    font-size: 1.1rem;
    color: var(--theme-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.action-card {
    background: var(--theme-card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--theme-card-border);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--theme-card-shadow);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--theme-border-color);
}

.action-card__icon-container {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Modifiers for icon colors */
.action-card__icon-container--blue {
    background: color-mix(in srgb, var(--theme-primary), transparent 90%);
    color: var(--theme-primary);
}

.action-card__icon-container--green {
    background: color-mix(in srgb, var(--theme-success), transparent 90%);
    color: var(--theme-success);
}

.action-card__icon-container--purple {
    background: color-mix(in srgb, #a855f7, transparent 90%);
    /* Keeping purple as accent */
    color: #a855f7;
    /* No variable for purple yet, keeping hex */
}

.action-card__icon-container--gray {
    background: var(--theme-bg-tertiary);
    color: var(--theme-text-secondary);
}

.action-card__icon {
    font-size: 1.5rem;
}

.action-card__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--theme-text-primary);
    /* Dark slate */
}

.action-card__description {
    color: var(--theme-text-secondary);
    font-size: 0.95rem;
}

/* Hidden template container */
.template-hidden {
    display: none !important;
}