.landing-section {
    width: 100%;
    min-height: calc(100dvh - var(--header-height));
    z-index: 1;
	position: relative;
}

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

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



.landing-section-bottomleft-content {
	position: absolute;
	left: 60px;
	bottom: 130px;
	display: flex;
	flex-direction: column;
	max-width: calc(100% - 40px);
}

h2 {
	font-weight: 500;
	margin: 0;
	font-size: 110px;
	font-family: 'HattonLight';
	color: white;
	max-width: 800px;
}
h3 {
    font-size: 44px;
    font-family: 'HattonLight';
    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,
.default-title-and-options-section span {
    font-family: Averta;
    font-size: 17px;
	line-height: 1.7;
    color: #667380;
}

.default-title-and-options-section span {
	text-align: center;
	max-width: 750px;
	width: calc(100% - 40px);
	margin-bottom: 40px;
}

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

.villa-description-section {
	display: flex;
	justify-content: center;
	flex-direction: row;
	max-width: 1280px;
	height: calc(100vh - 120px);
	margin-bottom: 100px;
	align-items: center;
    gap: 60px;
	width: calc(100% - 40px);
}
.villa-description-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}
.villa-description-container span {
    text-align: justify;
    max-width: 530px;
}
.villa-description-img-container {
    width: 640px;
	height: 100%;
	flex-shrink: 0;
}
.villa-description-img-container img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}

.see-our-villas {
    font-family: Averta;
    height: 55px;
	transition: background-color 0.3s;
	background-color: var(--olive-bg);
	color: white;
	width: 180px;
	font-size: 15px;
    line-height: 2.9;
    z-index: 1;
    cursor: pointer;
    border: none;
}
.see-our-villas span {
    line-height: 2.9;
	color: white;
}
.see-our-villas:hover {
	box-shadow: 0 0 1px gray;
    background-color: white;
    color: black !important;
}
.see-our-villas:hover span {
    color: black;
}



.default-title-and-options-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background-color: white;
}
.default-title-and-options-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1280px;
	width: calc(100% - 40px);
	margin-top: 80px;
	margin-bottom: 80px;
}
.default-title-and-options-content h3 {
	margin-bottom: 30px;
}


.default-options-container {
	display: flex;
}
.default-option {
	transition: transform 0.3s;
    position: relative;
    display: block;
    overflow: hidden;
	aspect-ratio: 1.5;
	cursor: pointer;
	width: 100%;
}
.default-option:hover {
	transform: scale(0.95);
}
.default-option .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-option .card-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 24px;
    width: calc(100% - 48px);
    background: linear-gradient(to top, #2d3a31, rgba(0, 0, 0, 0));
}

.default-option h3 {
    margin: 0 0 6px;
    font-size: 1.6rem;
	font-family: Averta;
	color: #fff;
}

.default-option p {
    margin: 0;
    font-size: 1rem;
	font-family: Averta;
	color: #fff;
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1200px) {

}
@media (max-width: 1000px) {
	.landing-section-welcome {
		margin-top: 60px;
	}
	.welcome-section-h3 {
		margin-bottom: 60px;
	}
	h2 {
		font-size: 70px;
	}
	h3 {
		font-size: 28px;
	}
	.welcome-section-image-and-text {
		height: unset;
		flex-direction: column;
		margin-bottom: 100px;
	}
	.welcome-img-container {
		height: 100dvh;
	}
	.welcome-text-container {
		position: unset;
		width: calc(100% - 80px);
		transform: none;
		max-width: unset;
		margin: 0;
	}

	.villa-description-section {
		flex-direction: column;
		height: unset;
		gap: 10px;
	}
	
	.villa-description-img-container {
		width: 100%;
		height: 450px;
	}

	.see-our-villas {
		width: 100%;
	}

	.default-options-container {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.landing-section-bottomleft-content {
		left: 20px;
	}
	h2 {
		font-size: 46px;
	}
}

@media (max-width: 500px) {

}