:root {
	--primary-dark: #202945;
	--primary-mid: #c06b15;
	--primary-mid2: #007574;
	--primary-light: #ffffff;
	--primary-lightest: #ffffff;

	--font-family-base: "Manrope", sans-serif;
	--font-family-subheading: "Boogaloo", sans-serif;
	--font-family-heading: "Bangers", sans-serif;

	--font-weight-light: 200;
	--font-weight-regular: 300;
	--font-weight-heavy: 400;

	--font-size-base: 17px;
	--font-size-large: 23px;
	--font-size-heading: 45px;

	--border-radius: 10px;
}

body {
	font-family: var(--font-family-base);
	font-optical-sizing: auto;
	font-weight: var(--font-weight-regular);
	font-size: var(--font-size-base);
	color: var(--primary-light);
	font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
	font-family: var(--font-family-heading);
	font-optical-sizing: auto;
	color: var(--primary-light);
	font-weight: var(--font-weight-heavy);
	letter-spacing: 1px;
}

strong {
	color: var(--primary-lightest);
	font-family: var(--font-family-subheading);
	text-transform: uppercase;
	letter-spacing: 0.2px;
}

.subheading {
	font-family: var(--font-family-subheading);
	text-transform: uppercase;
	letter-spacing: 0.2px;
}

.card-img,
.card-img-top {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}

.card-img-top:hover {
	transform: scale(1.05);
}
.modal-header {
	background-color: transparent;
	border-bottom: none;
}
.modal-content {
	background-color: transparent;
	border: none;
}
.modal-body img {
	background-color: #fff; /* Optional: to ensure image visibility */
	border: var(--primary-lightest) solid 5px;
}
.custom-close {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 30px;
	height: 30px;
	background-color: white;
	border: none;
	border-radius: 50%;
	opacity: 1;
	z-index: 1051; /* Ensure the close button is on top */
}

.custom-close::before {
	content: "\2715"; /* Unicode for 'x' */
	font-size: 20px;
	color: black;
	display: block;
	text-align: center;
	line-height: 30px;
}

.curved-bottom {
	-webkit-mask-image: url("/images/curve-mask.svg");
	mask-image: url("/images/curve-mask.svg");
	-webkit-mask-position: bottom center;
	mask-position: bottom center;
	-webkit-mask-size: 100% auto;
	mask-size: 100% auto;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	padding-bottom: 12vw;
}

#gallery {
	padding-bottom: 16vw !important;
}

.gallery-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-mid2);
	background-image: url("/images/stars2.svg"), url("/images/stars4.svg");
	background-position: top -20px right -200px, bottom 200px left -100px;
	background-repeat: no-repeat, no-repeat;
	background-size: 600px auto, 400px auto;
	-webkit-mask-image: url("/images/curve-mask.svg");
	mask-image: url("/images/curve-mask.svg");
	-webkit-mask-position: bottom center;
	mask-position: bottom center;
	-webkit-mask-size: 100% auto;
	mask-size: 100% auto;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	padding-bottom: 12vw;
}

.curved-top {
	margin-top: -15vw;
	padding-top: 10vw;
}

@media only screen and (min-width: 768px) {
	.container {
		padding-left: 0px;
		padding-right: 0px;
	}
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.grid-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3vw 5vw;
}

.grid-4 {
	display: flex;
	flex-direction: row;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.flex-grid {
	display: flex;
	flex-direction: row;
	gap: 3vw 5vw;
	flex-wrap: wrap;
	justify-content: center;
}

.grid-4 > div,
.grid-4 > a {
	width: 32%;
}

.flex-grid > a {
	width: 25%;
}

@media only screen and (max-width: 1024px) {
	.flex-grid > a {
		width: 44%;
	}
}

@media only screen and (max-width: 768px) {
	.grid-3 {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.grid-2 {
		gap: 20px;
	}

	.grid-4 > div {
		width: 44%;
	}
}

@media only screen and (max-width: 768px) {
	.pb-5 {
		padding-bottom: 0rem !important;
	}

	.mt-5 {
		margin-top: 0rem !important;
	}
}
