.hero-section {
	background-image: url(../img/gallery/Photo69.jpg);
	background-size: cover;
	background-position: center;
	min-height: 100vh;
}

.hero-content {
	color: white;
	min-height: 100vh;
	width: 100%;
	padding-left: 16rem;
	padding-right: 25%;
	background: linear-gradient(
		to left,
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0.7)
	);

	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3.2rem;
	padding-top: 7rem;
}

/* 
.hero-content h1 {
	margin-bottom: 3.2rem;
}

.hero-main-text {
	margin-bottom: 2.4rem;
} */

.contact-section {
	background-color: #170000;
	padding: 16rem 12rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-content {
	/* margin-left: 40%;
	margin-right: 8rem; */
	padding: 4rem;
	background-color: #210000;
	box-shadow: 4px 4px 24px 2px rgba(255, 35, 35, 0.8);
	text-align: left;
	color: white;
	border-radius: 12px;
	transition: all 0.2s;

	display: grid;
	grid-template-columns: 2fr 3fr;
	/* justify-content: space-between; */
	gap: 12.8rem;
	align-items: center;
}

.contact-content:hover {
	transform: translateY(-1rem);
}

.contact-content img {
	width: 100%;
	border-radius: 12px;
	transition: all 0.15s;
}

.contact-content img:hover {
	/* transform: scale(0.95); */
	filter: grayscale(1);
	/* brightness(0.9) hue-rotate(-0.3rad) contrast(1.1) */
}

.contact-text {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 3.2rem;
}

.gallery-preview-section {
	/* background-color: #2e0000; */
	background-color: #fde6e6;
	display: grid;
	grid-template-columns: 3fr 2fr;
	padding: 3.2rem;
}

.gallery-preview-content {
	padding: 16rem;
	color: black;
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
	align-items: start;
}

.gallery-preview {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3.2rem;
}

.gallery-item {
	overflow: hidden;
}

.gallery-preview img {
	width: 100%;
	height: 100%;
	transition: all 0.3s;
	object-fit: cover;
}

.gallery-preview img:hover {
	transform: scale(1.1);
}
