/* Loader Container */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: fixed; /* Ensure it covers the entire viewport */
    width: 100vw;
    top: 0;
    left: 0;
    background: #fff; /* Adjust as needed */
    z-index: 1000; /* Ensure it sits on top of all other content */
    transition: transform 1.5s ease-out; /* Smooth transition */
}

/* Hide loader with translateY */
.loader-container.hide {
    transform: translateY(-100%);
}

/* Loader Styles */
.loader img {
    width: 25vw;
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}

.loader img:nth-child(1) {
    animation-delay: 0s;
}

.loader img:nth-child(2) {
    animation-delay: 0.3s;
}

.loader img:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* Reset default browser styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	background-color: #e5e5e5;
	margin: 0;
}

/* HEADER AND NAV SECTION */

header {
	position: sticky;
	top: 0;
	background-color: rgba(255, 255, 255, 0.8);
	/* Translucent background */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 4px;
	z-index: 1000;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}


nav {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
    margin: 0 auto;
	padding: .5 1rem;
}

.logo a {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	margin-right: 1rem;
}

.logo a img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	transition: opacity 0.5s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.logo a img.hover-image {
	opacity: 0;
}

.logo a:hover img.hover-image {
	opacity: 1;
}

.logo a:hover img.base-image {
	opacity: 0;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-right: 1rem;
}

.nav-links li a {
	text-decoration: none;
	color: #333;
	transition: color 0.2s ease;
}

.nav-links li a:hover {
	color: #007bff;
}

.active {
    border:  1px solid #007BFF;
	color: #007BFF;
	padding-left: 12px;
    padding-right: 12px;
	border-radius: 15px;
	text-decoration: none;
}

/* CALL TO ACTION BUTTONS */

.btn-nav-book {
    border:  1px solid #007BFF;
	color: #007BFF;
	padding-left: 12px;
    padding-right: 12px;
	border-radius: 15px;
	text-decoration: none;
}

.btn-nav-book:hover {
    color: white;
	background-color: #007BFF;
}

.cta-buttons-container {
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding: 2rem;
    background-color: #e5e5e5;
}

.cta-buttons-container-about {
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding: 2rem;
    background-color: #fff;
}

.btn-book-now {
	border:  1px solid #007BFF;
	color: #007BFF;
	font-size: 1.2rem;
	padding: 5px 14px;
	text-decoration: none;
	border-radius: 25px;
}

.btn-book-now:hover {
	color: white;
	background-color: #007BFF;
}


.explore {
	display: inline-block;
	background-color: #007BFF;
	color: #fff;
	font-size: 1.2rem;
	padding: 5px 14px;
	text-decoration: none;
	border-radius: 25px;
}

.explore:hover {
	background-color: #0080FF;
}

/* FRONT PAGE SECTION */

.hero {
	position: relative;
	overflow: hidden;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.6);
	max-width: 90%;
	/* Adjust width as needed */
	margin: 0 auto;
	/* Center horizontally */
	height: 100%;
	/* Ensure the hero-content fills the height */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-content img.logo-center {
	display: block;
	margin: 0 auto;
	/* Center horizontally */
	max-height: 100vh;
	max-width: 100%;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
    padding: 2rem;
    color: black;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

/* EXPERIENCE SECTION */

.experience {
	padding: 2rem 3rem;
	background-color: #e5e5e5;
}

.experience-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;

}

.experience-container,
.about-container {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	text-align: left;
	gap: 1rem;

}

.experience-video,
.about-image {
	position: relative;
	flex: 1;
	min-width: 300px;
	overflow: clip;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
}

.experience-video::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 80%);
	z-index: 1;
}

.experience-video video,
.about-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.video-overlay {
	position: absolute;
	left: 1.5rem;
	color: white;
	text-align: left;
	border-radius: 18px;
	max-width: 49%;
	max-height: 95%;
	z-index: 2;
}

.video-overlay h3 {
	font-size: 4.2vw;
	text-shadow: black 0px 0px 5px;
}

.video-overlay p {
	text-shadow: black 0px 0px 10px;
	font-size: 1.8vw;
}

.about,
.rooms,
.airbnb,
.contact {
	text-align: center;
	background-color: #e5e5e5;
}

/* ABOUT SECTION */

.about {
	padding: 2rem 3rem;
	text-align: center;
	background-color: #e5e5e5;
}

.about-overlay {
	position: absolute;
	right: 14px;
	color: white;
	text-align: center;
	border-radius: 18px;
	max-width: 35%;
	max-height: 95%;
	z-index: 2;
}

.about-overlay h3 {
	font-size: 4.2vw;
	text-shadow: black 0px 0px 3px;
}

.about-overlay p {
	text-shadow: black 0px 0px 3px;
	font-size: 1.8vw;
}

.about-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 60%);
	z-index: 1;
}

/* AIRBNB CARDS */

.airbnb-container {
	display: flex;
	overflow-x: scroll;
	gap: 1rem;
	padding: 2rem 3rem;
}

.airbnb-embed-frame {
	flex: 0 0 auto;
	width: 450px;
	height: 300px;
	border-radius: 15px;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: ;
	padding: 0;
	margin: auto;
	position: relative;
}

.airbnb-embed-frame iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* CONTACT FORM */

.contact-form-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem 3rem;
	background-color: #e5e5e5;
}

.contact-form {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
	color: #333;
}

.contact-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
	font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 1.5rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
	color: #333;
	box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.contact-form button {
    border:  1px solid #007BFF;
	color: #007BFF;
    background: #fff;
	font-size: 1.2rem;
	padding: 5px 14px;
	text-decoration: none;
	border-radius: 25px;
}

.contact-form button:hover {
	background-color: #007BFF;
    color: #fff;
}

.contact-form-learn {
	color: #fff;
    background: #007BFF;
	font-size: 1.2rem;
	padding: 5px 14px;
	text-decoration: none;
	border-radius: 25px;
}

.contact-form-learn:hover {
	background-color: #0080FF;
    color: #fff;
}

.contact-buttons-container {
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding: 2rem;
}

/* FOOTER */

footer {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 1rem 0;
	margin-top: auto;
}

/* ABOUT US SECTION */

.about-section {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-section h1 {
    text-align: center;
    color: #333;
}

.content {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.photo-left, .photo-right {
    flex: 1;
    padding: 1rem;
}

.photo-left img, .photo-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.text-left, .text-right {
    flex: 2;
    padding: 20px;
}

.text-left h2, .text-right h2 {
    color: #333;
    margin-top: 0;
}

.text-left p, .text-right p {
    color: #666;
    line-height: 1.6;
}

.photo-left {
    order: 1;
}

.text-right {
    order: 2;
}

.text-left {
    order: 1;
}

.photo-right {
    order: 2;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    
    .photo-left, .photo-right, .text-left, .text-right {
        order: unset;
    }
    
    .text-left, .text-right {
        padding: 10px;
    }
}