/* ===========================
   RIHLah SECTION
=========================== */

.rihlah-section {
	padding: 80px 0;
	background: #ffffff;
}


.rihlah-caption {
	max-width: 850px;
	margin: auto;
}


.rihlah-caption h2 {
	font-size: 38px;
	font-weight: 700;
	color: #1b5e20;
	margin-bottom: 20px;
	font-family: "Work Sans", sans-serif;
}


.rihlah-caption p {
	font-size: 17px;
	line-height: 1.9;
	color: #555;
}


.rihlah-icon {
	font-size: 35px;
	color: #c9a227;
}


.ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 25px;
	color: #c9a227;
}


.ornament span {
	width: 80px;
	height: 2px;
	background: #c9a227;
}



/* GALERI */

.rihlah-gallery {
	margin-top: 50px;
}


.gallery-card {
	overflow: hidden;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	background: white;
	height: 280px;
}


.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
}


.gallery-card:hover img {
	transform: scale(1.08);
}


/* RESPONSIVE */

@media(max-width:768px){

	.rihlah-caption h2 {
		font-size:30px;
	}


	.rihlah-caption p {
		font-size:15px;
	}


	.gallery-card {
		height:230px;
	}

}