﻿/* wwwroot/css/theme.css */

/* בסיס */
:root {
	--brand: #1677ff;
	--bg: #f6f8fb;
	--card: #ffffff;
	--text: #0f172a;
	--muted: #64748b;
	--border: rgba(15, 23, 42, 0.08);
	--shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
	--radius: 18px;
}

html, body {
	height: 100%;
}

body {
	background: var(--bg);
	color: var(--text);
}

/* כותרת עליונה (אם אתה משתמש בפס כחול) */
.topbar {
	background: var(--brand);
	color: #ffffff;
}

/* כפתורים מעוגלים */
.btn-pill {
	border-radius: 999px !important;
}

/* כרטיסים */
.card-soft {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	background: var(--card);
}

.area-card {
	padding: 14px;
	transition: transform .15s ease, box-shadow .15s ease;
}

	.area-card:hover {
		transform: translateY(-2px);
		box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
	}

.area-title {
	font-size: 1.65rem;
	font-weight: 800;
	letter-spacing: -0.3px;
}

.area-desc {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.55;
}

.area-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 18px;
}

/* כותרת דף */
.page-title {
	font-size: 2.4rem;
	font-weight: 900;
	letter-spacing: -0.6px;
}

.page-subtitle {
	color: var(--muted);
	font-size: 1.05rem;
}

/* מרווחים בדף הבית */
.home-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-start;
	flex-wrap: wrap;
}
