/*
 ======================================================================================================
 
    @VERSION			: 1.1.2
    @CREATED			: 20 AUG 2019
    @MODIFIED			: 22 OCT 2024
    @DESIGNER			: Daniel C. K. Tan (danielcktan[at]gmail.com)
	@DESIGNER URI		: <https://www.danielcktan.design>
    
    @FILE				: ~/css/user.css
	@TYPE				: Style Sheet
	@DESCRIPTION		: Custom Stylesheet for CMS Template
	   
 ======================================================================================================
 
	CONTENT
	------------------------------------------------------------------------------------------------------
	#00 VARIABLES STYLES
	#01 BASE STYLES
	#02 SITE COMPONENTS STYLES 
 
  ======================================================================================================
*/

/* ----------------------------------------------------------------------------------------------------
   #00 ROOT STYLES 
/* ----------------------------------------------------------------------------------------------------*/
:root{
	/* FONT FAMILY */
	--base-fnt-family-primary	: 'Questrial', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', SimHei, STHeiti, sans-serif;
	--base-fnt-family-secondary	: 'Questrial', 'Helvetica Neue', Helvetica, Arial, 'Microsoft YaHei', SimHei, STHeiti, sans-serif;
	
	/* BRANDING COLOURS */
	--brand-col-primary				: var(--base-col-primary);
	--brand-col-primary-light		: var(--base-col-primary-light);
	--brand-col-primary-dark		: var(--base-col-primary-dark);
	--brand-col-primary-darker		: var(--base-col-primary-darker);
	--brand-col-secondary			: var(--base-col-secondary);
	--brand-doc-background-color	: var(--base-col-body-background);
	--brand-doc-link-color			: var(--base-col-link);
	--brand-doc-link-hover-color	: var(--base-col-link-hover);
	--brand-doc-select-background	: var(--base-col-primary-light);
	--brand-doc-select-text			: var(--base-col-body-text);
	--brand-doc-font-color			: var(--base-col-body-text);
	
	/* HEADER */
	--brand-header-bkg	: var(--base-col-secondary);
	--brand-header-text	: var(--base-col-white);
	
	/* BUTTONS */
	--brand-btn-primary				: var(--base-col-primary);
	--brand-btn-primary-hover		: var(--base-col-primary-dark);
	--brand-btn-primary-txt-col		: var(--base-col-white);
	--brand-btn-primary-txt-col-hvr	: var(--base-col-white);
}



/* ----------------------------------------------------------------------------------------------------
   #01 BASE STYLES 
/* ----------------------------------------------------------------------------------------------------*/

/* Document Styles
/* ----------------------------------------------------------------------------------------------------*/
body {    
	background-color: var(--brand-doc-background-color);
	color: var(--brand-doc-font-color);
	font-family: var(--font-family-body);	
	font-size: var(--base-fnt-size-body);
	font-weight: var(--font-weight-body);
}


/* Link Styles
/* ----------------------------------------------------------------------------------------------------*/
a { color: var(--brand-doc-link-color); transition: all .2s ease-in-out; }
a:hover, a:focus, a:active, a.active { color: var(--brand-doc-link-hover-color); outline: 0; text-decoration: none; }


/* Headings Styles
/* ----------------------------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 { font-family: var(--font-family-heading); font-weight: var(--font-weight-heading); color: inherit; letter-spacing: -0.3px; }

h1, h2,
.h1, .h2 { text-transform: uppercase; }

h3, h4, h5, h6,
.h3, .h4, .h5, .h6 { text-transform: capitalize; }

h1, .h1 { font-size: var(--base-fnt-size-h1); }
h2, .h2 { font-size: var(--base-fnt-size-h2); }
h3, .h3 { font-size: var(--base-fnt-size-h3); }
h4, .h4 { font-size: var(--base-fnt-size-h4); }
h5, .h5 { font-size: var(--base-fnt-size-h5); }
h6, .h6 { font-size: var(--base-fnt-size-h6); }


/* Buttom Styles
/* ----------------------------------------------------------------------------------------------------*/
.btn { font-family: var(--font-family-heading); font-weight: var(--font-weight-subheading); }


/* Paragraph Styles
/* ----------------------------------------------------------------------------------------------------*/
p { font-size: var(--base-fnt-size-body); }	



/* ----------------------------------------------------------------------------------------------------
   #02 LAYOUT STYLES 
/* ----------------------------------------------------------------------------------------------------*/

/* Main Navbar Styles
/* ----------------------------------------------------------------------------------------------------*/
#mainNav { background-color: var(--brand-col-primary); }

#mainNav.navbar-scrolled { background-color: var(--brand-col-primary); }

#mainNav .nav-item .nav-link  { color: #FC0; font-family: var(--font-family-heading); font-weight: var(--font-weight-subheading); padding: 1rem 1rem; }
#mainNav .nav-item .nav-link:hover, 
#mainNav .nav-item .nav-link:focus { color: #FC0; font-weight: 600; text-decoration: none; }
#mainNav .nav-item .nav-link.active { color: #ff9933 !important; font-weight: 600; text-decoration: none; }

#mainNav.navbar-scrolled .nav-link:hover, 
#mainNav.navbar-scrolled .nav-link:active, 
#mainNav.navbar-scrolled .nav-link:visited { color: #FC0;   }

#mainNav .dropdown-menu li .dropdown-item { font-family: var(--font-family-body); font-weight: var(--font-weight-body); }

@media (max-width: 1199px) {
	/* On Mobile Devices */	
	#mainNav .navbar-collapse .navbar-nav .nav-link { color: #FC0; }
	
	#mainNav .dropdown-menu li .dropdown-item,
	#mainNav .dropdown-menu li .dropdown-item:active,
	#mainNav .dropdown-menu li .dropdown-item:hover,
	#mainNav .dropdown-menu li .dropdown-item:focus { color: #fff; }
}


@media (min-width: 1200px) {
	/* On Desktop Devices */
	#mainNav .dropdown-menu li .dropdown-item:hover,
	#mainNav .dropdown-menu li .dropdown-item:focus { color: #ff6600; }
}													 


/* Menu Brand/Logo
/* ----------------------------------------------------------------------------------------------------*/
#mainNav .navbar-brand {
	padding: 0.5rem 0;
	color: #fff;
  }

#mainNav .navbar-brand img {
	max-height: 85px;
	height: 85px;
	transition: all .2s ease-in-out;
  }


/* Section Styles
/* ----------------------------------------------------------------------------------------------------*/
section { width: 100%; padding-top: calc(5rem + 5px); padding-bottom: calc(5rem + 5px); }
section .page-section-heading { color: #0079c4; }


/* Page Header Styles
/* ----------------------------------------------------------------------------------------------------*/
.page-header {
	background-color: var(--brand-header-bkg);
	background-position: top right;
	background-repeat: no-repeat;
	color: var(--brand-header-text);
    position: relative;
}

.page-header::after {
    background: rgba(0,0,0,0.5);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }

.page-header > * { z-index: 99; }

.page-header h1 { color: #fff; font-size: 2.5rem; text-align: center; }


/* Page Content Header Styles
/* ----------------------------------------------------------------------------------------------------*/
.page-content h2 { font-size: 1.8rem; font-weight: 600; }
.page-content h3 { font-size: 1.6rem; font-weight: 600; }
.page-content h4 { font-size: 1.4rem; font-weight: 600; }
.page-content h5 { font-size: 1.2rem; font-weight: 600; }
.page-content h6 { font-size: 1.2rem; font-weight: 600; }


/* Pager Styles
/* ----------------------------------------------------------------------------------------------------*/
.pagenavigation { background-color: var(--brand-col-primary); }
.pager li .btn-pager { background-color: var(--brand-col-primary); border: 1px solid #fff; color: #fff; }
.pager li .btn-pager:hover { background-color: #f60; border: 1px solid #f60; color: #fff; }


/* Preloader Styles
/* ----------------------------------------------------------------------------------------------------*/
#preloader { background: var(--brand-col-primary) !important; }
#preloader:before { border: 6px solid var(--brand-col-primary)) !important; }


/* Scroll Progress Bar Styles
/* ----------------------------------------------------------------------------------------------------*/
/* The progress bar (scroll indicator) */
.page-scroll-progress-bar { background: #FF6600; } 


/* Back to Top
/* ----------------------------------------------------------------------------------------------------*/
#toTop { background: var(--brand-col-primary); }



/* -- Carousel Item -------------------------------- */	
@media (min-width: 996px) {
	.carousel-item { height: 100vh; }
}


/* -- Carousel Arrows -------------------------------- */	
#slider-arrows .carousel-control {
  opacity: 0.8;
  filter: alpha(opacity=80);
  background: none;
  height: 40px;
  width: 40px;
  top: 50%;
  margin-top: -60px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

#slider-arrows .carousel-control:hover,
#slider-arrows .carousel-control:focus { opacity: 1; filter: alpha(opacity=100); box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4); }

@media (max-width: 767px) {
  #slider-arrows .carousel-control { margin-top: -20px; }
}

#slider-arrows .arrow-right.carousel-control { right: 0; left: auto; }
#slider-arrows .arrow-left.carousel-control { left: 0; right: auto; }

#slider-arrows .carousel-control i {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 30px;
  line-height: 1.3em;
  padding: 0;
}

#slider-arrows .arrow-right.carousel-control i { padding-left: 4px; }


/* -- Carousel Indicators -------------------------------- */	
.carousel-indicators li.favslider-dark { background-color: #111; }
.carousel-indicators li.favslider-light { background-color: #ddd; }


/* -- Carousel Captions -------------------------------- */	
.carousel .carousel-caption {
  width: 100% !important;
  height: auto !important;
  left: 0;
  right: 0;
  top: auto;
  bottom: 120px;
  padding: 20px 50px;
}
.carousel .carousel-caption h3,
.carousel .carousel-caption  p { text-align: left; }

@media (min-width: 993px) {
  .carousel .carousel-caption { min-height: 150px !important; }
}

@media (max-width: 992px) {
  .carousel .carousel-caption { bottom: 80px; }
}

@media (max-width: 479px) {
  .carousel .carousel-caption { display: none; }
}

.carousel h3[id^="caption-title"],
.carousel h3[id*=" caption-title"] { font-style: normal !important; border: 0 none !important; padding: 0 !important; font-weight: normal; }

.carousel .carousel-caption.favslider-caption-transparent { background-color: transparent; }
.carousel .carousel-caption.favslider-caption-dark { background-color: rgba( 17,17,17, 0.7); text-shadow: none; }
.carousel .carousel-caption.favslider-caption-light { background-color: rgba( 255,255,255, 0.7); text-shadow: none; }



/* Card Styles
/* ----------------------------------------------------------------------------------------------------*/
.card {
    font-size: 1em;
    overflow: hidden;
    padding: 0;
    border: none;
    border-radius: .28571429rem;
    box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
}

.card-block {
    font-size: 1em;
    position: relative;
    margin: 0;
    padding: 1em;
    border: none;
    border-top: 1px solid rgba(34, 36, 38, .1);
    box-shadow: none;
}

.card-img-top {
    display: block;
    width: 100%;
    height: auto;
}

.card-title {
    font-size: 1.2em !important;
    font-weight: 700;
    line-height: 1.2857em;
}

.card-text {
    clear: both;
    margin-top: .5em;
    color: rgba(0, 0, 0, .68);
}

.card-footer {
    font-size: 1em;
    position: static;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: .75em 1em;
    color: rgba(0, 0, 0, .4);
    border-top: 1px solid rgba(0, 0, 0, .05) !important;
    background: #fff;
}


/* Contact Us Styles
/* ----------------------------------------------------------------------------------------------------*/
.pb-address .form-group { margin-left: 10px; margin-bottom: 0; }
.pb-address .col-form-label { margin-top: 0px; margin-bottom: 0px; padding-top: 0; padding-bottom: 10px; }
.pb-address .form-group [class|="col"] { margin-bottom: 0 !important; padding-bottom: 0 !important; }


/* Order / Reserve Tabs Styles
/* ----------------------------------------------------------------------------------------------------*/
.tab {}

.tab-order { 
	background:#333; 
	
	color:white;  
	font-size:1.5em; 
	text-align:center; 
	
	width:75px;
	height:75px; 
	
	padding: 5px;
	
	position:fixed; 
	top:60%;
	right:-5px; 
	z-index:9999;
	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.tab-order i { display: block; margin-top: 8px; }
.tab-order small { display: block; font-weight:300; font-size:0.65em; margin-top: 5px; }
.tab-order a { color: #fff; text-decoration: none; }

.tab-reserve { 
	background:#333; 
	
	color:white;  
	font-size:1.5em; 
	text-align:center; 
	
	width:75px;
	height:75px; 
	
	padding: 5px;
	
	position:fixed; 
	top:73%;
	right:-5px; 
	z-index:9999;
	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.tab-reserve i { display: block; margin-top: 8px; }
.tab-reserve small { display: block; font-weight:300; font-size:0.65em; margin-top: 5px; }
.tab-reserve a { color: #fff; text-decoration: none; }


/* foodorders
/* ----------------------------------------------------------------------------------------------------*/
.section.foodorders { background: url('../images/bkg-default.jpg') no-repeat center/cover; }
.section.foodorders h3 { margin-bottom: 50px; }


/* Food Delivery Logos
/* ----------------------------------------------------------------------------------------------------*/
.list-inline { padding-left: 0; list-style: none; margin-left: -5px; }
.list-inline > li { display: inline-block; padding-left: 5px; padding-right: 5px; margin-left: 0 !important; margin-bottom: 0 !important;   }

.food-delivery-logos { text-align: center !important; }
.food-delivery-logos ul.logo-list { margin: 0 auto !important; }
.food-delivery-logos ul.logo-list li { margin-bottom: 25px !important; }
.food-delivery-logos ul.logo-list li img { width: auto; height: 120px !important; }

@media only screen
and (max-width: 768px) {
	.food-delivery-logos ul.logo-list li { margin-bottom: 40px !important; }
}


/* Spotlight Styles
/* ----------------------------------------------------------------------------------------------------*/
.spotlight { background-color: #a28144; color: #fff; }

.spotlight h4 small { font-size: 70%; font-weight: 300 !important; }

.spotlight a,
.spotlight a:hover,
.spotlight a:visited { color: #fff; text-decoration: none; }

.spotlight h4 { color: #fff;  padding-bottom: 20px; font-size: 1.20em; }

.spotlight .hr-list { margin-left: 0; padding-left: 0; }
.spotlight .hr-list li {
	margin-bottom: 20px;
	padding-bottom: 20px;
	margin-left: 0;
	padding-left: 0;
	border-bottom: 1px solid rgba(238,238,238,0.3)
}

.spotlight .name { font-size: 0.95em; font-weight: 300; line-height: 30px; }
.spotlight .number { font-size: 1.55em; font-weight: 600; line-height: 30px; }
.spotlight .spotlight-wrapper.contact { padding-left: 25px; }

@media (max-width: 992px) {
	.spotlight .spotlight-wrapper.contact { padding-left: 0; }
}

#mc_embed_signup .btn-signup { background-color: #7a6133; color: #fff; }

.supporting-logos { margin-top: 50px; }
.support-logo { font-size: 0.8em; }
.enabling-mark { width: auto; height: 150px; transition: all .2s ease-in-out;  }


/* Footer Styles
/* ----------------------------------------------------------------------------------------------------*/
footer { background: #222; color: #fff; font-size: 0.8em; text-align: left; padding: 20px 0; }

footer .social-icons { text-align: right !important; }

@media (max-width: 991px) {
	footer { text-align: center; }
	
	footer .social-icons { text-align: center !important; margin-top: 15px;	}
}

footer .social-icons li { display: inline-block; margin-left: 20px; margin-bottom: 0; padding-left: 0; }

footer .social-icons li a {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #111111;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

footer .social-icons li a:hover { background: #990033; color: #fff; }

.copyright a, .copyright i { color: #fff; font-size: 0.8rem; text-align: left; }