/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--breezan-primary: #cc9966;
	--breezan-primary-hover: #bb8855;
	--breezan-primary-light: rgba(204,153,102,0.08);
	--breezan-text: #1f2937;
	--breezan-text-light: #6b7280;
	--breezan-text-muted: #9ca3af;
	--breezan-border: #f3f4f6;
	--breezan-bg: #ffffff;
	--breezan-bg-soft: #f7f7f9;
	--breezan-header-bg: #ffffff;
	--breezan-footer-bg: #111827;
	--breezan-radius: 1rem;
	--breezan-radius-sm: 0.5rem;
	--breezan-radius-lg: 1.5rem;
	--breezan-shadow: 0 1px 3px rgba(0,0,0,0.06);
	--breezan-shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
	--breezan-max-w: 1280px;
	--breezan-font: 'Cairo', sans-serif;
	--breezan-transition: 0.2s ease;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--breezan-font);
	color: var(--breezan-text);
	background: var(--breezan-bg);
	line-height: 1.7;
	direction: rtl;
	text-align: right;
	-webkit-font-smoothing: antialiased;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1 0 auto;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

.breezan-container {
	max-width: var(--breezan-max-w);
	margin-inline: auto;
	padding-inline: 1rem;
}
@media (min-width: 640px) { .breezan-container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .breezan-container { padding-inline: 2rem; } }

.breezan-sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }

/* ── Section spacing ── */
.breezan-section { padding-block: 3rem; }
.breezan-section__title {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--breezan-text);
}
.breezan-section__subtitle {
	text-align: center;
	color: var(--breezan-text-light);
	font-size: 0.875rem;
	margin-top: -1.5rem;
	margin-bottom: 2rem;
}
