body {
	/* background: url("https://images.pexels.com/photos/3165335/pexels-photo-3165335.jpeg")
		no-repeat center center fixed; */
	background-size: cover;
	font-family: sans-serif;
	justify-content: center;
	align-items: center;
}

.container {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	justify-content: center;
	margin: 1rem;
	flex-wrap: wrap; /* Added to allow cards to wrap onto the next line */
}

.card {
	box-shadow: 1px 10px 10px 5px #bc13fe;
	border: 1px solid pink;
	border-radius: 20px;
	padding: 2rem;
	width: 90%; /* Set a max width for desktop */
	max-width: 600px; /* Added max width for better desktop layout */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card-photo img {
	box-shadow: 1px 2px 8px blue;
	width: 100%;
	margin-bottom: 1rem;
	padding: 0;
}

h1 {
	text-align: center;
	font-family: Serif;
	text-decoration: underline;
	color: white;
	text-shadow: 2px 2px 5px pink;
	padding: 1.6%;
}

h2 {
	color: pink;
	text-align: center;
	margin: 0;
}

p {
	color: white;
}

.card-button,
button,
a {
	text-decoration: none;
	font-weight: 600;
	color: black;
	border-radius: 10px;
	padding: 3px;
	background-color: rgb(127, 10, 143);
}
buttonFoot,
a {
	text-decoration: none;
	font-weight: 600;
	color: black;
	border-radius: 10px;
	padding: 3px;
	background-color: rgba(0, 0, 0, 0);
}
.card:hover {
	box-shadow: 0px 0px 50px 3px pink;
	transform: scale(1.1);
}

button:hover {
	padding: 4%;
	box-shadow: 1px 3px 6px 5px #bc13fe;
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.2rem;
	}
	.container {
		gap: 1rem;
		flex-direction: column;
	}
	.card {
		width: 90%;
	}
}

@media (max-width: 1200px) {
	.card {
		width: 45%;
	}
}

@media (max-width: 768px) {
	.card {
		width: 100%;
		padding: 0.3rem;
	}
	h1 {
		font-size: 1.5rem;
	}
	.container {
		gap: 2.5rem;
	}
}

:root {
	--m: 4rem;
}

* {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	background-color: black;
	color: white;
	font-family: "IBM Plex Sans";
	font-weight: 300;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 190vh;
	margin: 0;
	color: #d5d5d5;
	font-size: calc(0.3 * var(--m));
}

h2 {
	font-weight: 500;
	text-align: center;
	font-size: var(--m);
	margin: 0;
}

h3 {
	font-weight: 500;
	font-size: calc(0.6 * var(--m));
	margin: 0;
}

.card2 {
	height: calc(8 * var(--m));
	width: calc(12 * var(--m));
	background: linear-gradient(120deg, #ff8064, #725bdc);
	color: black;
	border-radius: calc(0.5 * var(--m));
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--m);
	position: fixed;
	margin: calc(2 * var(--m)) calc(5 * var(--m)) calc(5 * var(--m)) calc(5 * var(--m));
}

button2 {
	background-color: #000;
	font-size: calc(0.4 * var(--m));
	border: none;
	color: #e5e5e5;
	font-family: "IBM Plex Sans";
	font-weight: 400;
	padding: calc(0.35 * var(--m)) calc(0.8 * var(--m));
	border-radius: calc(0.3 * var(--m));
}

footer {
	margin-top: 1vh; /* Adjusted margin-top */
	z-index: 500;
	width: 100%;
	height: auto; /* Changed height to auto */
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: flex-end;
	padding: 5rem 2vw;
	position: relative;
}

footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		rgba(0, 0, 0, 0) 5%,
		rgba(0, 0, 0, 0.3) 20%,
		rgba(0, 0, 0, 0.6) 30%,
		rgba(0, 0, 0, 0.8) 40%,
		rgba(0, 0, 0, 1) 50%,
		rgb(0, 0, 0)
	);
	z-index: -7;
}

.backdrop {
	z-index: -5;
	position: absolute;
	inset: 0;
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	mask-image: linear-gradient(
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.5) 10%,
		rgba(0, 0, 0, 0.8) 20%,
		rgba(0, 0, 0, 1) 30%,
		rgb(0, 0, 0)
	);
	-webkit-mask-image: linear-gradient(
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.5) 10%,
		rgba(0, 0, 0, 0.8) 20%,
		rgba(0, 0, 0, 1) 30%,
		rgb(0, 0, 0)
	);
}

.col {
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: calc(0.2 * var(--m)) calc(0.2 * var(--m));
	width: 30%;
}

.col2,
.col3 {
	background-color: #121212;
	border-radius: calc(0.5 * var(--m));
	padding: calc(0.2 * var(--m)) calc(0.5 * var(--m));
}

img {
	height: calc(1.3 * var(--m));
	object-fit: cover;
}

.social {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 1rem;
}

a {
	text-decoration: none;
	color: inherit;
}

.link {
	width: calc(0.8 * var(--m));
	height: calc(0.8 * var(--m));
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: calc(0.1 * var(--m));
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 1000px) {
	:root {
		--m: 3rem;
	}
}

@media screen and (max-width: 700px) {
	footer {
		flex-direction: column;
		padding: 5rem 20vw;
	}
	.col {
		width: 100%;
	}
}
/* Logo Banner Styles */
#logo-banner-container {
  height: 100px;
  width: 100%;
  text-align: center; /* Or left, if preferred */
  /* margin-bottom: 20px; Optional: Add some space below the banner */
}

#logo-banner-container img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
