section {
	overflow: hidden;
	z-index: 1;
	width: 100%;
	background-color: var(--main-content-background);
}
.section-content-container {
	max-width: 1200px;
	width: calc(100% - 40px);
}

.landing-hero {
	position: relative;
	height: calc(100dvh - var(--header-height));
	width: 100%;
	z-index: 1;
	background-color: transparent;
	transition: height 0.3s ease;
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	width: calc(100% - 40px);
	box-shadow: inset 0 2px 5px rgb(0 0 0 / 20%), inset 0 -2px 5px rgb(135 135 135 / 20%);
	border-radius: 20px;
	background-color: #fcfcfc;
	position: absolute;
	bottom: 20px;
	left: 20px;
	max-width: 500px;
	overflow: hidden;
}
.hero-content h1 {
	font-size: 2rem;
	margin: 0;
	background: linear-gradient(90deg, #ff0095, #00e0ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 500;
}
.hero-content p {
	font-size: 1.3rem;
	max-width: 600px;
	line-height: 1.4;
	color: #6c6c6c;
	font-weight: 200;
	margin: 20px;
	margin-bottom: 0;
}

.btn-hero {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	background: linear-gradient(90deg, #ff0095, #00e0ff);
	color: #fff;
	border-radius: 15px;
	text-decoration: none;
	transition: filter .3s;
	border: none;
	cursor: pointer;
	font-family: system-ui;
	margin: 20px;
}

.btn-hero:hover {
	filter: opacity(0.8);
}


.section-content-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}


.landing-image-filler-section {
	display: flex;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.landing-image-filler-section img {
	height: 100%;
	border-radius: 15px;
	object-fit: cover;
}

.landing-image-filler-section img:first-child {
	width: calc(60% - 15px);
}

.landing-image-filler-section img:last-child {
	width: calc(40% - 15px);
}


.hero-visual {
	flex: 1;
	width: calc(60% - 15px);
	position: relative;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
	background: #000;
}

/* blobs */
.blob {
	position: absolute;
	border-radius: 50%;
	opacity: 0.8;
	filter: blur(30px);
	mix-blend-mode: screen;
}

/* individual blobs */
.blob1 {
	width: 180px;
	height: 180px;
	background: #ff0095;
	top: 15%;
	left: 10%;
	animation: float1 6s infinite alternate ease-in-out;
}

.blob2 {
	width: 220px;
	height: 220px;
	background: #00e0ff;
	top: 50%;
	left: 35%;
	animation: float2 7s infinite alternate ease-in-out;
}

.blob3 {
	width: 150px;
	height: 150px;
	background: #ffea00;
	top: 30%;
	left: 70%;
	animation: float3 8s infinite alternate ease-in-out;
}

.blob4 {
	width: 130px;
	height: 130px;
	background: #ff5500;
	top: 60%;
	left: 20%;
	animation: float4 6.5s infinite alternate ease-in-out;
}

.blob5 {
	width: 200px;
	height: 200px;
	background: #00ff99;
	top: 25%;
	left: 50%;
	animation: float5 7.5s infinite alternate ease-in-out;
}

.blob6 {
	width: 170px;
	height: 170px;
	background: #ff00ff;
	top: 40%;
	left: 80%;
	animation: float6 9s infinite alternate ease-in-out;
}

/* blob 1 */
@keyframes float1 {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(60px, -50px);
	}

	100% {
		transform: translate(-40px, 60px);
	}
}

/* blob 2 */
@keyframes float2 {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-70px, 40px);
	}

	100% {
		transform: translate(50px, -60px);
	}
}

/* blob 3 */
@keyframes float3 {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(50px, 60px);
	}

	100% {
		transform: translate(-60px, -50px);
	}
}

/* blob 4 */
@keyframes float4 {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-60px, -50px);
	}

	100% {
		transform: translate(70px, 40px);
	}
}

/* blob 5 */
@keyframes float5 {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(60px, 50px);
	}

	100% {
		transform: translate(-50px, -60px);
	}
}

/* blob 6 */
@keyframes float6 {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-70px, 60px);
	}

	100% {
		transform: translate(60px, -50px);
	}
}


/* ===== SERVICE PAGE BASE ===== */
.service-page {
	font-family: Arial, sans-serif;
	color: #fff;
	background: #0e0e0e;
	line-height: 1.6;
}

/* HERO SECTION */
.service-hero {
	min-height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: radial-gradient(circle at center, #000, #111);
	padding: 60px 20px;
}

.service-hero h1 {
	font-size: 3rem;
	background: linear-gradient(90deg, #ff0095, #00e0ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 20px;
}

.service-hero p {
	font-size: 1.3rem;
	max-width: 700px;
	margin: auto;
}

/* SERVICE OFFER */
.service-offer {}


.service-offer h2 {
	color: #383838;
}

.service-offer ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	list-style: none;
	padding: 0;
}

.service-offer li {
	background: #111;
	padding: 15px 20px;
	border-radius: 12px;
	text-align: center;
	color: white;
	transition: .3s;
}

.service-offer li:hover {
	background: #222;
}

/* ROOMS */
.service-rooms,
.service-offer,
.service-extra {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding-bottom: 60px;
	padding-top: 60px;
}


.service-rooms h2 {
	color: #00a9c0;
}

.room-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 20px;
	width: 100%;
}

.room-card {
	background: linear-gradient(342deg, black, #484848);
	padding: 20px;
	border-radius: 16px;
	transition: filter .3s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	width: calc(100% - 40px);
	gap: 15px;
	text-decoration: none;
}

.room-card p {
	color: #dedede;
	margin: 0;
	line-height: 1.6;
	font-weight: 300;
}

.room-card:hover {
	filter: opacity(0.8);
}

.room-card h3 {
	font-size: 1.3rem;
	margin: 0;
	color: #fc67be;
	font-weight: 600;
}

/* EXTRA */
.service-extra h2 {
	width: fit-content;
	background: linear-gradient(90deg, #ff0095, #00e0ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-extra ul {
	list-style: disc;
	padding-left: 20px;
}

.service-extra li {
	padding: 8px 0;
}

/* CTA BUTTON */
.service-cta {
	text-align: center;
	padding: 60px 20px;
}

.btn-contact {
	display: inline-block;
	padding: 14px 26px;
	background: linear-gradient(90deg, #e758cd, #63e6fc);
	color: #fff;
	line-height: 1.3;
	font-size: 1.2rem;
	border-radius: 50px;
	text-decoration: none;
	transition: filter .3s;
	margin-left: auto;
}

.btn-contact:hover {
	filter: opacity(0.8);
}

.extra-services-container {
	max-width: 1380px;
	width: calc(100% - 40px);
	gap: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	justify-content: space-between;
}

.extra-service {
	position: relative;
	display: flex;
	flex-shrink: 0;
	aspect-ratio: 13 / 15;
	overflow: hidden;
	cursor: pointer;
}

.extra-service span {
	position: absolute;
	left: 14px;
	bottom: 14px;
	color: white;
	max-width: 72%;
	z-index: 2;
	line-height: 1.4;
}

.extra-service a {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 16%;
	aspect-ratio: 1;
	transition: transform .25s;
	display: flex;
}

.extra-service svg {
	height: 100%;
	width: 100%;
	fill: rgb(84, 84, 84);
	transition: fill 0.25s;
}

.extra-service img {
	top: 0;
	left: 0;
	position: absolute;
	object-fit: cover;
	object-position: left;
}

.extra-service:hover a {
  transform: rotate(45deg);
}

.extra-service:hover svg {
	fill: #c07ee3;
}

.chipped-bottoom-right {
	clip-path: url("#clip");
	width: 100%;
	height: 100%;
	background-color: #513D34;
	aspect-ratio: 13 / 15;
}

.extra-service-img-overlay {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgb(0 0 0) 0, transparent 90px);
	pointer-events: none;
	z-index: 1;
}


.extra-services-header {
	max-width: 1380px;
	width: calc(100% - 40px);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.extra-services-description {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 20px;
}
.extra-services-description span {
	color: #515151;
	line-height: 1.6;
	font-weight: 300;
	max-width: 400px;
}
.extra-services-description button {
	border: none;
	background-color: transparent;
	font-family: system-ui;
	font-weight: 500;
	color: #ba36aa;
	font-size: 16px;
	display: flex;
	align-items: flex-start;
	gap: 5px;
	cursor: pointer;
}

/* ===== FADE ===== */
.reveal-from-right,
.reveal-from-left {
	overflow: hidden;
	opacity: 0;
	transition: opacity .9s cubic-bezier(.2, .6, .3, 1), transform .9s cubic-bezier(.2, .6, .3, 1);
}
.reveal-from-right {
	transform: translateX(100px);
}
.reveal-from-left {
	transform: translateX(-100px);
}

.reveal-from-right.visible,
.reveal-from-left.visible {
	transform: translateX(0);
	opacity: 1;
}


@media (max-width: 1200px) {
	.service-extra h2 {
		font-size: 3rem
	}
}

@media (max-width: 1000px) {
	.service-extra h2 {
		font-size: 2.6rem
	}

	.landing-image-filler-section {
		gap: 20px;
		height: calc(100% - 20px);
		margin-bottom: 20px;
	}

	.landing-image-filler-section img:first-child {
		width: calc(60% - 10px);
	}

	.landing-image-filler-section img:last-child {
		width: calc(40% - 10px);
	}
}

@media (max-width: 850px) {
	.hero-content {
		max-width: 400px;
	}
	.hero-content h1 {
		font-size: 1.6rem;
	}
	.hero-content p {
		font-size: 1.1rem;
	}

	.extra-services-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
	.service-extra h2 {
		font-size: 1.6rem;
	}
	.extra-services-description {
		gap: 0px;
		width: 100%;
	}
	.extra-services-description span {
		max-width: 350px;
		font-size: 15px;
	}

	/* .landing-image-filler-section img:first-child,
	.landing-image-filler-section img:last-child {
		width: 100%;
	} */
}

@media (max-width: 768px) {
	.service-item a {
		display: none;
	}
	.section-content-container {
		gap: 10px;
	}
	.service-item p {
		font-size: 16px;
	}
	.service-rooms,
	.service-offer,
	.service-extra {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.services-grid {
		gap: 12px;
	}
	.service-item-content {
		gap: 4px;
	}
	.service-item {
		border-radius: 12px;
		padding: 10px;
	}
	.service-item h3 {
		font-size: 22px;
	}
	.extra-services-container {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}
	.room-cards {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.landing-hero {
		justify-content: unset;
	}

	.hero-visual {
		display: none;
	}

	.landing-image-filler-section {
		flex-direction: column;
		height: 100%;
	}

	.landing-image-filler-section img {
		width: 100%;
		height: calc(50% - 10px);
	}
}

@media (max-width: 500px) {
	.hero-content {
		width: 100%;
		left: 0;
		bottom: 0;
		border-radius: 24px 24px 0 0;
		max-width: 100%;
	}
	.hero-content h1 {
		font-size: 1.6rem;
	}
	.hero-content p {
		font-size: 1.1rem;
	}


	.btn-hero {
		padding: 10px 26px;
		font-size: 16px;
	}

	.extra-services-description {
		display: none;
	}
}


/* Upcoming workshops below */

/* ~~~~~~~~~~ */
.upcoming-workshops {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
}
.upcoming-workshop-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	border: 1px solid #dddddd;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	gap: 18px;
	padding-top: 8px;
	cursor: pointer;
	transition: border .3s;
	background: white;
}
.upcoming-workshop-item:hover {
	border: 1px solid #444;

}

.upcoming-workshop-details-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.upcoming-workshop-title {
	font-weight: 600;
	font-size: 17px;
}
.upcoming-workshop-details-container {
	margin-bottom: 38px;
}
.upcoming-workshop-date {
	font-size: 56px;
	font-weight: 800;
}
.upcoming-workshop-month {
	font-size: 22px;
}
.upcoming-workshop-readmore {
	height: 40px;
	padding: 0 10px;
	background-color: black;
	color: white;
	text-decoration: none;
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top-left-radius: 19px;
}
.upcoming-workshop-readmore:hover {
	opacity: 0.8;
}

@media (max-width: 1120px) {
	.upcoming-workshops {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 600px) {
	.upcoming-workshops {
		grid-template-columns: 1fr;
	}
	.upcoming-workshop-item {
		border-radius: 14px;
		gap: 12px;
		padding-top: 0;
	}
	.upcoming-workshop-date {
		font-size: 45px;
		font-weight: 700;
	}
	.upcoming-workshop-readmore {
		border-top-left-radius: 14px;
	}
	.upcoming-workshop-details-container {
		margin-bottom: 30px;
	}
	.upcoming-workshops {
		gap: 14px;
	}
}