h2.section-title {
	font-size: clamp(4.2rem, calc(3.255rem + 1.64vw), 6.4rem);
	font-style: italic;
	color: var(--color-primary);
	text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
	margin-bottom: 1rem;
}
section.headline-marquee {
	width: 100%;
}

.headline-marquee-container {
	background: green;
	display: flex;
	align-items: center; /* height: 10vh; */
	min-width: 100%;
	padding: 1rem;
	background-color: var(--color-primary);
	/* font-size: 7vh; */
	text-wrap: nowrap;
	font-style: italic;
	font-weight: 700;
	text-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.5);
}

.headline-marquee-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.headline-marquee-inner h1,
.headline-marquee-inner div {
	font-size: clamp(2.6rem, calc(0.716rem + 3.27vw), 7rem);
	font-style: italic;
	font-weight: 700;
	color: rgba(255, 255, 255, 1);
	text-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.5);
}

.headline-marquee-container[data-animated="true"] {
	overflow: hidden;
	/* -webkit-mask: linear-gradient(90deg, transparent, red 20%, red 80%, transparent); */
	/* mask: linear-gradient(90deg, transparent, red 10%, red 90%, transparent); */
	/* mask: linear-gradient(90deg, transparent, white 20%); */
}
.headline-marquee-container[data-animated="true"] .headline-marquee-inner {
	width: fit-content;
	flex-wrap: nowrap;
	animation: scroll 40s linear infinite;
}

@keyframes scroll {
	to {
		transform: translate(-50%);
	}
}

/* Carousel Section */
section.product-carousel {
	margin: 0 auto;
	margin-top: clamp(2rem, calc(-1.427rem + 5.95vw), 10rem);
	width: 90%;
	background: #ffffff;
	border-radius: 1.2rem;
	background-color: var(--color-tertiary);
}

/* Swiper Container */
section.product-carousel .swiper {
	width: 100%;
	padding: 4rem 0;
}

/* Swiper Wrapper */
section.product-carousel .swiper-wrapper {
	align-items: center;
}

/* Individual Slides */
section.product-carousel .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(0.95);
	opacity: 0.5;
}

/* Active (centered) Slide */
section.product-carousel .swiper-slide-active {
	transform: scale(1.2);
	opacity: 1;
	z-index: 10;
}

section.product-carousel .swiper-slide a {
	display: block;
	width: 100%;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}
section.product-carousel .swiper-slide:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: scale(1.03);
	opacity: 0.8;
}

section.product-carousel .swiper-slide-active:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: scale(1.23);
	opacity: 1;
}

section.product-carousel .swiper-slide a img {
	padding: 5px;
	width: 100%;
	height: 35vh; /* 20% of viewport height on desktop */
	object-fit: contain;
	display: block;
}

/* Product Card Link */
/* section.product-carousel .product-link {
	} */

section.product-carousel .swiper-slide a:focus-visible {
	outline-offset: 4px;
}

/* Product Info Overlay */
section.product-carousel figcaption {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2.5rem;
	background: linear-gradient(to top, rgba(0, 48, 135, 1), transparent);
	color: #ffffff;
	/* transform: translateY(100%); */
	border-bottom-left-radius: 1.4rem;
	border-bottom-right-radius: 1.4rem;
	transition: transform 0.3s ease;
}

section.product-carousel figcaption h3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

/* Navigation Buttons */
section.product-carousel .swiper-button-prev,
section.product-carousel .swiper-button-next {
	color: white !important;
	font-size: 1rem !important;
	background: rgba(157, 34, 53, 1);
	width: 3rem !important;
	padding: 1.4rem 0 1.4rem 0;
	height: 1rem;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

section.product-carousel .swiper-button-prev:after,
section.product-carousel .swiper-button-next:after {
	font-size: 1rem;
	font-weight: 700;
}

section.product-carousel .swiper-button-prev:hover,
section.product-carousel .swiper-button-next:hover {
	background-color: #003087;
}

/* ==============================
    SECTION: OUR MISSION
    ============================= */
section.our-mission {
	background-color: var(--color-secondary);
}

section.our-mission .mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

section.our-mission .mission-grid .mission-title {
	grid-column: 1 / 3;
	text-align: center;
}

section.our-mission .mission-grid .mission-text {
	color: white;
	padding: 1rem 2.5rem;
	font-size: clamp(2rem, calc(0.802rem + 2.08vw), 4.8rem);
	font-style: italic;
}

section.our-mission .mission-grid .mission-img {
	object-fit: cover;
}

section.our-mission .mission-grid .mission-img .mission-img-desktop {
	display: block;
}

section.our-mission .mission-grid .mission-img .mission-img-mobile {
	display: none;
}

section.our-mission .mission-grid .mission-text .btn-blue {
	margin-top: 3rem;
}
section.our-mission .mission-grid .mission-text .btn-blue:hover {
	background-color: #855600;
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
	section.our-mission .mission-grid .mission-img .mission-img-desktop {
		display: none;
	}

	section.our-mission .mission-grid .mission-img .mission-img-mobile {
		display: block;
	}
}

@media (max-width: 768px) {
	.mission-text {
		order: 3;
		grid-column: 1 / 3;
		text-align: center;
	}
	.mission-img {
		order: 2;
		grid-column: 1 / 3;
	}
}

@media (max-width: 576px) {
}

/* ===================================
   SECTION OUR RECIPES
   =================================== */
section.recipe-showcase-section {
	padding: 0 5rem;
	margin: 0 auto;
}

section.recipe-showcase-section .btn-all-recipes {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--color-secondary);
	color: var(--color-text-light);
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 1.5rem;
	transition: all var(--transition-speed) var(--transition-easing);
}

section.recipe-showcase-section .btn-all-recipes:hover {
	background: #3a4f6f;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(74, 95, 127, 0.3);
}

/* recipe Grid Layout */
section.recipe-showcase-section .recipes-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1.8rem;
	grid-template-areas:
		"card-1 card-1 card-2 card-3"
		"card-4 card-5 card-6 card-6";
}

/* recipe Cards */
section.recipe-showcase-section .recipe-card {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	cursor: pointer;
	transition: transform 1s ease-in-out;
	box-shadow: 3px 2px 12px -2px rgba(0, 0, 0, 0.4);
}

.card-1 {
	grid-area: card-1;
	aspect-ratio: 2/1;
}
.card-2 {
	grid-area: card-2;
	/* aspect-ratio: 1/1; */
}
.card-3 {
	grid-area: card-3;
	/* aspect-ratio: 1/1; */
}
.card-4 {
	grid-area: card-4;
	/* aspect-ratio: 1/1; */
}
.card-5 {
	grid-area: card-5;
	/* aspect-ratio: 1/1; */
}
.card-6 {
	grid-area: card-6;
	aspect-ratio: 2/1;
}

section.recipe-showcase-section .recipe-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

section.recipe-showcase-section .recipe-card:hover img {
	transform: scale(1.08);
}

/* Card content overlay */
section.recipe-showcase-section figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.875rem 1.5rem;
	background: linear-gradient(
		to top,
		rgba(157, 34, 53, 0.8) 0%,
		rgba(157, 34, 53, 0.6) 50%,
		transparent 100%
	);
}

section.recipe-showcase-section figcaption h3 {
	color: white;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.3;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	max-width: 100%;
}

section.recipe-showcase-section .btn-red {
	margin-top: 5rem;
}

/* Responsive Design for recipes */
@media (max-width: 1200px) {
	section.recipe-showcase-section .recipes-section {
		padding: 6rem 3rem;
	}

	section.recipe-showcase-section .section-header h2 {
		font-size: 3.6rem;
	}

	section.recipe-showcase-section .recipes-grid {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-areas:
			"card-1 card-2 card-3"
			"card-4 card-5 card-6";
	}
	.card-1 {
		grid-area: card-1;
		aspect-ratio: 1/1;
	}
	.card-6 {
		grid-area: card-6;
		aspect-ratio: 1/1;
	}
}

@media (max-width: 768px) {
	section.recipe-showcase-section {
		padding: 0 2rem;
	}

	section.recipe-showcase-section .section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	section.recipe-showcase-section .section-header h2 {
		font-size: 3rem;
	}

	section.recipe-showcase-section .recipes-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr;
		grid-template-areas:
			"card-1 card-2"
			"card-3 card-4"
			"card-5 card-6";
	}

	/* Mobile: 1 column */

	section.recipe-showcase-section figcaption h3 {
		font-size: 1.8rem;
	}
}

@media (max-width: 576px) {
	section.recipe-showcase-section .recipes-grid {
		gap: 1rem;
	}
	section.recipe-showcase-section .section-header h2 {
		font-size: 2.4rem;
	}

	section.recipe-showcase-section .btn-all-recipes {
		padding: 1.2rem 2.8rem;
		font-size: 1.4rem;
	}

	section.recipe-showcase-section figcaption {
		padding: 2rem 1.8rem;
	}

	section.recipe-showcase-section figcaption h3 {
		font-size: 1.6rem;
	}
}

/* =========================================================================
    VIDEO Section
    ====================================================================== */

.video-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	background-color: #000;
}

.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Show landscape by default, hide portrait */
.video-desktop {
	display: block;
}

.video-mobile {
	display: none;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 4rem;
	z-index: 1;
}

.video-title {
	font-size: clamp(3rem, 5vw, 6rem);
	color: #fff;
	margin: 0;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
	max-width: 600px;
}

.video-button {
	align-self: flex-start;
	padding: 1.4rem 2.8rem;
	font-size: 3rem;
	background-color: var(--color-secondary);
	border: 2px solid #ffffff;
	border-radius: 3rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	color: #ffffff;
	font-weight: 600;
}

.info-button:hover {
	background-color: #fff;
}

/* Mobile/Portrait */
@media (max-width: 768px), (orientation: portrait) {
	.video-container {
		padding-bottom: 177.78%; /* 9:16 aspect ratio */
	}

	.video-desktop {
		display: none;
	}

	.video-mobile {
		display: block;
	}

	.video-overlay {
		padding: 1.5rem;
	}
}

section.insta {
	width: 100%;
}

section.insta h2 {
	margin-inline: clamp(2rem, calc(1.142rem + 1.49vw), 4rem);
}
.insta-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2rem;
	padding: 3rem 2rem;
	background-color: var(--color-secondary);
}

.insta-grid .grid-item {
	position: relative;
}

.insta-grid .grid-item img {
	min-width: 1px;
	width: 100%;
	transition: all 0.2s ease-in-out;
	box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.2);
	border: 4px solid white;
	border-radius: 1.8rem;
}

.insta-grid .grid-item img:hover {
	transform: scale(1.04);
	border-width: 6px;
	border-color: var(--color-link-hover);
	cursor: pointer;
	/* border-style: groove; */
}

.insta-grid .grid-item i {
	position: absolute;
	bottom: 2.8rem;
	left: 1.4rem;
	color: white;
}

@media (max-width: 1200px) {
	.insta-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
	.insta-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 576px) {
	/* placeholder */
}
