.treatment {
	padding: 20px;
	max-width: 1000px;
	margin: 100px auto;
/*	background-color: #f9f9f9;*/
	border-top: solid 1px #000;
	overflow-x: hidden;
	position: relative;
}
.treatment h1 {
	display: flex;
	justify-content: center;
	margin: 0 0 20px;
	font-size: 2rem;
}
.treatment img {
	width: 100%;
	border-radius: 10px;
	box-sizing: border-box;
	vertical-align: top;
	margin-bottom: 50px;
	box-shadow: 0 3px 15px 0px rgba(0, 0, 0, 0.2);
}

.treatment h2 {
/*	margin-top: 50px;*/
	display: flex;
	justify-content: center;
}
.treatment article {
	display: flex;
	flex-direction: column;
	gap: 30px;
	background-color: rgba(128, 159, 255, 0.5);
	border-radius: 10px;
	padding: 20px 30px;
	color: #000;
	box-shadow: 0 3px 15px 0px rgba(0, 0, 0, 0.2);
}
.treatment .price-booking-container {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 30px;
}
.treatment .price {
/*	padding: 15px 20px;*/
/*	background-color: #f9f9f9;*/
	border-radius: 10px;
/*	border: solid 1px #000;*/
}
.treatment div {
	display: inline-flex;
	gap: 3px;
	font-size: 2rem;
	font-weight: bold;
	align-items: center;
}





.treatment .booking-button {
	text-decoration: none;
	border: none;
	background-color: rgba(128, 159, 255, 1);
	padding: 10px 15px;
	font-size: 1.25rem;
	font-weight: bold;
	color: #fff;
	border-radius: 10px;
	cursor: pointer;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.treatment .booking-button:hover {
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
	transform: translate(-2px, -2px);
}





/*--------------- gallery -------------*/
.gallery {
    padding: 50px;
    text-align: center;
	background-color: rgba(128, 159, 255, 0.5);
}
.gallery h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
}
.gallery-grid figure {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
	box-shadow: 0 3px 15px 0px rgba(0, 0, 0, 0.2);
}
.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-grid img.visible {
    opacity: 1;
    transform: translateY(0);
}
.gallery-grid figure:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}
