/* ==========================================================================
   ClanAway – style.css
   Primary : #FF8C42  (orange)
   Accent  : #4ECDC4  (teal)
   ========================================================================== */

body {
	color: #333;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	-webkit-font-smoothing: antialiased;
}

#content_wrapper { overflow: hidden; }

.animated { visibility: hidden; }
.visible   { visibility: visible; }

.wide { padding-top: 100px; padding-bottom: 100px; }

h1, h2, h3, h4, h5, h6 {
	color: #222;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	margin-top: 0;
	margin-bottom: 10px;
}
h3 span { font-weight: 900; }

h3.title-h3 {
	font-size: 36px;
	line-height: 44px;
	font-weight: 400;
	margin-bottom: 0;
}
h3.title-h3:after {
	display: block;
	content: "";
	height: 2px;
	width: 50px;
	background: #4ECDC4;
	margin-top: 15px;
	margin-bottom: 30px;
	position: relative;
}

p { color: #333; font-size: 18px; line-height: 28px; font-weight: 300; }

ul { margin: 0; padding: 0; list-style: none; }

a { text-decoration: none; transition: all 250ms ease-in-out; }
a:hover { color: #444; text-decoration: none; }
a:focus  { outline: none; text-decoration: none; }

/* Buttons */
.btn {
	color: #4ECDC4;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: transparent;
	border: 2px solid #4ECDC4;
	padding: 12px 20px;
	margin-top: 20px;
	border-radius: 8px;
	transition: all 250ms ease-in-out;
}
.btn i { margin-left: 4px; }
.btn:hover { color: #fff; background-color: #4ECDC4; }
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus { outline: none; }

.img-responsive { display: inline-block; }

a.store { margin-right: 10px; }
a.store:last-child { margin-right: 0; }

/* Section title */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h3 { font-size: 36px; line-height: 44px; font-weight: 400; margin-bottom: 0; }
.section-title p  { color: #666; font-size: 20px; line-height: 28px; margin-top: 5px; padding: 0 18%; }


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.navbar-brand { height: 60px; padding: 15px; }

.navbar {
	padding: 20px 0;
	margin-bottom: 0;
	border-radius: 0;
	transition: all 350ms ease-in-out;
}
.navbar-fixed-top { background-color: transparent; }

.navbar-nav > li > a {
	color: #fff;
	font-size: 13px;
	line-height: 60px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	padding: 0 15px;
}
.navbar-nav > li > a:hover { color: #4ECDC4; background-color: transparent; }
.navbar-nav > li > a:focus { background-color: transparent; }

.navbar-nav > li > a.download {
	font-size: 13px;
	line-height: 26px;
	margin-top: 10px;
	padding: 5px 15px;
	margin-left: 5px;
	border: 2px solid #fff;
	border-radius: 8px;
}
.navbar-nav > li > a.download:hover {
	background-color: #444;
	color: #fff;
	border: 2px solid #444;
}

.scroll-fixed-navbar { padding: 0; background-color: #2d2d2d; border-bottom: none; }
.scroll-fixed-navbar .navbar-nav > li > a.download { background-color: #FF8C42; border-color: #FF8C42; }
.scroll-fixed-navbar .navbar-nav > li > a:hover { color: #FF8C42; }
.scroll-fixed-navbar .navbar-nav > li > a.download:hover {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}

.navbar-toggle {
	position: relative;
	float: right;
	background-color: transparent;
	padding: 10px;
	margin: 11px 30px 11px 0;
	border: 2px solid #fff;
	color: #fff;
}
.navbar-toggle .icon-bar { background-color: #fff; }


/* ==========================================================================
   INTRO  –  pure CSS gradient, no image file needed
   ========================================================================== */

#intro {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #b83227 0%, #FF8C42 38%, #4ECDC4 68%, #1a6b67 100%);
	padding-top: 150px;
	padding-bottom: 100px;
}

/* decorative blurred circles */
#intro::before {
	content: "";
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: rgba(255,255,255,0.07);
	top: -140px;
	right: -120px;
	pointer-events: none;
}
#intro::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255,255,255,0.055);
	bottom: -80px;
	left: -80px;
	pointer-events: none;
}

.intro-txt { margin-top: 40px; position: relative; z-index: 2; }

.intro-txt h2 {
	color: #fff;
	font-size: 58px;
	line-height: 64px;
	font-weight: 900;
	margin-bottom: 24px;
	text-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
.intro-txt p { color: rgba(255,255,255,0.92); font-size: 20px; line-height: 30px; }

.intro-stores-badge { margin-top: 32px; }
.intro-stores-badge p {
	color: #fff;
	font-size: 15px;
	line-height: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

/* App icon in hero */
.intro-app-icon {
	display: block;
	margin: 0 auto 22px 0;
	width: 90px;
	border-radius: 20px;
	box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}

/* Fanned phone mockups */
.intro-phones {
	text-align: center;
	position: relative;
	z-index: 2;
	padding-top: 30px;
	padding-bottom: 20px;
}
.intro-phones img {
	width: 195px;
	border-radius: 28px;
	box-shadow: 0 18px 45px rgba(0,0,0,0.38);
	margin: 0 -8px;
	display: inline-block;
	vertical-align: bottom;
}
.intro-phones img:first-child { transform: rotate(-5deg) translateY(10px); }
.intro-phones img:last-child  { transform: rotate(5deg)  translateY(-10px); }

.appstore-button { height: 52px; }


/* ==========================================================================
   FEATURES
   ========================================================================== */

#features.wide { padding-bottom: 40px; }
.feature-boxes { padding: 0 20px; }
.feature-box { margin-bottom: 60px; position: relative; }

.feature-box-icon { text-align: center; float: left; }
.feature-box-icon i {
	width: 60px;
	height: 60px;
	color: #FF8C42;
	font-size: 50px;
	line-height: 50px !important;
	margin-top: 3px;
}

.feature-box-text { overflow: hidden; padding-left: 20px; }
.feature-box-text p { color: #666; padding-right: 10px; }


/* ==========================================================================
   ABOUT BANNER
   ========================================================================== */

#about { background-color: #FF8C42; }
#about h3.title-h3:after { background: rgba(255,255,255,0.6); }

.about-txt { text-align: center; max-width: 780px; margin: 0 auto; }
.about-txt h3, .about-txt p { color: #fff; }
.about-txt .btn {
	color: #fff;
	background-color: transparent;
	border-color: #fff;
}
.about-txt .btn:hover { color: #fff; background: rgba(0,0,0,0.25); border-color: rgba(0,0,0,0.0); }


/* ==========================================================================
   SCREENS / CAROUSEL
   ========================================================================== */

.owl-carousel .item { text-align: center; }
.owl-carousel .item img {
	max-height: 520px;
	width: auto;
	margin: 0 auto;
	border-radius: 22px;
	box-shadow: 0 8px 28px rgba(0,0,0,0.14);
	display: inline-block;
}

.customNavigation { margin-top: 24px; }
.customNavigation a {
	cursor: pointer;
	display: inline-block;
	padding: 6px 18px;
	font-size: 26px;
	line-height: 1.4;
	color: #FF8C42;
	border: 2px solid #FF8C42;
	border-radius: 6px;
	margin: 0 4px;
	transition: all 200ms ease;
}
.customNavigation a:hover { background-color: #FF8C42; color: #fff; }


/* ==========================================================================
   CALL TO ACTION
   ========================================================================== */

#call-to-action.wide {
	background: linear-gradient(135deg, #b83227 0%, #FF8C42 38%, #4ECDC4 68%, #1a6b67 100%);
}
#call-to-action h3 { font-size: 36px; margin-bottom: 10px; color: #fff; }
#call-to-action p  { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 30px; }
.stores-badge { margin-top: 10px; }


/* ==========================================================================
   FOOTER
   ========================================================================== */

#footer { background-color: #2d2d2d; padding-top: 40px; padding-bottom: 40px; }

.contact-socials { display: inline-block; margin: 0 8px; }
.contact-socials li { display: inline-block; }
.foo_link { color: #888; font-size: 14px; }
.foo_link:hover { color: #FF8C42; }

#footer p { color: #555; font-size: 14px; margin-top: 14px; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 992px) and (max-width: 1199px) {
	.intro-txt h2 { font-size: 46px; line-height: 54px; }
	.intro-phones img { width: 165px; }
	.section-title p { padding: 0 10%; }
}

@media only screen and (max-width: 991px) {
	.wide { padding-top: 80px; padding-bottom: 80px; }
	.intro-txt { margin-top: 20px; }
	.intro-txt h2 { font-size: 40px; line-height: 48px; }
	.intro-phones img { width: 145px; }
	.section-title p { padding: 0 5%; }
	.feature-boxes { padding: 0; }
}

@media only screen and (max-width: 767px) {
	.wide { padding-top: 60px; padding-bottom: 60px; }
	.intro-txt h2 { font-size: 34px; line-height: 40px; }
	.intro-phones { display: none; }
	.section-title p { padding: 0; }
	.intro-app-icon { margin: 0 auto 22px auto; }
}
