* {
	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;
}
h2 {
	font-size: 40px;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.col {
	padding: 5px;
	flex-wrap: nowrap;
}

.image-col {
	margin-right: 7%;
}

.image-col img {
	margin: 5px;
}

.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.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.9;
	min-height: calc(100vh - 12vh);
	display: flex;
	color: white;
}
@keyframes fallIn {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(20px);
    opacity: 1;
  }
  80% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.jumbotron-left {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10%;

  opacity: 0;
  transform: translateY(-50px);
}

/* This class triggers the animation */
.jumbotron-left.fall-animate {
  animation: fallIn 0.8s ease-out forwards;
}

.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;
	}
}
/* ...existing code... */

/* Admin Login Section Styling */
.admin-login-section {
  max-width: 400px;
  margin: 40px auto 0 auto; /* Raised higher on the page */
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.admin-login-section h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.admin-login-form {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: stretch;
}

.admin-login-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.admin-login-form input {
  padding: 0.7rem 1rem;
  border: 1px solid #d4af37;
  border-radius: 6px;
  font-size: 1rem;
  background: #faf9f6;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  margin-bottom: 0.2rem;
}

.admin-login-form input:focus {
  border-color: #bfa12e;
  background: #fffbe6;
}

.admin-login-form .rates {
  background: linear-gradient(90deg, #d4af37 0%, #bfa12e 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212,175,55,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;   /* Raised button up */
  margin-bottom: 0.5rem; /* Add bottom margin for spacing */
  width: 100%;
  align-self: center;
}

.admin-login-form .rates:hover,
.admin-login-form .rates:focus {
  background: linear-gradient(90deg, #bfa12e 0%, #d4af37 100%);
  box-shadow: 0 4px 16px rgba(212,175,55,0.15);
}

/* Add subtle animation for input focus */
@keyframes inputFocusGlow {
  0% { box-shadow: 0 0 0 0 #d4af37; }
  100% { box-shadow: 0 0 8px 2px #d4af37; }
}
.admin-login-form input:focus {
  animation: inputFocusGlow 0.3s;
}

/* Responsive */
@media (max-width: 600px) {
  .admin-login-section {
    max-width: 98vw;
    padding: 1.2rem 0.7rem;
    margin: 20px auto 0 auto;
    border-radius: 8px;
  }
  .admin-login-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .admin-login-form {
    max-width: 100%;
    gap: 1rem;
  }
  .admin-login-form input {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
  }
  .admin-login-form .rates {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
}
.contact-section {
  background-image: url('./img/contact.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 15px; /* add some padding for spacing */
}

/* ...existing code... */
.section {
  max-width: 700px;
  margin: 2em auto;
  padding: 2em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2em;
  text-align: center;
  margin-bottom: 1em;
  color: #222;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 1em;
}

.description {
  font-family: 'Merriweather', serif;
  font-size: 1.1em;
  text-align: justify;
  color: #444;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
  background: #dfe5d7;
  padding: 1.5em;
  border-radius: 8px;
  gap: 1.5em;
  justify-content: center;
}

.highlight-item {
  flex: 1;
  min-width: 220px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
  position: relative;
  padding-left: 25px; /* space for checkmark */
}

/* Add checkmark before each highlight item */
.highlight-item::before {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b8e23; /* olive/dark green */
  font-weight: bold;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .highlights {
    flex-direction: column;
  }
  .highlight-item {
    min-width: auto;
  }
}
