@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lobster&family=Sanchez:ital@0;1&display=swap");

@font-face {
	font-family: "Metropolis Thin";
	src: url("/font/metropolis/Metropolis-Thin.otf") format("otf"),
		url("/font/metropolis/Metropolis-Thin.otf") format("otf");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Metropolis Medium";
	src: url("/font/metropolis/Metropolis-Medium.otf") format("otf"),
		url("/font/metropolis/Metropolis-Medium.otf") format("otf");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Metropolis Regular";
	src: url("/font/metropolis/Metropolis-Regular.otf") format("otf"),
		url("/font/metropolis/Metropolis-Regular.otf") format("otf");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Metropolis Bold";
	src: url("/font/metropolis/Metropolis-Bold.otf") format("otf"),
		url("/font/metropolis/Metropolis-Bold.otf") format("otf");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Metropolis SemiBold";
	src: url("/font/metropolis/Metropolis-SemiBold.otf") format("otf"),
		url("/font/metropolis/Metropolis-SemiBold.otf") format("otf");
	font-weight: normal;
	font-style: normal;
}


.bebas-neue-regular {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.bebas-neue-bold {
	font-family: "Bebas Neue", sans-serif;
	font-weight: bold;
	font-style: normal;
}

.lobster-regular {
	font-family: "Lobster", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.metropolis_thin {
	font-family: "Metropolis Thin", sans-serif;
}

.metropolis_regular {
	font-family: "Metropolis Regular", sans-serif;
}

.metropolis_medium {
	font-family: "Metropolis Medium", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.metropolis_semibold {
	font-family: "Metropolis SemiBold", sans-serif !important;
	font-weight: 500;
	font-style: normal;
}

.metropolis_bold {
	font-family: "Metropolis Bold", sans-serif !important;
	font-weight: bold;
	font-style: normal;
}

.sanchez-regular {
	font-family: "Sanchez", serif;
	font-weight: 400;
	font-style: normal;
}

.sanchez-regular-italic {
	font-family: "Sanchez", serif;
	font-weight: 400;
	font-style: italic;
}

.typnic-headline-slab {
	font-family: "TypnicHeadlineSlab" !important;
	font-style: normal;
	font-weight: bolder;
}

:root {
	--color1: #fe7c1a;
	--color2: #da542a;
	--color3: #f5f0e1;
	--color4: #f79480;
	--color5: #ef9f37;
	--color6: #e5d7b8;
	--color7: #eae4d3;
	--color8: #827d6c;
	--text1: #383838;
	--btn-border-width: 0px;
}

p {
	font-family: "Metropolis Regular", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	color: var(--text1);
}

html,
body {
	width: 100%;
	overflow-x: hidden !important;
	scroll-behavior: smooth;
}

h3 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--text1);
}

button[data-border="true"] {
	--btn-border-width: 2px;
}

button[data-border="false"] {
	--btn-border-width: 0px;
}

button[data-color="var(--color2)"] {
	--btn-bg: var(--color2);
	--btn-color: white;
	--btn-border: var(--color2);
	--btn-hover-bg: transparent;
	--btn-hover-color: var(--color2);
	--btn-hover-border: var(--color2);
}

button[data-color="var(--color21)"] {
	--btn-bg: var(--color2);
	--btn-color: white;
	--btn-border: var(--color2);
	--btn-hover-bg: transparent;
	--btn-hover-color: var(--color2);
	--btn-hover-border: var(--color2);
}

button[data-color="transparent"] {
	--btn-bg: transparent;
	--btn-color: var(--color2);
	--btn-border: var(--color2);
	--btn-hover-bg: var(--color2);
	--btn-hover-color: white;
	--btn-hover-border: var(--color2);
}

button[data-color="var(--color3)"] {
	--btn-bg: var(--color3);
	--btn-color: var(--text1);
	--btn-border: var(--color3);
	--btn-hover-bg: transparent;
	--btn-hover-color: var(--color3);
	--btn-hover-border: var(--color3);
}

button {
	font-family: "Bebas Neue", sans-serif !important;
	font-weight: 400 !important;
	font-style: normal !important;
	padding: 6px 28px !important;
	text-wrap-mode: nowrap !important;
	border-radius: 100px !important;
	display: flex;
	align-items: center;
	gap: 4px;
	height: max-content !important;
	width: max-content !important;
	color: var(--btn-color) !important;
	background: var(--btn-bg) !important;
	border-width: var(--btn-border-width) !important;
	border-style: solid;
	border-color: var(--btn-border) !important;
	transition: 0.3s;
	line-height: 22px !important;

	span {
		margin-top: 4px;
	}

	svg path {
		transition: 0.3s;
	}

	&:hover {
		background-color: var(--btn-hover-bg) !important;
		color: var(--btn-hover-color) !important;
		border-color: var(--btn-hover-border) !important;

		svg path {
			fill: var(--btn-hover-color);
		}
	}
}

nav ul li {
	color: var(--text1);
}

.dropdown {
	position: relative;

	.dropdown-component {
		display: none;
		position: absolute;
		bottom: 0px;
		transform: translateY(100%);
		width: max-content;
		background: white;
		box-shadow: 0px 3px 6px 0px #383838;

		.dropdown-item {
			padding: 3px 16px;
			transition: 0.3s;

			&:hover {
				background: var(--color6);
			}
		}
	}

	&:hover {
		.dropdown-component {
			display: block;
		}
	}
}

.container1 {
	margin: 0 auto;
	max-width: 1920px;
	padding: 0 30px;
	width: 100%;
}

.container2 {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 30px;
	width: 100%;
}

.menus li {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
}

.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	/* background: #444; */
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrp img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain ;
}

.about{
	background: #f6f0e2;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	font-size: 20px !important;
	color: white;
}

.swiper-pagination-bullet-active {
	background-color: var(--color2) !important;
}

.text-shadow[data-color="white"] {
	--text-color: white;
}

.text-shadow[data-color="var(--color2)"] {
	--text-color: var(--color2);
}

.text-shadow {
	text-shadow: -2px -2px 0 var(--text-color), 2px -2px 0 var(--text-color),
		-2px 2px 0 var(--text-color), 2px 2px 0 var(--text-color),
		-3px 0 0 var(--text-color), 3px 0 0 var(--text-color),
		0 3px 0 var(--text-color), 0 -3px 0 var(--text-color);
}

.menu-slider {
	height: max-content;
}

/* faq */
.faq-body {
	transition: 0.7s;
}

.faq-active {
	animation: faqAnimation 0.3s linear 1;
}

@keyframes faqAnimation {
	0% {
		height: 0px;
	}

	100% {
		height: 100px;
	}
}

/* food items */
.food-item {
	position: relative;
	transition: 1s;

	.food-image {
		position: relative;
		height: 200px;
		padding: 10px;
		overflow: clip;

		&::before {
			content: "";
			position: absolute;
			width: 100%;
			height: 100%;
			top: 15px;
			left: -15px;
			background-image: url(../assets/images/home/all-images/bg-chicken.svg);
			background-size: cover;
			background-repeat: no-repeat;
			background-position: top right;
			z-index: 1;
			opacity: 0;
		}

		img {
			position: relative;
			z-index: 1;
		}
	}

	&:hover {
		button {
			opacity: 1;
		}

		.food-image {
			position: relative;

			&::before {
				opacity: 1;
			}
		}
	}
}

/* ////// animation /////// */
.spiner {
	transform-origin: center center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.17);
	animation: spinner linear infinite 20s;
}

@keyframes spinner {
	from {
		transform: translate(-50%, -50%) scale(1.17) rotate(0deg);
	}

	to {
		transform: translate(-50%, -50%) scale(1.17) rotate(360deg);
	}
}

.left-spin {
	animation: leftspine infinite 8s ease-out;
	bottom: -250px;
	position: absolute;
	will-change: transform;
}

.right-spin {
	animation: rightspine ease-out infinite 8s;
	top: -250px;
	position: absolute;
	will-change: transform;
}

@keyframes leftspine {
	0% {
		transform: translateY(0%);
	}

	100% {
		transform: translateY(50%);
	}
}

@keyframes rightspine {
	0% {
		transform: translateY(0%);
	}

	100% {
		transform: translateY(-50%);
	}
}

.popupAnimation {
	animation: popupAnimation 3s linear 1;
	animation-timeline: forwards;
}

@keyframes popupAnimation {
	0% {
		opacity: 0;
	}

	90% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* //////// menu //////// */
.menu {
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	padding: 0;
}

.line {
	fill: none;
	stroke: var(--color2);
	stroke-width: 6;
	transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
		stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
	stroke-dasharray: 60 207;
	stroke-width: 6;
}

.line2 {
	stroke-dasharray: 60 60;
	stroke-width: 6;
}

.line3 {
	stroke-dasharray: 60 207;
	stroke-width: 6;
}

.opened .line1 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
	stroke-width: 6;
}

.opened .line2 {
	stroke-dasharray: 1 60;
	stroke-dashoffset: -30;
	stroke-width: 6;
}

.opened .line3 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
	stroke-width: 6;
}

@media screen and (max-width: 786px) {
	.container1 {
		padding: 0 15px;
	}

	.container2 {
		padding: 0 15px;
	}

	.left-spin {
		animation: leftspine-tablet infinite 8s ease-out;
		will-change: transform;
	}

	@keyframes leftspine-tablet {
		0% {
			transform: translateY(0%);
		}

		100% {
			transform: translateY(40%);
		}
	}


	.right-spin {
		animation: rightspine-tablet ease-out infinite 8s;
		will-change: transform;
	}

	@keyframes rightspine-tablet {
		0% {
			transform: translateY(0%);
		}

		100% {
			transform: translateY(-40%);
		}
	}
}


@media screen and (max-width: 576px) {
	.left-spin {
		animation: leftspine-mobile infinite 8s ease-out;
		will-change: transform;
	}

	@keyframes leftspine-mobile {
		0% {
			transform: translateX(8%);
		}

		100% {
			transform: translateX(40%);
		}
	}

	.right-spin {
		animation: rightspine-mobile ease-out infinite 8s;
		will-change: transform;
	}

	@keyframes rightspine-mobile {
		0% {
			transform: translateX(-8%);
		}

		100% {
			transform: translateX(-40%);
		}
	}
}

.action-btn {
	min-width: 110px;
	text-align: center;
}

.action-btn.disabled {
	pointer-events: none;
}

.loader {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid transparent;
	/* base border */
	border-top: 2px solid #3498db;
	/* top color */
	border-right: 2px solid #e74c3c;
	/* right color */
	display: inline-block;
	margin-right: 6px;
	vertical-align: middle;
	position: relative;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
	animation: spin 0.8s linear infinite;
}

/* Pulsating center dot */
.loader::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	background: #f1c40f;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 0.8s infinite;
}

/* Keyframes */
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(0.5);
	}

	50% {
		transform: scale(1);
	}
}
















:root {
	--brand-red: #db7d68;
	--brand-deep: #db7d68;
	--muted: #485259;
	--soft-bg: #f4f8f9;
	--card-bg: #ffffff;
	--card-max-width: 1300px;
	--radius: 14px;
	--shadow: 0 6px 20px rgba(12, 20, 30, 0.05);
	--text: #07323b;
	--glass: rgba(255, 255, 255, 0.9);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* ------------ SECTION ------------ */
.main-btn {
	align-items: center;
	background-image: linear-gradient(0deg, #ca0f1a, #da542a);
	border-radius: 80px;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	justify-content: center;
	letter-spacing: 1px;
	line-height: 14px;
	padding: 16px 24px;
	text-align: center;
	width: fit-content;
	cursor: pointer;
}

.main-btn:hover {
	text-decoration: none;
	background: #fff !important;
	outline: 1px solid #da542a !important;
	color: #da542a !important;
	cursor: pointer;
}

.main-btn-red {
	align-items: center;
	outline: 1px solid #da542a !important;
	border-radius: 80px;
	color: #da542a !important;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700 !important;
	justify-content: center;
	line-height: 14px;
	padding: 10px 24px;
	text-align: center;
	width: fit-content;
	cursor: pointer;
	letter-spacing: 1px;
}

.main-btn-red:hover {
	text-decoration: none;
	background-color: #da542a !important;
	color: white !important;
	cursor: pointer;
}

.press-room {
	width: 100%;
	background: var(--brand-deep);
	padding: 50px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.press-header {
	text-align: center;
	color: white;
	margin: 40px 0px 60px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.press-header h1 {
	font-size: 46px;
	font-weight: 700;
}

.press-logo {
	width: 100px;
	margin-bottom: 10px;
}

/* ------------ MAIN CARD ------------ */

.press-container {
	background: var(--card-bg);
	width: 100%;
	max-width: var(--card-max-width);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
}

.press-left {
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;

}

.press-left h2 {
	color: var(--brand-deep);
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 43.2px;
	margin-bottom: 20px;
	text-align: center;
}

.press-left p {
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 30px;
	text-align: center;
}

.cta-btn {
	background: var(--brand-red);
	color: white;
	padding: 12px 24px;
	border-radius: 50px;
	border: none;
	font-size: 15px;
	cursor: pointer;
	font-weight: 600;
}

/* ------------ IMAGE ------------ */

.press-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}







/* Section */
.featured-news {
	max-width: var(--card-max-width);
	margin: 60px auto;
}

.featured-news h2 {
	text-align: center;
	color: var(--brand-deep);
	font-size: 46px;
	margin-bottom: 40px;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 55px;
	text-align: center;
}


.featured-news p {
	text-align: center;
	color: var(--brand-deep);
	font-size: 36px;
	margin-bottom: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 55px;
	text-align: center;
}

/* Grid layout */
.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* Card */
.news-card {
	background: var(--soft-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.news-card:hover .news-title {
	text-decoration: underline;
}

/* Image */
.news-image img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

/* Content */
.news-content {
	padding: 24px;
	position: relative;
}

.news-category {
	color: var(--brand-deep);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.5px;
	line-height: 33.6px;
}

.news-title {
	margin: 10px 0;
	font-size: 30px;
	color: var(--brand-deep);
	line-height: 1.4;
}

/* Arrow icon */
.news-arrow {
	font-size: 40px !important;
	position: absolute;
	right: 24px;
	bottom: 24px;
	color: var(--brand-deep);
}

.btn-bx {
	background-color: var(--soft-bg);
	padding: 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}






/* Section */
.openings-section {
	max-width: var(--card-max-width);
	margin: 80px auto;
	text-align: center;
}

.openings-section h2 {
	color: var(--brand-deep);
	font-size: 40px;
	font-weight: 700;
}

.openings-desc {
	margin: 10px auto 40px;
	max-width: 750px;
	color: var(--muted);
	line-height: 1.6;
}

/* Wrapper background */
.openings-wrapper {
	background: var(--soft-bg);
	padding: 40px;
	border-radius: var(--radius);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* Cards */
.opening-card {
	background: var(--card-bg);
	border-radius: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	padding: 60px 0px 60px 0px;
}

.opening-card h3 {
	color: var(--brand-deep);
	font-size: 18px;
	font-weight: 100 !important;
	margin-bottom: 8px;
	letter-spacing: 1.5px;
	text-transform: small-caps;
}

.date {
	display: block;
	color: var(--brand-deep);
	margin-bottom: 20px;
}

/* Read more button */
.opening-btn {
	background: var(--brand-red);
	color: white;
	border: none;
	padding: 8px 20px;
	font-size: 14px;
	border-radius: 50px;
	cursor: pointer;
}

/* Last card */
.more-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.more-card p {
	font-weight: 700;
	color: var(--brand-deep);
	font-size: 18px;
	margin-bottom: 15px;
}

.view-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 50px;
	background: var(--brand-deep);
	color: white;
	cursor: pointer;
	font-size: 15px;
}

.drct-icon {
	height: 50px;
}







/* SECTION */
.serves-section {
	max-width: var(--card-max-width);
	margin: 80px auto;
	text-align: center;
}

.serves-section h2 {
	color: var(--brand-deep);
	font-size: 40px;
	font-weight: 700;
}

.serves-desc {
	margin: 10px auto 40px;
	max-width: 850px;
	color: var(--muted);
	line-height: 1.6;
	font-size: 18px;
}

.serves-desc a.a-text {
	color: var(--brand-red);
	text-decoration: underline;
}

/* GRID */
.serves-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* CARD */
.serves-card {
	background: var(--card-bg);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	max-height: 440px;
}

/* TOP RED AREA */
.serves-top {
	background: #dd0031;
	padding: 30px 20px;
	color: white;
	text-align: left;
}

.serves-top h3 {
	font-size: 20px;
	color: #fff;
	font-size: 28px;
	letter-spacing: 1.5px;
	line-height: 33.6px;
	margin: 16px 0px 16px 0px;
	text-align: center;
}

.serves-read {
	color: white;
	font-size: 15px;
	text-decoration: underline;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* SINGLE IMAGE */
.serves-img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

/* 4-IMAGE GRID (middle card) */
.serves-grid-imgs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.serves-grid-imgs img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

/* BOTTOM BUTTON */
.serves-btn-wrap {
	text-align: center;
	margin-top: 40px;
}

.serves-main-btn {
	background: var(--brand-red);
	color: white;
	padding: 12px 26px;
	border-radius: 50px;
	border: none;
	font-size: 15px;
	cursor: pointer;
}







/* Global Impact Section */
.impact-section {
	background: var(--soft-bg);
	padding: 60px 20px;
	border-radius: var(--radius);
	max-width: var(--card-max-width);
	text-align: center;
	margin: 80px auto;
}

.impact-section h2 {
	color: var(--brand-deep);
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 25px;
}







.media-contacts {
	background: var(--soft-bg);
	border-radius: var(--radius);
	padding: 40px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 40px;
}

/* LEFT SIDE */
.media-left h2 {
	color: var(--brand-deep);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 15px;
}

.media-left p {
	color: var(--muted);
	line-height: 1.6;
}

.media-left a {
	color: var(--brand-deep);
	font-weight: 600;
	text-decoration: underline;
}

.media-buttons {
	margin-top: 20px;
}

.media-buttons a {
	text-decoration: none;
	color: white;
}

.red-btn {
	background: var(--brand-red);
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
	border: none;
	margin-bottom: 10px;
	display: inline-block;
	cursor: pointer;
}

/* DIVIDER */
.media-divider {
	width: 1px;
	background: #d5e1e4;
}

/* RIGHT GRID */
.media-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* CARDS */
.media-card {
	background: var(--card-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 20px;
}

.media-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--brand-deep);
	margin: 10px 0;
}

.media-card a {
	color: var(--brand-deep);
	font-weight: 600;
	display: inline-block;
	margin-bottom: 6px;
	text-decoration: underline;
}

.media-card span {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.4;
}

/* ICON STYLE */
.media-icon {
	font-size: 24px;
	margin-bottom: 5px;
	color: var(--brand-deep);
}










.play-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	background: var(--soft-bg);

}

/* LEFT IMAGES AREA */
.play-left {
	position: relative;
	height: 500px;
}

.play-img {
	width: 100%;
	height: 100%;
	box-shadow: var(--shadow);
	position: absolute;
	object-fit: cover;
}


/* RIGHT TEXT AREA */
.play-right {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.play-logo {
	width: 130px;
	margin-bottom: 20px;
}

.play-right h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--brand-deep);
	margin-bottom: 20px;
	line-height: 1.3;
}

.play-right p {
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 25px;
	max-width: 430px;
}

.store-buttons {
	display: flex;
	gap: 10px;
}

/* STORE BUTTONS */
.store-buttons img {
	width: 140px;
	cursor: pointer;

}

.store-buttons img:last-child {
	margin-right: 0;
}






/* ==================== */
/* MEDIA HEADER AREA */
/* ==================== */

.press-list-header {
	background: var(--brand-deep);
	padding: 0px 0px 150px 0px;
	text-align: center;
	color: #fff;
}

/* Breadcrumb */
.press-breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	font-size: 15px;
	color: #fff !important;
	padding: 30px 0px 30px 0px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.press-breadcrumb a {
	color: #cde3ea;
	text-decoration: none;
	font-weight: 500;
}

.press-breadcrumb a.active {
	font-weight: 700;
}

.press-breadcrumb span {
	color: #fff;
	font-size: 20px;
}

/* Icon + Title */
.press-list-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.press-list-icon img {
	width: 100px;
	height: 100px;
}

.press-list-content h1 {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	max-width: 800px;
}

.press-list-date {
	color: #cde3ea;
	font-size: 16px;
}

/* Responsive */
@media (max-width: 600px) {
	.press-list-content h1 {
		font-size: 28px;
		line-height: 34px;
	}

	.press-breadcrumb {
		font-size: 14px;
	}

	.press-list-icon img {
		width: 60px;
		height: 60px;
	}
}






/* ==================== */
/* PRESS LIST SECTION */
/* ==================== */
.press-list-section {
	max-width: var(--card-max-width);
	margin: 40px auto 80px auto;
	padding: 0px 20px;
}

/* Month Title */
.month-title {
	color: var(--brand-deep);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 30px;
}

/* Card Wrapper */
.press-card {
	background: var(--soft-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: 400px auto;
	gap: 30px;
	margin: 0px 0px 40px 0px;
	align-items: center;
	overflow: hidden;
	cursor: pointer;
}

.press-card:hover .press-card-title {
	text-decoration: underline;
	cursor: pointer;
}

/* Card Image */
.press-card-img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

/* Card Content */
.press-card-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.press-card-category {
	color: var(--brand-deep);
	font-size: 15px;
	font-weight: 700;
}

.press-card-title {
	color: #da542a !important;
	font-size: 22px;
	font-weight: 800;
	color: var(--brand-deep);
	line-height: 1.3;
	letter-spacing: 1px;
	font-family: apercu, sans-serif;
}

.press-card-date {
	color: var(--muted);
	font-size: 14px;
}


@media (max-width: 900px) {
	.press-card {
		grid-template-columns: 1fr;
		text-align: left;
		padding: 20px;
	}

	.press-card-img {
		height: 220px;
	}

	.press-card-title {
		font-size: 20px;
	}
}

@media (max-width: 600px) {
	.month-title {
		font-size: 22px;
	}

	.press-card-img {
		height: 200px;
	}

	.press-card-title {
		font-size: 18px;
	}
}







/* ======================= */
/* FILTER BAR               */
/* ======================= */

.press-filter-bar {
	max-width: var(--card-max-width);
	margin: 40px auto 0px auto;
	padding: 0px 20px 0px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.press-filter-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--brand-deep);
}

/* Filter Button */
.press-filter-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 50px;
	cursor: pointer;
}

.press-filter-btn i {
	font-size: 20px;
	color: var(--brand-deep);
}

.press-filter-btn img {
	width: 18px;
	height: 18px;
}

.press-filter-btn span {
	font-size: 20px;
	font-weight: 600;
	color: var(--brand-deep);
}

/* ======================= */
/* PAGINATION               */
/* ======================= */

.press-pagination {
	text-align: center;
	margin: 40px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.page-arrow i {
	color: var(--brand-red);
	outline: 2px solid var(--brand-red);
	padding: 10px;
	height: 40px;
	width: 40px;
	border-radius: 100px;
	transition: 0.2s;
	font-size: 20px;

}

.page-arrow i:hover {
	background: var(--brand-red);
	color: white;
	cursor: pointer;
	outline: none;
}

.page-status {
	font-size: 14px;
	font-weight: 600;
	color: var(--brand-red);
}

/* ======================= */
/* RESPONSIVE               */
/* ======================= */

@media (max-width: 700px) {
	.press-filter-bar {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.press-filter-btn {
		padding: 12px 20px;
	}
}






/* ======================= */
/* FILTER MODAL OVERLAY    */
/* ======================= */

.filter-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(7, 50, 59, 0.4);
	backdrop-filter: blur(3px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

/* Modal box */
.filter-modal-box {
	width: 420px;
	background: var(--card-bg);
	border-radius: 14px;
	padding: 32px;
	box-shadow: var(--shadow);
	position: relative;
	animation: fadeIn 0.25s ease;
}

/* Close icon */
.filter-close-btn {
	position: absolute;
	right: 20px;
	top: 20px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	color: #dd0031;
}

/* Headings */
.filter-heading {
	font-size: 18px;
	font-weight: 700;
	color: var(--brand-deep);
	margin-bottom: 16px;
	letter-spacing: 1px;
	text-align: left !important;
}

/* Radio buttons */
.filter-radio-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 20px;
}

.filter-radio {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	cursor: pointer;
}

.filter-radio input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: var(--brand-red);
}

/* Divider */
.filter-divider {
	margin: 20px 0;
	border: none;
	height: 1px;
	background: #d7e3e8;
}

/* Tags */
.filter-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}

.filter-tag {
	padding: 8px 20px;
	border-radius: 40px;
	border: 1px solid var(--brand-deep);
	font-size: 14px;
	cursor: pointer;
	color: var(--brand-deep);
	background: #fff;
	transition: 0.2s;
}

.filter-tag:hover {
	background: var(--brand-deep);
	color: #fff;
}

.filter-reset-btn {
	flex: 1;
	background: #fff;
	border: 1px solid var(--brand-red);
	color: var(--brand-red);
	padding: 12px;
	border-radius: 40px;
	font-weight: 600;
	cursor: pointer;
}

.filter-apply-btn {
	flex: 1;
	background: var(--brand-red);
	color: #fff;
	padding: 12px;
	border-radius: 40px;
	font-weight: 600;
	cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.96);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Responsive */
@media (max-width: 480px) {
	.filter-modal-box {
		width: 90%;
		padding: 24px;
	}
}





/* ============== */
/* MEDIA TEXT */
/* ============== */
.media-img-container {
	max-width: 1000px;
	margin: -60px auto 40px auto;
	border-radius: 14px;
	overflow: hidden;
}

.media-img-container img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
	border-radius: 14px;
}

.article-wrapper {
	max-width: 820px;
	margin: 40px auto;
	padding: 0 20px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--brand-deep);
}

.article-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--brand-deep);
	line-height: normal;
}

.article-meta {
	font-size: 15px;
	color: var(--muted);
	margin-bottom: 25px;
}

.article-content h3 {
	font-size: 22px;
	font-weight: 500;
	margin: 30px 0 10px;
	color: var(--brand-deep);
	letter-spacing: 1px;
}

.article-content h4 {
	margin-top: 30px;
	font-size: 18px;
	font-weight: 700;
}

.article-content p {
	margin-bottom: 18px;
}

.article-content ul {
	margin: 10px 0 20px 25px;
}

.article-content ul li {
	margin-bottom: 10px;
	list-style: disc;
}

.article-contact {
	margin-top: 40px;
}

/* Responsive */
@media (max-width: 600px) {
	.article-title {
		font-size: 26px;
		line-height: 32px;
	}

	.article-wrapper {
		padding: 0 15px;
	}

	.article-content h3 {
		font-size: 20px;
	}
}


/* ========================= */
/* IMPROVED ARTICLE IMAGES   */
/* ========================= */

.article-img-full {
	width: 100%;
	margin: 25px 0 30px;
}

.article-img-full img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

.article-img-center {
	width: 100%;
	text-align: center;
	margin: 35px 0;
}

.article-img-center img {
	max-width: 420px;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Improve paragraph spacing */
.article-content p {
	margin-bottom: 20px;
	line-height: 1.75;
}

/* Bullet list spacing */
.article-content ul li {
	margin-bottom: 12px;
	line-height: 1.7;
}

/* Responsive tweaks */
@media (max-width: 600px) {
	.article-img-center img {
		max-width: 100%;
	}

	.article-img-full img {
		border-radius: 10px;
	}
}







.tag-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 25px;
	flex-wrap: wrap;
}

.tag-label {
	color: #6b7b80;
	font-size: 15px;
}

.tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tag-pill {
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid var(--brand-red);
	color: var(--brand-red);
	font-size: 14px;
	cursor: default;
	background: #fff;
	transition: 0.2s ease;
}

.tag-pill:hover {
	background: var(--brand-red);
	color: #fff;
}

/* Responsive */
@media(max-width: 600px) {
	.tag-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

.related-articles {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
}

.related-title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: var(--brand-deep);
	margin-bottom: 40px;
}

/* GRID */
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

/* CARD */
.related-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background-color: var(--soft-bg);
	border-radius: var(--radius);
	padding: 0px 0px 20px 0px;
}

.related-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: var(--shadow);
}

.related-card-title {
	margin: 15px 0 20px;
	font-size: 18px;
	font-weight: 500;
	color: var(--brand-deep);
	letter-spacing: 1px;
}

/* BUTTON */
.related-btn {
	display: inline-flex;
	padding: 10px 28px;
	border: 1px solid var(--brand-red);
	border-radius: 50px;
	color: var(--brand-red);
	font-size: 14px;
	font-weight: 600;
	background: #fff;
	transition: 0.2s ease;
}

.related-btn:hover {
	background: var(--brand-red);
	color: #fff;
}

.view-all-btn-container {
	text-align: center;
	margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.related-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.related-grid {
		grid-template-columns: 1fr;
	}

	.related-img {
		height: 180px;
	}

	.related-title {
		font-size: 28px;
	}
}










/* ========== GLOBAL MOBILE (max-width: 900px) ========== */

@media (max-width: 900px) {

	/* GENERAL */
	section {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	h1,
	h2,
	h3 {
		text-align: center !important;
	}

	.main-btn,
	.main-btn-red {
		margin-left: auto;
		margin-right: auto;
		display: inline-flex;
	}


	/* ========== PRESS ROOM HERO ========== */
	.press-container {
		grid-template-columns: 1fr !important;
		text-align: center;
	}

	.press-left {
		padding: 30px !important;
	}

	.press-right img {
		height: 260px !important;
		object-fit: cover;
	}


	/* ========== FEATURED NEWS ========== */
	.news-grid {
		grid-template-columns: 1fr !important;
	}

	.news-image img {
		height: 400px !important;

	}

	.news-title {
		font-size: 22px !important;
		line-height: 30px !important;
	}


	/* ========== RESTAURANT OPENINGS ========== */
	.openings-wrapper {
		grid-template-columns: 1fr !important;
		padding: 25px !important;
	}

	.opening-card {
		padding: 40px 0px !important;
		max-width: 500px;
		min-width: 250px !important;
		margin: 0 auto;
	}


	/* ========== CHICK-FIL-A SERVES ========== */
	.serves-grid {
		grid-template-columns: 1fr !important;
	}

	.serves-card {
		max-height: unset !important;
	}

	.serves-top h3 {
		font-size: 22px !important;
		line-height: 28px !important;
		text-align: center;
	}

	.serves-img {
		height: 400px !important;
	}


	/* ========== GLOBAL IMPACT CTA ========== */
	.impact-section {
		padding: 40px 20px !important;
	}

	.impact-section h2 {
		font-size: 28px !important;
		line-height: 36px !important;
	}


	/* ========== MEDIA CONTACTS ========== */
	.media-contacts {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
		padding: 30px !important;
	}

	.media-divider {
		display: none !important;
	}

	.media-left,
	.media-right {
		text-align: center !important;
	}

	.media-right {
		grid-template-columns: 1fr !important;
	}


	/* ========== PLAY SECTION ========== */
	.play-section {
		grid-template-columns: 1fr !important;
		text-align: center !important;
		padding: 40px 20px !important;
	}

	.play-left {
		height: 280px !important;
		margin-bottom: 20px;
	}

	.play-img {
		border-radius: 20px !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover;
		left: 0 !important;
		right: 0 !important;
	}

	.play-right {
		align-items: center !important;
	}

	.store-buttons img {
		width: 120px !important;
	}
}


/* ========== SMALL MOBILE (max-width: 600px) ========== */

@media (max-width: 600px) {

	h1,
	h2 {
		font-size: 30px !important;
		line-height: 38px !important;
	}

	.press-left h2 {
		font-size: 28px !important;
		line-height: 34px !important;
	}

	.news-title {
		font-size: 20px !important;
	}

	.impact-section h2 {
		font-size: 26px !important;
		line-height: 34px !important;
	}

	.serves-top h3 {
		font-size: 20px !important;
	}

	.play-right h2 {
		font-size: 26px !important;
	}
}