* {
	font-family: 'Source Sans Pro';
}


/*Loader*/
#loader {
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: ease;
}


#loader svg {
	width: 200px;
}

#loader.none {
	visibility: hidden;
	opacity: 0;
}

.scroll-bar {
	overflow: hidden;
}

.horizontal {
	width: 10%;
	margin: 1em 0 2em 0;
	height: 1px;
	background-color: #d4af37;
	border: none;
}

p {
	font-size: 18px;
	
}

#para{
	font-size: 18px;
	padding: 0px 40px;
	width: 80%;
}
h2 {
	font-size: 40px;
}
.rows{
    display: flex;
    flex-wrap: wrap; /* Allows images to wrap on small screens */
    justify-content: center;
    gap: 20px;
	padding:40px /* Adds spacing between images */
}

.image-container {
    position: relative;
    width: 313px; /* Default width for larger screens */
    height: 464px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    border-radius: 10px;
}

.image-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .row {
        flex-direction: column; /* Stacks images on small screens */
        align-items: center; /* Centers images */
    }

    .image-container {
        width: 90%; /* Makes images full-width on smaller screens */
        height: auto; /* Adjusts height automatically */
    }

    .image-container img {
        height: 300px; /* Set a fixed height for smaller screens */
    }

    .image-text {
        font-size: 18px; /* Adjust text size for small screens */
        padding: 8px 12px;
    }
}

.small-image {
	height: 105px;
}

.large-image {
	height: 227px;
}

.side-by-side-container {
	display: flex;
}

.large-image-container {
	margin-right: 7px;
}

.stacked-image-container {
	display: flex;
	flex-direction: column;
	margin-top: 1px;
}
/* Header section--------------------- */
.page-header-container {
	margin-bottom: 70px;
}

.page-header-span {
	display: flex;
	justify-content: flex-end;
	padding-right: 100px;
}
.page-header {
	/* font-weight: 500; */
	text-align: center;
	padding: 0 150px 0 0;
}

.page-header:after {
	display: block;
	height: 1px;
	background-color: #d4af37;
	content: '';
	width: 90px;
	margin: 0.5em auto 0 auto;
}

.page-sub-header {
	font-size: 75%;
	text-align: center;
	letter-spacing: 0.01em;
	font-weight: 300;
	color: #3b331a;
}

/* Header End-------------------------------- */

/* Jumbotron class */
.jumbotron-container {
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url('../img/Homepage-jumbotron.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.9;
	min-height: calc(100vh - 12vh);
	display: flex;
	color: white;
}

.jumbotron-left {
	flex: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 10%;
	/* border: 1px solid white; */
}

.jumbotron-left > * {
	margin: 0.5rem;
}

.jumbotron-header {
	text-transform: capitalize;
}

.jumbotron-right {
	flex: 2;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	/* border: 1px solid white; */
}

.jumbotron-form {
	color: black;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/*background: white;*/
	width: 70%;
	min-height: 60%;
	border-radius: 5px;
}
.jumbotron-form p {
	margin-bottom: 1em;
	text-align: center;
	font-size: 18px;
}
.jumbotron-form input {
	outline: none;
	width: 80%;
	height: 2.5em;
	padding: 0.5em;
}

.jumbotron-form button {
	background: #d8b74b;
	outline: none;
	width: 80%;
	padding: 0.5em;
	border-radius: 5px;
	cursor: pointer;
	color: white;
	border: none;
}

/* Beginning of enjoy your stay section */
.enjoy-container {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.enjoy-header {
	width: 80%;
	margin: 1em auto;
}
.enjoy-header h1 {
	padding-top: 2em;
}
.enjoy-header > p {
	width: 40%;
}
.enjoy-services {
	display: flex;
	flex-direction: row;
	width: 80%;
	margin: 1em auto;
	margin-bottom: 5em;
	/* border: 1px solid black; */
}
.enjoy-services h2 {
	margin-bottom: 1em;
}
.first-col {
	/* border: 1px solid black; */
	flex: 1;
	margin-right: 2em;
}
.sec-col {
	/* border: 1px solid black; */
	flex: 1;
	margin-right: 2em;
}
.third-col {
	/* border: 1px solid black; */
	flex: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.upper,
.lower {
	padding-left: 2em;
	margin-bottom: 2em;
	position: relative;
}
.enjoy__clock-icon,
.enjoy__fitness-icon,
.enjoy__wifi-icon,
.enjoy__coffee-icon {
	position: absolute;
	top: 0px;
	left: -13px;
}

.enjoy__play-icon {
	position: absolute;
	cursor: pointer;
}

/* End----------------------- */

/* Beginning of simplicity is our watch word section styling */
.special-offers {
	padding: 0 0 80px;
}

.offers-title {
	font-size: 165%;
	margin: 25px 0 15px;
}

.offers-sub-title {
	font-size: 18px;
	color: #3b331a;
	font-weight: 300;
	margin-bottom: 20px;
}

.offers-list {
	list-style: none;
	margin-bottom: 30px;
}

.offers-list li {
	margin: 12px 0;
}

.list-icon {
	height: 17px;
	vertical-align: middle;
	margin-right: 5px;
}

.list-text {
	display: inline-block;
}

.btn {
	border-radius: 3px;
	border: 1px solid #d4af37;
	text-transform: uppercase;
	font-size: 55%;
	padding: 10px 18px;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.3s;
	margin-right: 10px;
}

.btn-fill {
	background-color: #d4af37;
	color: #fff;
}
.rates {
	border-radius: 5px;
}

.rates:active,
.rates:hover {
	background-color: #c9a633;
	border: 1px solid #c9a633;
}

.btn-fill:hover,
.btn-fill:active {
	background-color: #c9a633;
	transform: translateY(-3px);
	border: 1px solid #c9a633;
}

.btn-ghost {
	color: #d4af37;
	background-color: #fff;
}

.btn-ghost:hover,
.btn-ghost:active {
	background-color: #d4af37;
	color: #fff;
}

.btn-large {
	font-size: 16px;
	width: 133px;
	padding: 12px 22px;
	border-radius: 4px;
}

/* End----------------------------*/

/* Beginning of client review section styles */
/*.review-container {
	width: 80%;
	margin: 1em auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}*/
.review-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.review-header > p {
	text-align: center;
}
.cards-container {
	display: flex;
	margin-top: 2em;
	margin-bottom: 4em;
}
.card {
	flex: 1;
	border: 1px solid rgb(158, 158, 158);
	min-height: 40vh;
	margin-right: 2em;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1em 1em 1em 1em;
	line-height: 1.5em;
}
.card-title {
	font-size: 25px;
}
.card-avi {
	width: 30%;
	margin: 2em 0;
}
.card-subtitle {
	margin-bottom: 1em;
}
.card-desc {
	font-size: 18px;
	font-weight: 300;
}

/* End----------------------------------------- */

/* @media queries */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.image-col {
		margin: auto;
	}
	.jumbotron-container {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}

	.jumbotron-left {
		padding: 1rem;
		margin-top: 1rem;
	}

	.jumbotron-header {
		font-size: 30px;
		text-align: center;
	}

	.jumbotron-header br {
		display: none;
	}

	.enjoy-services {
		flex-direction: column;
	}
	.enjoy-header,
	.enjoy-container,
	.enjoy-header h1 {
		text-align: center;
	}
	.enjoy-header > p {
		width: 100%;
	}
	/* Enjoy section icons for mobile */
	.enjoy__clock-icon,
	.enjoy__fitness-icon,
	.enjoy__wifi-icon,
	.enjoy__coffee-icon {
		position: unset;
		padding: 0.5rem;
	}
	.page-header {
		text-align: center;
		padding: 1rem;
		font-size: 30px;
	}
	.cards-container {
		flex-direction: column;
	}
	.card {
		margin-bottom: 1em;
	}
	.page-header:after {
		margin: 0.5em auto 0 auto;
		height: 2px;
	}

	.page-header-container {
		margin-bottom: 10px;
	}
	.btn-large {
		margin-bottom: 1em;
		margin: auto;
		font-weight: 700;
		font-size: 77%;
		padding: 15px 27px;
	}

	.horizontal {
		margin: 1em auto 2em auto;
	}
	.jumbotron-form {
		width: 90%;
		margin: 1em auto;
		padding: 1em 0.5em;
	}

	.jumbotron-form h3 {
		font-size: 20px;
		text-align: center;
	}
	.jumbotron-form p {
		font-size: 17px;
	}

	.jumbotron-form p br {
		display: none;
	}
	.jumbotron-left p {
		font-size: 18px;
		width: 100%;
		text-align: center;
		margin-bottom: 1em;
	}

	.jumbotron-right .jumbotron-left,
	.jumbotron-right {
		flex: 1;
	}
	.jumbotron-form button {
		margin-bottom: 1em;
	}

	.enjoy-services {
		margin-bottom: 0.5em;
	}

	.special-offers {
		padding: 0 0 35px;
	}

	.enjoy__play-icon {
		z-index: 2;
		width: 4rem;
		opacity: 0.9;
		height: 4rem;
	}

	.page-header,
	.enjoy-heading {
		text-transform: capitalize;
		text-align: center;
	}

	.horizontal {
		height: 2px;
		width: 39%;
	}

	.enjoy-heading {
		margin-top: 20px;
		font-size: 30px;
	}

	.enjoy-heading br {
		display: none;
	}

	.first-col,
	.sec-col {
		margin-right: unset;
	}

	.upper,
	.lower {
		padding-left: unset;
	}

	.third-col {
		order: -1;
		margin-bottom: 1rem;
	}

	.third-col-video {
		width: 100%;
		filter: drop-shadow(2px 4px 6px black);
	}

	.side-by-side-container {
		flex-direction: column;
	}

	.stacked-image-container {
		flex-direction: row;
	}

	.offers-sub-title {
		padding: 1rem;
	}

	.offers-sub-title br {
		display: none;
	}

	.offers-list {
		margin-left: 1.5rem;
	}

	.centered {
		margin: auto;
		display: block;
		width: 50%;
		text-align: center;
	}

	.img-hide {
		display: none;
	}
	.review-title {
		text-align: center;
		font-size: 30px;
	}

	.card {
		width: 100%;
	}

	.card-avi {
		width: 30%;
		display: block;
		margin: 1.5rem auto;
	}

	.card-title,
	.card-subtitle {
		width: 100%;
		text-align: center;
	}

	.card-subtitle {
		font-weight: 300;
	}
}

@media only screen and (max-width: 320px) {
	.small-image {
		display: none;
	}

	.large-image {
		width: 100%;
		object-fit: cover;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 700px) {
	.jumbotron-container {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}
	.btn-large {
		margin: 0.5em auto 1em 1em;
	}
	.jumbotron-form {
		width: 100%;
		margin: 1em auto;
		padding: 1em 0.5em;
	}
	.enjoy-header,
	.enjoy-container,
	.enjoy-header h1 {
		text-align: center;
	}
	.enjoy-header > p {
		width: 100%;
	}
	.enjoy-services {
		flex-direction: column;
	}

	.page-header {
		padding: 0 100px 0 100px;
	}

	.card {
		margin-bottom: 1em;
	}
	.page-header:after {
		margin: 0.5em auto 0 auto;
	}
	.btn-large {
		margin-bottom: 1em;
	}
	.jumbotron-left h1 {
		font-size: 50px;
		margin-top: 1em;
	}
	.horizontal {
		margin: 1em auto 2em auto;
	}
}
@media only screen and (min-width: 700px) {
	.jumbotron-form {
		margin: 1em 0;
	}
	.jumbotron-form h3 {
		padding-top: 1em;
		font-size: 25px;
		text-align: center;
	}
	.jumbotron-form p {
		font-size: 18px;
	}

	.rates {
		margin-bottom: 1em;
	}
}
@media only screen and (min-width: 954px) {
	.jumbotron-container {
		width: 100%;
		flex-direction: row;
		align-items: center;
	}
	.enjoy-services {
		flex-direction: row;
	}
}
/*jc*/
.subscription{
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/skynile/waterfall.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.9;
   /* min-height: calc(100vh - 12vh);*/
    display: flex;
    color: white;
}

section{
	padding-bottom:30px;
}
.carousel-caption{
	padding-bottom: 5%!important;
}
.carousel-caption h1 {
    font-size: clamp(24px, 7vw, 70pt); /* Adjusts based on screen size */
    text-shadow: 0 0 3px #000;
    font-weight: bold;
    
}




/* Mobile Navigation */
@media (max-width: 768px) {
    .header-nav-lists {
        position: absolute;
        top: 60px;
        right: 0; /* Aligns menu to the right */
        width: 250px; /* Set menu width */
        background: white;
        flex-direction: column;
        text-align: right; /* Aligns text to the right */
        padding: 10px 15px;
        display: none; /* Initially hidden */
        z-index: 999; /* Ensures it stays above the logo */
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1); /* Adds shadow effect */
    }

    .header-nav-list {
        padding: 15px;
    }

    .header-hamburger-icon {
        display: flex;
        margin-left: auto; /* Pushes hamburger to the right */
    }

    /* Show menu when active */
    .header-nav-lists.active {
        display: flex;
    }
}


/* Fix Bootstrap 3 Carousel Image Size */
.carousel-inner > .item > img {
    width: 100% !important; /* Ensure full width */
    height: 720px !important; /* Force height */
    object-fit: cover !important; /* Ensure the image covers the area */
    object-position: center !important; /* Center the image */
}

/* Make it responsive for different screen sizes */
@media (max-width: 1024px) {
    .carousel-inner > .item > img {
        height: 600px !important;
    }
}

@media (max-width: 768px) {
    .carousel-inner > .item > img {
        height: 450px !important;
    }
}

@media (max-width: 480px) {
    .carousel-inner > .item > img {
        height: 300px !important;
    }
}

/* Ensure the images fit correctly */
.carousel-inner .item img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center;
}

/* Center the caption */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Container for text */
.caption-content {
    width: 80%;
    text-align: center;
	margin-right:-65%
}

/* Headings */
.main-heading {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 28px;
    font-weight: normal;
    color: white;
    margin-bottom: 20px;
}

/* Check Availability Button */
.check-availability-btns {
    background-color: darkred;
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 30px;
    
    border: none;
    transition: 0.3s;
}

.check-availability-btns:hover {
    background-color: lightblue;
    color: black;
}

/* Transparent buttons */
.local-attractions-btn,
.accommodations-btn {
    background-color: transparent;
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border: 2px solid white;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.local-attractions-btn:hover,
.accommodations-btn:hover {
    background-color: white;
    color: black;
}


/* 📌 Responsive Styles */
@media (max-width: 1024px) { /* Tablets */
    .main-heading {
        font-size: 40px;
    }
    .sub-heading {
        font-size: 22px;
    }
    .check-availability-btns,
    .local-attractions-btn,
    .accommodations-btn {
        font-size: 16px;
        padding: 10px 18px;
    }
}

@media (max-width: 768px) { /* Mobile Devices */
    .carousel-inner .item img {
        height: 500px; /* Reduce height */
    }
    
    .carousel-caption {
        top: 45%;
        transform: translate(-50%, -45%);
    }

    .main-heading {
        font-size: 32px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .check-availability-btns,
    .local-attractions-btn,
    .accommodations-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) { /* Small Phones */
    .carousel-inner .item img {
        height: 400px; /* Further reduce height */
    }
    
    .carousel-caption {
        top: 40%;
        transform: translate(-50%, -40%);
    }

    .main-heading {
        font-size: 24px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .check-availability-btns,
    .local-attractions-btn,
    .accommodations-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}



/* Button Container */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Space between buttons */
    margin-top: 25%; /* Moves the buttons lower */
}

/* Common Button Styles */
.availabilitys-btn, .book-now-btn {
    padding: 12px 20px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
    min-width: 250px;
    text-align: center;
}

/* Check Availability & Pricing Button */
.availabilitys-btn {
    background-color: darkred;
    color: white;
}

.availabilitys-btn:hover {
    background-color: lightblue;
    color: black;
}

/* Book Now Button */
.books-now-btn {
    background-color: white;
    color: black;
    border-radius: 20px;
	padding: 7px;
	width:auto;
}

.books-now-btn:hover {
    color: darkred;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .button-container {
        width: 100%;
        padding: 0 10px;
    }

    .availabilitys-btn, .books-now-btn {
        min-width: 70%;  /* Reduced width for better fit */
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .availabilitys-btn, .books-now-btn {
        font-size: 14px;
        padding: 8px 12px;
        min-width: 30%;  /* Further reduced width for smaller screens */
    }
}


/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    #para {
        font-size: 16px; /* Reduce font size for small screens */
        padding: 0px 20px; /* Reduce padding */
        width: 90%; /* Make it take more width */
    }
}

@media screen and (max-width: 480px) {
    #para {
        font-size: 14px; /* Even smaller font for very small screens */
        padding: 0px 10px;
        width: 100%;
    }
}








