/* ===========================================
   Baleseti Bejelentő - Mobile-first CSS
   "Hülyebiztos" design: nagy elemek, egyszerű
   =========================================== */

/* Alap */
body {
	font-size: 18px;
	line-height: 1.6;
	background: #f5f7fa;
	color: #333;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Fejléc */
.ar-header {
	background: #fff;
	border-bottom: 3px solid #0056b3;
	padding: 12px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ar-logo {
	height: 40px;
	width: auto;
}
.ar-header-title {
	font-size: 20px;
	font-weight: 700;
	color: #0056b3;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
/* Nyelvválasztó */
.ar-lang-switcher {
	display: flex;
	gap: 6px;
	align-items: center;
}
.ar-lang-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.2s;
	border: 2px solid transparent;
	opacity: 0.55;
}
.ar-lang-flag:hover {
	opacity: 1;
	text-decoration: none;
}
.ar-lang-flag--active {
	opacity: 1;
	border-color: #0056b3;
	background: #e8f0fe;
}
.ar-flag-emoji {
	font-size: 22px;
	line-height: 1;
}

/* Progress / Lépések */
.ar-progress-wrapper {
	background: #fff;
	padding: 16px 0 8px;
	border-bottom: 1px solid #e0e0e0;
	position: sticky;
	top: 0;
	z-index: 100;
}
.ar-steps {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.ar-step {
	flex: 1;
	text-align: center;
	position: relative;
}
.ar-step-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 4px;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.3s;
}
.ar-step-label {
	font-size: 11px;
	font-weight: 600;
	color: #999;
}
.ar-step--pending .ar-step-circle {
	background: #e0e0e0;
	color: #999;
}
.ar-step--active .ar-step-circle {
	background: #0056b3;
	color: #fff;
	box-shadow: 0 0 0 4px rgba(0,86,179,0.2);
}
.ar-step--active .ar-step-label {
	color: #0056b3;
	font-weight: 700;
}
.ar-step--completed .ar-step-circle {
	background: #28a745;
	color: #fff;
}
.ar-step--completed .ar-step-label {
	color: #28a745;
}

/* Fő tartalom */
.ar-main {
	flex: 1;
	padding: 24px 0;
}

/* Kártyák */
.ar-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	padding: 24px;
	margin-bottom: 20px;
}
.ar-card-title {
	font-size: 22px;
	font-weight: 700;
	color: #0056b3;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e8f0fe;
}
.ar-card-subtitle {
	font-size: 16px;
	color: #666;
	margin-bottom: 16px;
}

/* Form elemek - nagy, egyszerű */
.ar-form-group {
	margin-bottom: 20px;
}
.ar-form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 16px;
	color: #444;
}
.ar-form-group .required::after {
	content: ' *';
	color: #dc3545;
}
.ar-input {
	display: block;
	width: 100%;
	padding: 14px 16px;
	font-size: 18px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background: #fff;
	transition: border-color 0.2s;
	-webkit-appearance: none;
}
.ar-input:focus {
	outline: none;
	border-color: #0056b3;
	box-shadow: 0 0 0 3px rgba(0,86,179,0.15);
}
.ar-input.is-invalid {
	border-color: #dc3545;
}
.ar-input-error {
	color: #dc3545;
	font-size: 14px;
	margin-top: 4px;
	display: none;
}
.ar-input.is-invalid + .ar-input-error {
	display: block;
}
textarea.ar-input {
	min-height: 100px;
	resize: vertical;
}
select.ar-input {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px 12px;
	padding-right: 40px;
}

/* Igen/Nem gombok */
.ar-yesno {
	display: flex;
	gap: 12px;
}
.ar-yesno-btn {
	flex: 1;
	padding: 14px;
	border: 2px solid #ddd;
	border-radius: 8px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	background: #fff;
	user-select: none;
}
.ar-yesno-btn:hover {
	border-color: #0056b3;
}
.ar-yesno-btn.selected-yes {
	background: #d4edda;
	border-color: #28a745;
	color: #155724;
}
.ar-yesno-btn.selected-no {
	background: #f8d7da;
	border-color: #dc3545;
	color: #721c24;
}
.ar-yesno-btn input[type="radio"] {
	display: none;
}

/* Figyelmeztetés */
.ar-warning {
	background: #fff3cd;
	border: 2px solid #ffc107;
	border-radius: 8px;
	padding: 16px;
	margin: 16px 0;
}
.ar-warning-icon {
	font-size: 24px;
	margin-right: 8px;
}
.ar-danger {
	background: #f8d7da;
	border: 2px solid #dc3545;
	border-radius: 8px;
	padding: 20px;
	margin: 16px 0;
	font-weight: 700;
	font-size: 18px;
}
.ar-danger .ar-danger-icon {
	font-size: 28px;
	display: block;
	text-align: center;
	margin-bottom: 8px;
}
.ar-danger a {
	color: #dc3545;
	font-size: 24px;
	text-decoration: underline;
}

/* Info doboz */
.ar-info {
	background: #e8f0fe;
	border: 2px solid #0056b3;
	border-radius: 8px;
	padding: 16px;
	margin: 16px 0;
}

/* Gombok */
.ar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	min-height: 52px;
}
.ar-btn-primary {
	background: #0056b3;
	color: #fff;
}
.ar-btn-primary:hover {
	background: #004494;
	color: #fff;
	text-decoration: none;
}
.ar-btn-success {
	background: #28a745;
	color: #fff;
}
.ar-btn-success:hover {
	background: #218838;
	color: #fff;
	text-decoration: none;
}
.ar-btn-secondary {
	background: #6c757d;
	color: #fff;
}
.ar-btn-secondary:hover {
	background: #5a6268;
	color: #fff;
	text-decoration: none;
}
.ar-btn-outline {
	background: transparent;
	border: 2px solid #0056b3;
	color: #0056b3;
}
.ar-btn-outline:hover {
	background: #0056b3;
	color: #fff;
	text-decoration: none;
}
.ar-btn-lg {
	padding: 18px 48px;
	font-size: 20px;
	min-height: 60px;
}
.ar-btn i {
	flex-shrink: 0;
}

/* Navigáció (előre/hátra) */
.ar-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

/* Fotó feltöltés */
.ar-upload-zone {
	border: 3px dashed #ccc;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	background: #fafafa;
	margin-bottom: 16px;
}
.ar-upload-zone:hover,
.ar-upload-zone.dragover {
	border-color: #0056b3;
	background: #e8f0fe;
}
.ar-upload-zone i {
	font-size: 40px;
	color: #0056b3;
	display: block;
	margin-bottom: 8px;
}
.ar-upload-zone p {
	margin: 0;
	font-size: 16px;
	color: #666;
}
.ar-upload-zone input[type="file"] {
	display: none;
}

/* Feltöltött fotók grid */
.ar-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 10px;
	margin-top: 12px;
}
.ar-photo-thumb {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 1;
	background: #eee;
}
.ar-photo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ar-photo-thumb .ar-photo-delete {
	position: absolute;
	top: 4px;
	right: 4px;
	background: #dc3545;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Feltöltés progress */
.ar-upload-progress {
	height: 6px;
	background: #e0e0e0;
	border-radius: 3px;
	margin-top: 8px;
	display: none;
}
.ar-upload-progress-bar {
	height: 100%;
	background: #0056b3;
	border-radius: 3px;
	transition: width 0.3s;
}

/* Aláírás pad */
.ar-signature-wrapper {
	margin-bottom: 24px;
}
.ar-signature-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}
.ar-signature-pad {
	border: 2px solid #ddd;
	border-radius: 8px;
	background: #fff;
	touch-action: none;
	width: 100%;
	height: 200px;
}
.ar-signature-actions {
	margin-top: 8px;
	display: flex;
	gap: 8px;
}
.ar-signature-clear {
	padding: 8px 16px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}
.ar-signature-clear:hover {
	background: #f5f5f5;
}

/* Összegzés */
.ar-summary-section {
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e0e0e0;
}
.ar-summary-section:last-child {
	border-bottom: none;
}
.ar-summary-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	color: #0056b3;
	margin-bottom: 12px;
}
.ar-summary-edit {
	font-size: 14px;
	font-weight: 400;
}
.ar-summary-row {
	display: flex;
	padding: 4px 0;
}
.ar-summary-label {
	flex: 0 0 160px;
	font-weight: 600;
	color: #666;
	font-size: 15px;
}
.ar-summary-value {
	flex: 1;
	font-size: 16px;
}

/* Checkbox (nyilatkozat) */
.ar-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background: #f8f9fa;
	border-radius: 8px;
	margin: 20px 0;
	cursor: pointer;
}
.ar-checkbox input[type="checkbox"] {
	width: 24px;
	height: 24px;
	margin-top: 2px;
	flex-shrink: 0;
}
.ar-checkbox span {
	font-size: 16px;
}

/* Lábléc */
.ar-footer {
	background: #fff;
	border-top: 1px solid #e0e0e0;
	padding: 12px 0;
	margin-top: auto;
	color: #999;
}

/* Hiba üzenet */
.ar-error-box {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 8px;
	padding: 14px 18px;
	color: #721c24;
	margin-bottom: 20px;
	font-size: 16px;
}

/* Siker üzenet */
.ar-success-box {
	text-align: center;
	padding: 40px 20px;
}
.ar-success-icon {
	width: 80px;
	height: 80px;
	background: #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.ar-success-icon i {
	font-size: 40px;
	color: #fff;
}
.ar-success-title {
	font-size: 28px;
	font-weight: 700;
	color: #28a745;
	margin-bottom: 12px;
}
.ar-success-text {
	font-size: 18px;
	color: #666;
	max-width: 500px;
	margin: 0 auto;
}

/* Landing oldal */
.ar-landing-hero {
	text-align: center;
	padding: 20px 0;
}
.ar-landing-hero h1 {
	font-size: 28px;
	font-weight: 700;
	color: #0056b3;
	margin-bottom: 12px;
}
.ar-landing-hero p {
	font-size: 18px;
	color: #666;
}
.ar-landing-checklist {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}
.ar-landing-checklist li {
	padding: 10px 0;
	padding-left: 36px;
	position: relative;
	font-size: 17px;
	border-bottom: 1px solid #eee;
}
.ar-landing-checklist li::before {
	content: '\f058';
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	color: #28a745;
	font-size: 22px;
}

/* Fotó kategória cím */
.ar-photo-category {
	font-size: 17px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	margin-top: 16px;
}
.ar-photo-category:first-child {
	margin-top: 0;
}
.ar-photo-category-hint {
	font-size: 14px;
	color: #888;
	font-weight: 400;
}

/* Responsive */
@media (max-width: 576px) {
	body {
		font-size: 16px;
	}
	.ar-header-title {
		font-size: 14px;
	}
	.ar-lang-switcher {
		gap: 2px;
	}
	.ar-lang-flag {
		width: 30px;
		height: 30px;
	}
	.ar-flag-emoji {
		font-size: 18px;
	}
	.ar-card {
		padding: 16px;
		border-radius: 8px;
	}
	.ar-card-title {
		font-size: 20px;
	}
	.ar-input {
		padding: 12px 14px;
		font-size: 16px;
	}
	.ar-btn {
		padding: 12px 24px;
		font-size: 16px;
	}
	.ar-btn-lg {
		padding: 14px 32px;
		font-size: 18px;
		width: 100%;
	}
	.ar-nav {
		flex-direction: column-reverse;
		gap: 12px;
	}
	.ar-nav .ar-btn {
		width: 100%;
		justify-content: center;
	}
	.ar-step-label {
		font-size: 9px;
	}
	.ar-step-circle {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
	.ar-summary-row {
		flex-direction: column;
	}
	.ar-summary-label {
		flex: none;
		margin-bottom: 2px;
	}
	.ar-landing-hero h1 {
		font-size: 24px;
	}
}
