.landing-section {
	width: 100%;
	min-height: calc(100dvh - var(--header-height));
	z-index: 1;
	position: relative;
	backdrop-filter: blur(2px) brightness(0.8);
}

.landing-image-container {
    width: 100%;
    height: 100%;
}

.landing-image-container img,
.landing-image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.landing-section-content {
	position: absolute;
	left: 50%;
	bottom: 50%;
	transform: translate(-50%, 50%);
	display: flex;
	flex-direction: column;
	max-width: calc(100% - 40px);
	align-items: center;
	width: 100%;
}

.landing-section-content .description {
	font-size: clamp(0.9rem, 3vw, 1.3rem);
	text-align: center;

	color: white;
	max-width: 800px;
	text-shadow: 0 0 10px black;
}
.landing-section-content .badge {
	padding: 8px 14px;
	border-radius: 16px;
	text-align: center;
	width: fit-content;
	color: var(--text-color-inverse);
	line-height: 1;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background-color: #7e96a7;
	color: #fff;
}
.landing-section-content .action-buttons {
	display: flex;
	flex-direction: row;
	gap: 1rem
}

.landing-section-content .action-buttons a,
.landing-section-content .action-buttons button {
	font-size: clamp(1rem, 4vw, 1.1rem);
	text-decoration: none;
	padding: 18px 26px;
	border-radius: 20px;
}
@media (max-width: 768px) {
	.landing-section-content .action-buttons {
		flex-direction: column;
		margin-top: 20px;
	}
	.landing-section-content .action-buttons a, .landing-section-content .action-buttons button {
		padding: 14px 20px;
		border-radius: 16px;
	}
}

h2 {
	font-weight: 800;
	margin: 0;
	font-size: clamp(1.5rem, 6vw, 4.5rem);
	font-family: 'Jakarta';
	color: white;
	max-width: calc(100% - 20px);
}
h3 {
    font-size: 44px;
    font-family: 'Jakarta';
    color: #333;
    margin: 0;
    font-weight: 300;
}
.welcome-section-h3 {
    margin-bottom: 100px;
	width: calc(100% - 20px);
	text-align: center;
}



/* ~~~~~~~~ */

.landing-section-welcome {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 100px;
}
.landing-section-welcome h2 {
    color: #444;
}

.welcome-section-image-and-text {
	height: 100vh;
	display: flex;
	flex-direction: row;
	position: relative;
	width: 100%;
    margin-bottom: 120px;
}
.welcome-img-container {
	height: 100%;
	max-width: 1360px;
}
.welcome-img-container img {
	height: 100%;
	object-fit: cover;
	overflow: hidden;
	width: 100%;
}
.welcome-text-container {
	position: absolute;
	max-width: 700px;
    width: 45%;
	background-color: white;
	font-size: 24px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.welcome-text-container span,
.villa-description-container span {
    font-family: Averta;
    font-size: 17px;
	line-height: 1.7;
    color: #667380;
}

/* ~~~~~~~~~~~ */
/* Gallery Section */

.gallery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
	margin: 40px 0;
}

/* ~~~~~~~~~~~ */
/* Amenities Section */
.amenities-section {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #1254d90f;
	gap: 2rem;
	padding: 40px 0;
}
.amenities-container {
	width: calc(100% - 40px);
	max-width: 1400px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1rem;
	justify-content: center;
}
@media (max-width: 900px) {
	.amenities-container {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 500px) {
	.amenities-container {
		grid-template-columns: 1fr;
	}
}
.amenity {
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 1rem;
	align-items: center;
	padding: 1.5rem;
	gap: 0.5rem;
}
@media (max-width: 500px) {
	.amenity {
		padding: 10px;
	}
}
.amenity svg {
	width: 30px;
	height: 30px;
	padding: 0.5rem 0;
	fill: var(--main-accent);
}
.amenity .title {
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
}
.amenity .description {
	color: #8a8a8a;
	font-size: 0.9rem;
	text-align: center;
}

/* ~~~~~~~~~~~ */
.access-and-travel .right {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}
.access-and-travel {
	display: flex;
	flex-direction: row;
	max-width: 1100px;
	width: calc(100% - 40px);
	gap: 2rem;
	margin: 20px 0;
	align-items: center;
}
@media (max-width: 900px) {
	.access-and-travel {
		flex-direction: column-reverse;
	}
}

.villa-map-container {
	width: 100%;
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
}
.villa-map-container .get-directions {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	padding: 16px 18px;
	background-color: var(--main-accent);
	color: white;
	border-bottom-left-radius: 2rem;
	cursor: pointer;
}

.villa-map {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background-color: #f8edd8;
}

.svg-descriptive-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 1rem;
}

.svg-descriptive-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.svg-descriptive-item .svg-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 28px;
	background-color: #e0e5f5;
	flex-shrink: 0;
}

/* .svg-descriptive-item svg {
	width: 32px;
	height: 32px;
} */

.svg-descriptive-item .title {
	font-weight: 600;
	font-size: 1.2rem;
}

.svg-descriptive-item .desc {
	font-size: 0.9rem;
	opacity: 0.6;
	line-height: 1.5;
}