/* Lander Prince Edward */
:root {
	--dark:#71684b;
	--medium:#918662;
	--light:#eae5d0;
	--yellow:#edc225;
	--beige:#f0d1a3;
	--earth:#eee9d5;
	--red: #ff3838;
	--white: #ffffff;
	--black: #000000;
	--grey:#ededed;
	--darkgrey:#969696;
}

*{
	margin:0; padding:0;
	box-sizing: border-box;
	font-family: 'Noto Sans TC', 'Nanum Gothic', 'El Messiri', sans-serif;
	/* text-transform:capitalize; */
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p{
	margin: 0;
	padding: 0;
}

p{
	font-family: 'Nanum Gothic', sans-serif;
	margin: 0 0 1em 0;
	font-size: 93%;
	line-height: 1.5em;
}

body, html {
	font-family: 'Nanum Gothic', sans-serif;
	padding: 0;
	margin: 0;
	height: 100%;
}

.container{
	width:80%;
	margin: auto;
}

img{
	max-width: 100%;
	height: auto;
	margin: 0 0 10px 0;
}

.title-dark{
	margin:5px;
	text-align:center;
}

.title-dark h1{
	font-family: 'El Messiri', sans-serif;
	font-size:28px;
	font-weight:200;
	line-height:1em;
	color:var(--dark);
	letter-spacing: 1.2px;
	margin-bottom:15px;
}

/* title line (dark) */
.title-dark h1:before,
.title-dark h1:after {
    background-color:var(--dark);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 5%;
}

.title-dark h1:before {
    right: 0.5em;
    margin-left: -50%;
}
.title-dark h1:after {
    left: 0.5em;
    margin-right: -50%;
}
/* title line (dark) */

.title-light{
	margin:5px;
	text-align:center;
}

.title-light h1{
	font-family: 'El Messiri', sans-serif;
	font-size:28px;
	font-weight:200;
	line-height:1em;
	color:var(--white);
	letter-spacing: 1.2px;
	margin-bottom:15px;
}

/* title line (light) */
.title-light h1:before,
.title-light h1:after {
    background-color:var(--white);
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 5%;
}

.title-light h1:before {
    right: 0.5em;
    margin-left: -50%;
}

.title-light h1:after {
    left: 0.5em;
    margin-right: -50%;
}
/* title line (light) */

.title p{
	font-family: 'Nanum Gothic', sans-serif;
	font-size:16px;
	font-weight:300;
	margin: 0 0 1em 0;
	line-height: 1.2em;
	color:var(--black);
	letter-spacing: 1.5px;
}

/* ADD cover photo NEW */
#cover-pic{
	/* min-height:100px; */
	height:30%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding:40px 0px 40px 0px;
	margin-top:100px;
}

#cover-pic .title{
	position: absolute;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 9;
}

#cover-pic .title h1{
	color: var(--white);
	margin-bottom: 20px;
	font-size: 32px;
	font-weight:100;
	text-shadow: 2px 2px 2px #000000; /* text shadow */
	margin-top: 100px;
}
/* ADD cover photo NEW */


/* About Us */
#aboutus{
	min-height:100px;
	/* height:50%; */
	background: var(--dark);
	padding:20px 0px 20px 0px;
	/* overflow: hidden; */
}

#aboutus .grid-1{
  	margin: auto;
	width: 100%;
	background:var(--grey);
	padding: 20px;
	margin-top:5px;
	border:5px solid var(--yellow);
}

#aboutus .title-box {
	position: relative;
	margin: auto;
	top: -50px;margin: auto;
	width: 50%;
	text-align:center;
	background-color:var(--medium);
	color:var(--white);
	padding:8px 20px;
}

#aboutus ul{
	padding: 0;
	margin: 0;
}

#aboutus ul li{
	list-style: none;
	display: inline-block;
	color: var(--black);
	font-size: 14px;
	font-weight: 400;
	line-height:1.5em;
	margin: 0px 0px 20px 0px;
	letter-spacing: 1px;
}

#aboutus h2{
	font-size: 20px;
	font-weight: 100;
	line-height:1.5em;
	letter-spacing:1px; /*for ENG-version only*/
	text-transform:capitalize;
	color:var(--white);
}

#aboutus h3{
	font-size: 16px;
	font-weight: 100;
	line-height:1.5em;
	letter-spacing:1px;
	text-transform:capitalize;
	color:var(--light);
	margin-bottom:30px;
}

#aboutus p{
	color: var(--black);
	font-size: 16px;
	font-weight: 350;
	line-height: 150%;
	letter-spacing: 1px; /*for ENG-version only*/
}

#aboutus hr{
	color:var(--yellow);
	opacity:0.2;
	margin:30px 0px;
}
/* About Us */

.card-v-grid{
	width: auto;
	position: relative;
	background: var(--white);
	overflow: hidden;
	margin-bottom: 20px;
}

.card-v-grid-image{
	width: 100%;
	height: 380px;
	overflow: hidden;
}

.card-v-grid-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}

/* hover effect "FOR ROOMS SECTION" */
#rooms .card-v-grid-image img:hover{
	opacity:1;
	transform: scale(1.2, 1.2);
	transition: .5s;
}
/* hover effect */

.card-v-grid-box {
	display: block;
	position: absolute;
	text-align: center;
	background: #26ccca;
	left: -80px;
	top: 15px;
	padding: 10px;
	transition: .5s;
}

.card-v-grid-box h1 {
	color: #fff;
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 2px;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	margin-bottom: 5px;
}

.card-v-grid-box p{
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0px;
}

.card-v-grid-txt {
	padding:10px 25px 25px 25px;
}

.card-v-grid-txt span {
	color: var(--dark);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.card-v-grid-txt h2 {
	color: var(--medium);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	margin: 0px 0px 5px 0px;
}

.card-v-grid-txt ul{
	padding: 0;
	margin: 0;
}

.card-v-grid-txt ul li{
	list-style: none;
	display: inline-block;
	color: var(--black);
	font-size: 14px;
	font-weight: 400;
	margin: 0px 10px 10px 0px;
	letter-spacing: 1px;
}

.card-v-grid-txt ul li i{
	color: var(--black);
	font-size: 14px;
	margin-right: 5px;
}

.card-v-grid-txt p{
	color: var(--black);
	font-size: 16px;
	font-weight: 350;
	line-height: 150%;
	letter-spacing: 1.3px;
}

.card-v-grid-txt .btn {
	color: #fff;
	background: var(--medium);
	padding: 8px 20px;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform:uppercase;
}

.card-v-grid-txt .btn:hover {
	text-decoration-line: none;
	background: var(--yellow);
	transition: .2s;
}
/* --- END OF vertical card -- */


/* -- horizontal card -- */
.card-h-wrap{
	display:flex;
	flex-direction:column;
	width:100%;
	margin:auto;
}

.card-h-grid{
	display:flex;
	width: auto;
	position: relative;
	background: var(--white);
	overflow: hidden;
	margin-top: 10px;
}

.card-h-grid-image{
	width:500px;
	flex: 1 1 0;
}

.card-h-grid-image img {
	min-width:100%;
	min-height:100%;
	object-fit: cover;
	transition: .5s;
}

.card-h-grid-txt {
	padding: 20px 25px;
	flex: 2 1 0;
}

/* --Nearby:name-- */
.card-h-grid-txt h2 {
	color: var(--dark);
	font-size: 24px;
	font-weight: 500;
	letter-spacing:1px;
	margin: 0px 0px 15px 0px;
	opacity:0.8;
}

/* --Nearby:distance-- */
.card-h-grid-txt h3 {
	color: var(--dark);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0px 0px 5px 0px;
	opacity:0.8;
}

/* --Nearby:content-- */
.card-h-grid-txt p{
	color: var(--black);
	font-size: 16px;
	font-weight: 350;
	line-height: 150%;
	letter-spacing: 1.3px;
}

/* --Nearby:bullets-- */
.card-h-grid-txt i {
	margin-right:5px;
}
/* -- END OFhorizontal card -- */


/* owl-carousel dot colors */
.owl-carousel span {
    width:15px !important;
    height:15px !important;
    margin:5px 7px;
    background:var(--darkgrey) !important;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px;
}

.owl-carousel .active span {
    width:10px;
    height:10px;
    margin:5px 7px;
    background: var(--yellow) !important;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px;
}
/* END OF owl-carousel dot colors */


#slide{
	font-family: 'Ubuntu', sans-serif;
	margin: 0;
	height: 100%;	
}

/* News */
#news{
	background: var(--earth);
	padding:30px 0px 20px 0px;
}

/* Rooms */
#rooms{
	background-image:url(../images/rooms-bg1.png);
	background-repeat: repeat;
	padding:20px 0px 20px 0px;
}

/* Section - Location */
#location{
	min-height:100px;
	background:var(--earth);
	margin:0;
	padding:20px 0px 0px 0px;
}

/* Section - Nearby */
#nearby{
	min-height:100px;
	background:var(--earth);
	margin:0;
	padding:5px 0px 10px 0px;
}

/* Section - Partner */
#partner{
	min-height:100px;
	background: var(--medium);
	margin:0;
	padding-top:30px;
}

#partner img{
	max-width:100%;
	padding:0px 50px 30px 50px;
}

/* Section - Footer */
#footer{
	min-height:100px;
	background: var(--light);
	font-weight:400;
	line-height:1.8;
	color:var(--medium);
	padding:40px 0px 30px 0px;
}

#footer .column {
  float: left;
  width: 33.33%;
  padding: 20px;
  margin-bottom:30px;
  height: 300px;
}

#footer .row:after {
  content: "";
  display: table;
  clear: both;
}

#footer h2{
	font-family: 'El Messiri', sans-serif;
	font-size:30px;
	font-weight:200;
	line-height:1.2em;
	color:var(--medium);
	letter-spacing: 1.2px;
	margin-bottom:10px;
}

#footer ul{
	list-style: none;
	float: left;
	line-height:1.5;
	padding:0;
	margin:0px;
	margin-bottom:30px;
}

#footer ul li a{
	color:var(--medium);
	font-weight:400;
	line-height:1.5;
	text-decoration:none;
}

#footer ul li a:hover{
	color: var(--yellow);
}


/* Footer Table content - NEW */
#footer ul table tr li{
	color:var(--medium);
	font-size:16px;
	font-weight:400;
	letter-spacing:normal;
	line-height:1.5;
	text-decoration:none;
}
/* Footer Table content - NEW */


/* Social Media Icons */
#footer .social-item{
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 125px;
	margin-right: 20px;
}

#footer .social-list{
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 125px;
	margin: 0 auto;
}

#footer .social-link{
	color: var(--medium);
	/* opacity: 0.5; */
	font-size: 4rem;
	margin-right:10px;
}

#footer .social-link:hover,
.social-link:focus{
	color: var(--yellow);
	opacity: 1;
	transition: .75s;
}

#copyright{
	color: var(--darkgrey);
	background: var(--black);
	margin:0;
	padding:5px 0px 1px 0px;
}

/* Section - Gallery */
#gallery{
	background-image:url(../images/rooms-bg1.png);
	background-repeat: repeat;
	padding:170px 0px 20px 0px;
	overflow: hidden;
}

#gallery .grid-1{
 	flex-direction: column;
  	width: 28%;
	float:left;
	background:var(--white);
	padding: 20px;
	margin-top:5px;
	margin-right:15px;
	min-height: 920px;
	border:5px solid var(--yellow);
}

#gallery .title-box {
	position: relative;
	top: -40px;
	left: -50px;
	background-color:var(--medium);
	color:var(--white);
	padding:8px 20px;
}

#gallery .grid-2{
	display: flex;
 	flex-direction: row;
  	flex-wrap: wrap;
  	width: 70%;
}

/* For facilities */
#gallery .grid-3{  
	display: flex;
 	flex-direction: row;
  	flex-wrap: wrap;
  	width: 100%;
}
/* For facilities */

#gallery .grid-column{
	/* flex: 25%; */
	width: 50%;
	padding:5px;
}

#gallery .grid-image{
    position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

#gallery .grid-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}

#gallery .banner {
	background-color: rgba(145, 134, 98, 1); /* --medium-- */
	position: absolute;
	bottom: 0;             
	color: var(--white);
	width: 100%;
	/* font-size: 18px; */
	padding: 15px;
	/* text-align: center; */
	opacity: 0;            
	transition: 0.6s;
}

#gallery .caption {
	background-color: rgba(113, 104, 75, 0.8); /* --dark-- */
	position: absolute;
	/* bottom: 10px;  */ 
	top:0;    
	color: var(--white);
	width: 100%;
	font-size: 18px;
	letter-spacing:0.1em;
	padding: 5px 15px;
	/* text-align: center; */
	/* opacity: 0; */           
	transition: 0.6s;
}

#gallery .grid-image img:hover{
	opacity:1;
	transform: scale(1.2, 1.2);
	transition: .5s;
}

#gallery .grid-image:hover .banner {
	opacity: 1; /*becomes visible on hover*/    
}

/* table NEW */
#gallery th, td {
	/* padding: 2px; */
	text-align: left;
	list-style: none;
	color: var(--black);
	font-size: 14px;
	font-weight: 400;
	line-height:1.5em;
	padding: 0px 0px 10px 0px;
	letter-spacing: 1px;
	vertical-align: text-top;
}
/* table NEW */

#gallery ul{
	padding: 0;
	margin: 0;
}

#gallery ul li{
	list-style: none;
	display: inline-block;
	color: var(--black);
	font-size: 14px;
	font-weight: 400;
	line-height:1.5em;
	margin: 0px 0px 10px 0px;
	letter-spacing: 1px; /*for ENG-version only*/
}

#gallery h2{
	font-size: 20px;
	font-weight: 100;
	line-height:1.5em;
	letter-spacing:1px; /*for ENG-version only*/
	text-transform:capitalize;
	color:var(--white);
}

#gallery h3{
	font-size: 16px;
	font-weight: 100;
	line-height:1.5em;
	letter-spacing:1px;
	text-transform:capitalize;
	color:var(--dark);
	margin-bottom:10px;
}

#gallery p{
	color: var(--black);
	font-size: 16px;
	font-weight: 350;
	line-height: 150%;
	letter-spacing:1px; /*for ENG-version only*/
	margin-top:-25px;
}

#gallery hr{
	color:var(--yellow);
	opacity:0.2;
	margin:15px 0px;
}