/*
 * Shawarma House homepage CSS repair 0.2.0
 *
 * Scope: the WordPress front page only (the plugin adds this file only there).
 * Source: trusted 2026-05-29 homepage backup for hero, intro, and "what is"
 * rules; the reviews block follows the same color, spacing, and type system.
 * Rollback: deactivate the sh-homepage-css-repair plugin.
 */

.home .sh-hero {
	position: relative;
	width: 100%;
	min-height: 720px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #0a0a0a;
	margin: 0;
	padding: 0;
	isolation: isolate;
}

.home .sh-hero *,
.home .sh-home-intro *,
.home .sh-home-reviews *,
.home .sh-whatis * {
	box-sizing: border-box;
}

.home .sh-hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.home .sh-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	will-change: opacity, transform;
}

.home .sh-slide-1 {
	background-image: url("https://shawarmahousesd.com/wp-content/uploads/2026/05/Combo-Plate.webp");
	animation: sh-slide-cycle 25s 0s infinite;
}

.home .sh-slide-2 {
	background-image: url("https://shawarmahousesd.com/wp-content/uploads/2026/05/Chicken-Shawarma-Plate-1-scaled.jpg");
	animation: sh-slide-cycle 25s 5s infinite;
}

.home .sh-slide-3 {
	background-image: url("https://shawarmahousesd.com/wp-content/uploads/2026/05/Beef-Shawarma-Plate.webp");
	animation: sh-slide-cycle 25s 10s infinite;
}

.home .sh-slide-4 {
	background-image: url("https://shawarmahousesd.com/wp-content/uploads/2026/05/Cream-Chop-Plate.webp");
	animation: sh-slide-cycle 25s 15s infinite;
}

.home .sh-slide-5 {
	background-image: url("https://shawarmahousesd.com/wp-content/uploads/2026/05/Family-Tray-scaled.jpg");
	animation: sh-slide-cycle 25s 20s infinite;
}

@keyframes sh-slide-cycle {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	3% {
		opacity: 1;
	}

	17% {
		opacity: 1;
		transform: scale(1.06);
	}

	22% {
		opacity: 0;
		transform: scale(1.06);
	}

	100% {
		opacity: 0;
		transform: scale(1);
	}
}

.home .sh-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0.66) 100%);
	pointer-events: none;
}

.home .sh-hero-vignette {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 100%);
	pointer-events: none;
}

.home .sh-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	padding: 0 28px;
	max-width: 1080px;
	width: 100%;
}

.home .sh-hero-eyebrow {
	display: inline-block;
	color: #fcdc31 !important;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	margin: 0 0 26px;
	opacity: 0;
	animation: sh-fade 800ms 200ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.home .sh-hero-h1 {
	font-size: 84px !important;
	line-height: 0.98 !important;
	font-weight: 900 !important;
	color: #fff !important;
	margin: 0 0 22px !important;
	letter-spacing: -2px;
	text-shadow: 0 6px 32px rgba(0, 0, 0, 0.75), 0 2px 8px rgba(0, 0, 0, 0.6) !important;
	font-family: inherit !important;
}

.home .sh-hero-h1 .sh-line {
	display: block;
	color: #fff !important;
	opacity: 0;
	transform: translateY(40px);
	animation: sh-rise 950ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home .sh-hero-h1 .sh-line-1 {
	animation-delay: 400ms;
}

.home .sh-hero-h1 .sh-line-2 {
	animation-delay: 600ms;
	color: #fcdc31 !important;
	font-style: italic;
}

.home .sh-hero-sub {
	font-size: 21px !important;
	line-height: 1.5 !important;
	color: #f5f5f5 !important;
	margin: 0 auto 40px !important;
	max-width: 680px;
	opacity: 0;
	animation: sh-fade 900ms 800ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7) !important;
	font-weight: 400;
}

.home .sh-hero-cta-row {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(24px);
	animation: sh-rise 950ms 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home .sh-hero-cta-row br,
.home .sh-home-cta-row br,
.home .sh-home-reviews-btns br {
	display: none;
}

.home .sh-hero-cta-row a {
	display: inline-block;
	padding: 20px 42px !important;
	border-radius: 8px !important;
	text-decoration: none !important;
	font-weight: 800 !important;
	font-size: 15px !important;
	letter-spacing: 1.8px !important;
	text-transform: uppercase !important;
	transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
	line-height: 1 !important;
}

.home .sh-hero-cta-primary {
	background: #d12c2c !important;
	color: #fff !important;
	box-shadow: 0 10px 30px rgba(209, 44, 44, 0.5);
}

.home .sh-hero-cta-primary:hover {
	background: #b22222 !important;
	color: #fff !important;
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(209, 44, 44, 0.6);
}

.home .sh-hero-cta-secondary {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(4px);
}

.home .sh-hero-cta-secondary:hover {
	background: #fff !important;
	color: #1a1a1a !important;
	border-color: #fff !important;
	transform: translateY(-3px);
}

.home .sh-hero-cta-tertiary {
	background: rgba(255, 255, 255, 0.05) !important;
	color: #fff !important;
	border: 2px dashed rgba(255, 255, 255, 0.85) !important;
	backdrop-filter: blur(4px);
}

.home .sh-hero-cta-tertiary:hover {
	background: #d12c2c !important;
	color: #fff !important;
	border-color: #d12c2c !important;
	border-style: solid !important;
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(209, 44, 44, 0.6);
}

.home .sh-hero-caption {
	position: absolute;
	left: 32px;
	bottom: 80px;
	z-index: 3;
	text-align: left;
	opacity: 0;
	animation: sh-fade 600ms 1300ms ease-out forwards;
}

.home .sh-hero-caption-label {
	display: block;
	font-size: 11px;
	color: #fcdc31;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 6px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.home .sh-hero-caption-name {
	display: block;
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.home .sh-hero-caption-desc {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 400;
	line-height: 1.4;
	margin-top: 3px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.home .sh-hero-caption-name span {
	display: none;
}

.home .sh-hero-caption-name span.active {
	display: inline-block;
	animation: sh-fade 400ms ease-out;
}

.home .sh-hero-meta {
	position: absolute;
	bottom: 24px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 3;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.13em;
	text-transform: uppercase;
	opacity: 0;
	animation: sh-fade 800ms 1500ms ease-out forwards;
	font-weight: 600;
	padding: 0 20px;
}

.home .sh-hero-meta a {
	color: #fcdc31 !important;
	text-decoration: none;
}

.home .sh-hero-scroll-cue {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	width: 24px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 14px;
	opacity: 0;
	animation: sh-fade 800ms 1700ms ease-out forwards;
}

.home .sh-hero-scroll-cue::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 50%;
	width: 3px;
	height: 8px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: sh-scroll-bob 1.6s ease-in-out infinite;
}

@keyframes sh-scroll-bob {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
		opacity: 0.85;
	}

	50% {
		transform: translateX(-50%) translateY(8px);
		opacity: 0.3;
	}
}

@keyframes sh-fade {
	to {
		opacity: 1;
	}
}

@keyframes sh-rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Homepage introduction and value cards. */
.home .sh-home-intro {
	max-width: 1200px;
	margin: 32px auto 16px;
	padding: 0 24px;
}

.home .sh-home-intro-eyebrow {
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #d12c2c;
	text-transform: uppercase;
	margin: 0 0 10px;
}

.home .sh-home-intro-title {
	text-align: center;
	font-size: 36px !important;
	line-height: 1.15 !important;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 14px;
	letter-spacing: -0.5px;
}

.home .sh-home-intro-sub {
	text-align: center;
	font-size: 18px;
	line-height: 1.55;
	color: #555;
	margin: 0 auto 44px;
	font-style: italic;
	max-width: 760px;
}

.home .sh-home-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin: 0 0 44px;
}

.home .sh-home-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	padding: 34px 26px 30px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home .sh-home-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	border-color: #e0e0e0;
}

.home .sh-home-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fdf2f2;
	color: #d12c2c;
	font-size: 26px;
	margin-bottom: 18px;
}

.home .sh-home-card-title {
	font-size: 20px !important;
	line-height: 1.35 !important;
	font-weight: 800;
	margin: 0 0 12px;
	color: #1a1a1a;
	letter-spacing: 0.2px;
}

.home .sh-home-card-body {
	font-size: 15.5px;
	line-height: 1.65;
	color: #444;
	margin: 0;
}

.home .sh-home-cta-row {
	text-align: center;
	margin: 32px 0 20px;
}

.home .sh-home-cta-row a.btn-red {
	display: inline-block;
	background: #d12c2c;
	color: #fff;
	padding: 18px 44px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 800;
	font-size: 17px;
	letter-spacing: 1.2px;
	box-shadow: 0 6px 18px rgba(209, 44, 44, 0.32);
	text-transform: uppercase;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home .sh-home-cta-row a.btn-red:hover {
	background: #b22222;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(209, 44, 44, 0.42);
}

.home .sh-home-cta-row a.btn-link {
	display: inline-block;
	color: #1a1a1a;
	text-decoration: none;
	margin-left: 18px;
	font-weight: 700;
	font-size: 15px;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s;
}

.home .sh-home-cta-row a.btn-link:hover {
	border-color: #d12c2c;
}

.home .sh-home-trust {
	text-align: center;
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	max-width: 780px;
	margin: 36px auto 0;
	font-style: italic;
	border-top: 1px solid #efefef;
	padding-top: 30px;
}

.home .sh-home-trust strong {
	color: #1a1a1a;
	font-style: normal;
}

.home .sh-home-trust a {
	color: #d12c2c;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid rgba(209, 44, 44, 0.3);
	transition: border-color 0.2s;
}

.home .sh-home-trust a:hover {
	border-color: #d12c2c;
}

/* Review request panel added after the trusted May homepage snapshot. */
.home .sh-home-reviews {
	max-width: 820px;
	margin: 48px auto 28px;
	padding: 38px 28px 40px;
	text-align: center;
	background: #f9f5ee;
	border: 1px solid #eadfce;
	border-top: 4px solid #d12c2c;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(42, 31, 20, 0.08);
}

.home .sh-home-reviews-eyebrow {
	margin: 0 0 8px;
	color: #d12c2c;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.home .sh-home-reviews-title {
	margin: 0 0 10px;
	color: #1a1a1a;
	font-size: 28px !important;
	line-height: 1.25 !important;
	font-weight: 850;
}

.home .sh-home-reviews-sub {
	max-width: 640px;
	margin: 0 auto 24px;
	color: #4a4a4a;
	font-size: 16px;
	line-height: 1.6;
}

.home .sh-home-reviews-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.home .sh-rev-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 22px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.home .sh-rev-btn:hover {
	transform: translateY(-2px);
}

.home .sh-rev-google {
	background: #1a1a1a;
	color: #fff;
	box-shadow: 0 6px 16px rgba(26, 26, 26, 0.2);
}

.home .sh-rev-google:hover {
	background: #000;
	color: #fff;
	box-shadow: 0 8px 20px rgba(26, 26, 26, 0.28);
}

.home .sh-rev-yelp {
	background: #d12c2c;
	color: #fff;
	box-shadow: 0 6px 16px rgba(209, 44, 44, 0.25);
}

.home .sh-rev-yelp:hover {
	background: #b22222;
	color: #fff;
	box-shadow: 0 8px 20px rgba(209, 44, 44, 0.34);
}

.home .sh-rev-stars {
	color: #fcdc31;
	letter-spacing: 0.08em;
	margin-right: 8px;
	white-space: nowrap;
}

/* About / "what is" section. */
.home .sh-whatis {
	max-width: 1080px;
	margin: 0 auto;
	padding: 64px 28px;
}

.home .sh-whatis-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
	gap: 48px;
	align-items: center;
}

.home .sh-whatis-image {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.home .sh-whatis-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home .sh-whatis-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: #d12c2c;
	color: #fff !important;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	box-shadow: 0 6px 18px rgba(209, 44, 44, 0.35);
}

.home .sh-whatis-content {
	padding: 8px 0;
}

.home .sh-whatis-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.24em;
	color: #d12c2c !important;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.home .sh-whatis-title {
	font-size: 38px !important;
	font-weight: 900 !important;
	line-height: 1.08 !important;
	color: #1a1a1a !important;
	margin: 0 0 22px !important;
	letter-spacing: -1px;
}

.home .sh-whatis-title em {
	font-style: italic;
	color: #d12c2c !important;
	font-weight: 900;
}

.home .sh-whatis-body {
	font-size: 17px !important;
	line-height: 1.65 !important;
	color: #3a3a3a !important;
	margin: 0 0 22px !important;
}

.home .sh-whatis-body strong {
	color: #1a1a1a;
	font-weight: 700;
}

.home .sh-whatis-body a {
	color: #d12c2c !important;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid rgba(209, 44, 44, 0.25);
	transition: border-color 0.2s;
}

.home .sh-whatis-body a:hover {
	border-color: #d12c2c;
}

.home .sh-whatis-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 24px 0 28px;
	padding: 0 !important;
	list-style: none;
}

.home .sh-whatis-pills li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border-radius: 99px;
	background: #fdf2f2;
	color: #b22222 !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border: 1px solid #f5d0d0;
	list-style: none !important;
}

.home .sh-whatis-pills li::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #d12c2c;
	border-radius: 50%;
}

.home .sh-whatis-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 22px;
	padding: 18px 20px;
	background: #f9f5ee;
	border-radius: 10px;
	border-left: 4px solid #d12c2c;
}

.home .sh-whatis-meta-item {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	line-height: 1.4;
}

.home .sh-whatis-meta-label {
	font-size: 13px;
	font-weight: 700;
	color: #5f5f5f;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.home .sh-whatis-meta-value {
	color: #1a1a1a;
	font-weight: 700;
	font-size: 15px;
}

.home .sh-whatis-meta-value a {
	color: #1a1a1a;
	text-decoration: none;
}

@media (max-width: 880px) {
	.home .sh-hero {
		min-height: 700px;
		align-items: flex-start;
	}

	.home .sh-hero-content {
		padding: 64px 24px 128px;
	}

	.home .sh-hero-h1 {
		font-size: 54px !important;
		letter-spacing: -1px;
	}

	.home .sh-hero-scroll-cue {
		display: none;
	}

	.home .sh-home-cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 780px) {
	.home .sh-whatis {
		padding: 48px 20px;
	}

	.home .sh-whatis-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home .sh-whatis-image {
		aspect-ratio: 16 / 10;
		max-width: 520px;
		margin: 0 auto;
	}

	.home .sh-whatis-title {
		font-size: 30px !important;
	}
}

@media (max-width: 600px) {
	.home .sh-hero-caption {
		left: 24px;
		bottom: 90px;
	}
}

@media (max-width: 520px) {
	.home .sh-hero {
		min-height: 720px;
	}

	.home .sh-hero-content {
		padding: 48px 20px 132px;
	}

	.home .sh-hero-eyebrow {
		font-size: 11px;
		letter-spacing: 0.2em;
		margin-bottom: 18px;
	}

	.home .sh-hero-h1 {
		font-size: 42px !important;
		letter-spacing: -0.5px;
		margin-bottom: 18px !important;
	}

	.home .sh-hero-sub {
		font-size: 17px !important;
		margin-bottom: 28px !important;
	}

	.home .sh-hero-cta-row {
		width: 100%;
		gap: 12px;
	}

	.home .sh-hero-cta-row a {
		width: 100%;
		max-width: 280px;
		padding: 16px 24px !important;
	}

	.home .sh-hero-meta {
		bottom: 74px;
		font-size: 10px;
		letter-spacing: 0.08em;
		padding: 0 18px;
	}

	.home .sh-home-intro {
		padding: 0 18px;
	}

	.home .sh-home-intro-title {
		font-size: 30px !important;
	}

	.home .sh-home-intro-sub {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.home .sh-home-card {
		padding: 28px 20px 26px;
	}

	.home .sh-home-cta-row a.btn-red,
	.home .sh-home-cta-row a.btn-link {
		display: block;
		width: 100%;
		max-width: 300px;
		margin: 12px auto 0;
	}

	.home .sh-home-reviews {
		margin: 38px auto 22px;
		padding: 30px 18px 32px;
	}

	.home .sh-home-reviews-title {
		font-size: 24px !important;
	}

	.home .sh-home-reviews-btns {
		flex-direction: column;
	}

	.home .sh-rev-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.home .sh-whatis-meta {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home .sh-slide,
	.home .sh-hero-eyebrow,
	.home .sh-hero-h1 .sh-line,
	.home .sh-hero-sub,
	.home .sh-hero-cta-row,
	.home .sh-hero-meta,
	.home .sh-hero-caption,
	.home .sh-hero-scroll-cue {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.home .sh-slide:not(.sh-slide-1) {
		display: none;
	}
}
