/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--white: #fff;
	--black: #000;
	--primary: #fed969;
	--secondary: #333333;
}

::selection {
	background-color: var(--secondary);
	color: var(--white);
}

/* General Styling Start */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none !important;
	list-style-type: none;
	font-family: "Open Sans", sans-serif;
	overflow-wrap: break-word;
}

html {
	scroll-behavior: smooth;
}


body {
	overflow-x: clip;
}

a,
button {
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
	margin-bottom: 0;
	padding: 0;
}

p {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}

section {
	position: relative;
	padding: 5rem 0;
	overflow: clip;
}

/* General Styling End */

/* Lenis Start */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

/* Lenis End */

/* Preloader Start */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.preLoader>img {
	width: 300px;
}

.preLoader.black {
	background-color: var(--black);
	z-index: 11113;
}

.preLoader.white {
	z-index: 11112;
	background-color: var(--primary);
}

/* Preloader End */

/* ThemeBtn Start */
.btnWrapper {
	display: flex;
	gap: 0.5rem;
}

.themeBtn {
	width: fit-content;
	display: block;
	background-color: var(--primary);
	color: var(--white);
	border: 2px solid transparent;
	border-radius: 0.5rem;
	outline: none;
	font-size: 1rem;
	font-weight: 500;
	text-transform: capitalize;
	padding: 0.75rem 2.25rem;
}

.themeBtn:hover {
	border-color: var(--primary);
	background: var(--white);
	color: var(--primary);
}

/* ThemeBtn End */

/* Headings Start */
.heading {
	font-size: 2.25rem;
	font-weight: 700;
	text-transform: capitalize;
}

.subHeading {
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

/* Headings End */

/* Header Start */
.header {
	width: 100%;
	position: absolute;
	top: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
}

.header.positionUnset {
	position: relative;
}

.header-main {
	background: #00000050;
	backdrop-filter: blur(10px);
	box-shadow: 0 0 20px 1px #ffffff20;
	border-radius: 1rem;
	overflow: hidden;
	padding: 1rem;
}

.header-main__logo {
	width: 220px;
}

.header-main__logo>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-main__nav li a {
	color: var(--white) !important;
	font-size: 1rem;
	font-weight: 500;
	padding: 0;
	text-transform: capitalize;
	position: relative;
	box-shadow: none;
}

.header-main__nav li a:hover {
	color: var(--primary) !important;
}

.header-main__nav {
	gap: 1rem;
}

.navbar-collapse .themeBtn {
	margin-left: 2rem;
}

/* Header End */

/* Banner Start */
.banner {
	height: 950px;
	padding: 0;
}

.banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, #000000, #00000050);
}

.banner-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-content {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%);
	text-align: center;
	overflow: hidden;
}

.banner-content h1 {
	font-size: 4rem;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	color: var(--white);
	margin: 0;
}

.banner-content p {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--white);
	margin: 1rem 0 1rem;
}

.banner h1,
.banner p,
.banner .themeBtn {
	opacity: 0;
	transform: translateY(60px);
	will-change: transform, opacity;
}

.banner .swiper-slide {
	opacity: 0 !important;
}

.banner .swiper-slide.swiper-slide-active {
	opacity: 1 !important;
}

.banner .swiper-pagination {
	width: fit-content;
	bottom: 8rem;
	left: 50%;
	transform: translateX(-50%);
}

.banner .swiper-pagination-bullet {
	height: 12px;
	width: 12px;
	display: inline-block;
	margin: 0 0.5rem !important;
	opacity: 1;
	border: 1px solid var(--white);
	background: transparent;
}

.banner .swiper-pagination-bullet-active {
	background: var(--white);
	position: relative;
}

/* Banner End */

/* About Us Start */
.about-img {
	width: 95%;
	height: 700px;
	border-radius: 1rem;
	position: relative;
	box-shadow: 0 0 20px 1px #00000020;
}

.about-img::before {
	content: '';
	width: 200px;
	height: 200px;
	border: 5px solid var(--primary);
	border-radius: 1rem;
	position: absolute;
	top: -1.5rem;
	left: -1.5rem;
}

.about-img::after {
	content: '';
	width: 200px;
	height: 90%;
	border: 5px solid var(--primary);
	border-radius: 1rem;
	position: absolute;
	top: 5%;
	right: -1.5rem;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
}

/* About Us End */

/* Services Start */
.program {
	background: var(--secondary);
}

.program-head :is(.heading, p) {
	color: var(--white);
}

.program-card {
	width: 100%;
	height: 320px;
	display: block;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid #ffffff50;
	transition: all 300ms ease-in-out;
}

.program-card__img {
	width: 100%;
	height: 100%;
}

.program-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.program-card__content {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	transition: all 300ms ease-in-out;
}

.program-card::before {
	content: '';
	background: #00000090;
	position: absolute;
	inset: 0;
}

.program-card__content .title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem;
}

.program-card__content .arrowBtn {
	width: 60px;
	aspect-ratio: 1;
	background: var(--primary);
	color: var(--white);
	font-size: 1.5rem;
	border-radius: 100%;
	display: grid;
	place-items: center;
	margin: 0 auto;
	opacity: 0;
	transform: scale(0);
	visibility: hidden;
	transition: all 300ms ease-in-out;
}

.program-card__content .arrowBtn:hover {
	background: var(--white);
	color: var(--secondary);
}

:is(.program-card:hover, .swiper-slide.swiper-slide-active) .program-card__content {
	bottom: 50%;
	transform: translateY(75%);
}

:is(.program-card:hover, .swiper-slide.swiper-slide-active) .program-card__content .arrowBtn {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.programSlider {
	padding-bottom: 3rem;
}

.programSlider .swiper-wrapper {
	align-items: center;
}

.programSlider .swiper-pagination {
	bottom: 0;
}

.programSlider .swiper-pagination-bullet {
	background: var(--white);
}

/* Services End */

/* Why Choose Start */
.why-choose__content ul {
	margin-left: 1.25rem;
}

.why-choose__content ul li {
	list-style: disc;
}

.why-choose__content ul li+li {
	margin-top: 0.5rem;
}

.why-choose__content ul li strong {
	display: block;
}

.why-choose__img {
	width: 95%;
	height: 600px;
	position: relative;
	margin-left: auto;
}

.why-choose__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.75rem;
	position: relative;
	z-index: 1;
}

.why-choose__img::before {
	content: '';
	width: 100%;
	height: 100%;
	background: var(--primary);
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	border-radius: 0.75rem;
}

.why-choose__img::after {
	content: '';
	width: 40%;
	height: 40%;
	background: var(--primary);
	position: absolute;
	top: -1.5rem;
	left: -1.5rem;
	border-radius: 0.75rem;
}

/* Why Choose End */

/* Cta Start */
.cta {
	background: url(../images/cta-bg.jpg) no-repeat center center/cover;
}

.cta::before {
	content: '';
	background: #00000090;
	backdrop-filter: blur(10px);
	position: absolute;
	inset: 0;
}

.cta-content {
	position: relative;
}

.cta-content :is(.heading, p) {
	color: var(--white);
}

/* Cta End */

/* Meals Start */
.meals-card {
	height: 100%;
	border: 1px solid #00000020;
	border-radius: 1rem;
	box-shadow: 0 0 20px 1px #00000020;
	overflow: hidden;
	transition: all 300ms ease-in-out;
}

.meals-card__img {
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.meals-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 300ms ease-in-out;
}

.meals-card__content {
	padding: 2rem;
}

.meals-card__content .title {
	font-size: 1.5rem;
	font-weight: 700;
}

.meals-card__content p {
	margin: 0;
}

.meals-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 0 30px 1px #00000030;
}

.meals-card:hover .meals-card__img img {
	transform: scale(1.1);
}

.mealSlider {
	padding: 2rem 0 3rem;
}

.mealSlider .swiper-pagination-bullet {
	background: var(--primary);
}

/* Meals End */

/* Gallery Start */
.gallery {
	background: var(--secondary);
}

.gallery-img {
	width: 100%;
	height: 200px;
	border-radius: 0.5rem;
	overflow: hidden;
}

.gallery-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 300ms ease-in-out;
}

.gallery-img:hover img {
	transform: scale(1.1);
}

/* Gallery End */

/* Contact Us Start */
.contact-form__img {
	width: 100%;
	height: 600px;
	box-shadow: 0 0 20px 1px #00000020;
	border-radius: 1rem;
	overflow: hidden;
}

.contact-form__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-form__form :is(input, textarea) {
	width: 100%;
	border: 1px solid #00000020;
	border-radius: 0.5rem;
	outline: none;
	resize: none;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
}

/* Contact Us End */

/* Footer Start */
.footer {
	background: var(--secondary);
	border-top: 1px solid var(--white);
	padding-top: 3rem;
}

.footer-logo img {
	width: 100%;
}

.footer-content h2 {
	font-size: 1.75rem;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 1rem;
}

.footer-content__list li+li {
	margin-top: 0.25rem;
}

.footer-content__list li a {
	color: var(--white);
}

.footer-content__list li a:hover {
	color: var(--primary);
}

.footer-content__list li a strong {
	color: var(--primary);
	display: block;
}

.footer-copyright {
	border-top: 1px solid var(--white);
	text-align: center;
	padding: 1rem 0;
	margin-top: 3rem;
}

.footer-copyright p {
	color: var(--white);
	margin: 0;
}

/* Footer End */

/*  */
.textDocument h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0.5rem;
}

.textDocument ul {
	margin: 0 0 1rem 1.25rem;
}

.textDocument ul li {
	color: var(--black);
	list-style: disc;
}

.textDocument ul li a {
	color: var(--black);
}