/*
	Theme Name: Vagabondo
	Theme URI: http://notkylehooper.com
	Description: Vagabondo
	Version: 1.0
	Author: Kyle Hooper
	Author URI: http://notkylehooper.com

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* add fonts */
@font-face {
    font-family: Verdana;  
    src: url(/wp-content/themes/vagabondo/fonts/verdana.ttf);  
    font-weight: normal;  
}
@font-face {
    font-family: Tempus;  
    src: url(/wp-content/themes/vagabondo/fonts/tempsitc.ttf);  
    font-weight: normal;  
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Verdana', Helvetica, Arial, sans-serif;
	color:#444;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
    color:#CE7725;
    text-decoration:none;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}
a:hover {
    color: #f9bb81;
    text-decoration: none;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:760px;
	margin:0 auto;
	position:relative;
}
/* header */
.header {
    background-image: url(/wp-content/uploads/2018/04/feature-banner.jpg);
    background-size: cover;
    height:420px;
    margin-top:25px;
}
/* logo & nav scroll */
.logo-nav-scroll {
    background-image: url(/wp-content/uploads/2018/04/menu-background.png);
    background-repeat: no-repeat;
    background-size: 75%;
    width: 230px;
    height: 400px;
    margin: -10px 0 0 35px;
}
/* logo */
.logo-img {
    max-width: 116px;
    margin: 15px 0 0 20px;
}
/* nav */
.nav ul {
    width: 156px;
    list-style: none;
    text-align: center;
    padding: 0;
    margin-top: 20px;
}
.nav li {
    font-size:13px;
    font-weight: 400;
    padding: 4px 0;
    color:#444;
}
.nav li:hover {
    background: rgb(204,188,175); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(204,188,175,1) 0%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 55%, rgba(255,255,255,1) 55%, rgba(204,188,175,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(204,188,175,1) 0%,rgba(255,255,255,1) 45%,rgba(255,255,255,1) 55%,rgba(255,255,255,1) 55%,rgba(204,188,175,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(204,188,175,1) 0%,rgba(255,255,255,1) 45%,rgba(255,255,255,1) 55%,rgba(255,255,255,1) 55%,rgba(204,188,175,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccbcaf', endColorstr='#ccbcaf',GradientType=0 ); /* IE6-9 */
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    color:#CE7725;
}
.nav a {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    color:#444;
}
.nav a:hover {
    color:#CE7725;
    text-decoration:none;
}
/* header title */
.header-title {
    position: absolute;
    right: 15px;
    top: -15px;
    color: #EDE9DE;
    font-family: 'Poiret One';
    font-weight: 100;
    font-size: 90px;
    margin: 0;
    text-decoration:underline;
    text-underline-position:under;
}
.header-title:hover {
    color: #DECFC3;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    text-decoration:underline;
}
.h1-page-title {
    color: #CE7725;
    font-family: Poiret One;
    margin: -50px 0 0 20px;
    font-size: 50px;
    font-weight: 500;
}
/* sidebar */
/* footer */
.footer {
    background-color: #5D5154;
}
.copyright {
    text-align: right;
    padding: 10px;
    color: #EDE9DE;
    font-size: 12px;
}
.availability-button {
    font-family: Tempus;
    font-size: 20px;
    margin-left: 30px;
    border-radius: 2px;
    background-color: #e2e2e2;
    box-shadow: 0 0 0 6px #ffffff;
}
.footer-nav {
    text-align:center;
}
#menu-footer-menu {
    -webkit-padding-start: 0;
}
.footer-nav li {
    display:inline-block;
}
.footer-nav li:after {
    content: '|';
    display: inline-block;
    font-size: 14px;
    width: 15px;
    height: 17px;
    color: #EDE9DE;
    vertical-align: text-bottom;
}
.footer-nav li:last-of-type:after {
    display:none;
}
.footer-nav a {
    color: #EDE9DE;
    font-size: 14px;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/
article {
    background-color: #5D5154;
    padding: 5px 30px;
}
h2 {
    color:#DECFC3;
    font-family:Verdana;
    font-size:18px;
    line-height:35px;
}
h3 {
    color:#CE7725;
    font-family:Tempus;
    font-size:28px;
}
p {
    -webkit-margin-before: 0;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    padding: 10px 0;
    color:#CE7725;
    font-family:Verdana;
    font-size:16px;
}
/* orange border for objects */
.orange-border {
    border: 2px solid #CE7725;
}


/* HOMEPAGE STYLING */
.home h3 {
    margin:25px 0;
}
.homepage-right-images .col-12, .homepage-right-images .col-6 {
    padding-left: 4px;
    padding-right: 4px;
}
.homepage-right-images img {
    margin: 4px 0;
}

/* GALLERY PAGE STYLING */
.post-6 p {
    color:#EDE9DE;
    font-size:12px;
    font-weight:600;
    line-height:20px;
}
.post-6 .gallery-table {
    width:100%;
}
.post-6 .gallery-img {
    display: inline-table;
    width: 30%;
    border: 3px solid #ffffff;
    margin: 1%;
}
.post-6 .gallery-img img {
    object-fit: cover;
    height: 130px;
    min-width: 130px;
}

/* FACILITIES PAGE STYLING */
.facilities-page h2 {
    font-weight:600;
}
.facilities-page h3 {
    font-family:Verdana;
    font-size:18px;
}
.facilities-page p, .facilities-page ul {
    color:#EDE9DE;
    font-size:12px;
    font-weight:500;
}
.facilities-page ul {
    list-style:none;
    -webkit-padding-start: 0;
}
.facilities-page li:before {
    content: '';
    background-image: url(/wp-content/uploads/2018/04/66@2x.png);
    width: 15px;
    height: 16px;
    background-size: cover;
    display: inline-block;
    position: relative;
    top: 5px;
    margin-right: 10px;
}
.forgot {
    background-color: #DECFC4;
    padding: 20px;
    margin-top:-100px;
}
.forgot p, .forgot ul {
    color:#3A3A3A;
    font-size:12px;
}

/* SURROUNDING AREA PAGE STYLING */
.post-8 p {
    color:#EDE9DE;
}
.post-8 h3 {
    font-family:Verdana;
    font-size:18px;
}
.coastal {
    background-color: #DECFC4;
    padding: 20px;
    margin-top:-100px;
}
.coastal p {
    color:#3A3A3A;
    font-size:12px;
}
.sa-directions span {
    color:#FF0000;
    text-decoration:underline;
    font-size:20px;
}
.sa-directions ul {
    list-style:none;
    color:#EDE9DE;
    font-size: 15px;
    font-weight: 500;
    -webkit-padding-start: 0;
}
.sa-directions #slow-down {
    text-decoration:underline;
    display: block;
    margin-left: 15px;
    font-weight:bold;
    font-size:15px;
    color:#EDE9DE;
}
#directions-map {
    margin:10px 0;
}

/* REVIEWS PAGE STYLING */
.post-54 h2 {
    font-size:20px;
}
.post-54 p {
    color:#EDE9DE;
    margin-bottom:0;
}
.post-54 .review-title {
    text-decoration:underline;
    display:block;
}

/* CONTACT PAGE STYLING */
.post-12 p, .post-12 ul {
    color:#EDE9DE;
    font-size:12px;
    font-weight:600;
    line-height:25px;
}
.post-12 a {
    color:#CE7725;
}
.post-12 .directions {
    font-family:Verdana;
    font-size:18px;
    font-weight: 600;
    margin: 15px 0;
}
.post-12 ul {
    list-style:none;
    -webkit-padding-start: 0;
}
.post-12 ul span {
    text-decoration:underline;
    display: block;
    margin-left: 15px;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {
.wrapper {
    max-width: 290px;
}
.header {
    margin-top: 15px;
}
.logo-nav-scroll {
    margin-left: 5px;
}
.header-title {
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    width: 110px;
    top: 10px;
    right: 8px;
    line-height: 50px;
    text-decoration: none;
}
.h1-page-title {
    width: 100%;
    text-align: center;
    margin: -65px 0 0 0;
    font-size: 40px;
    font-weight: 600;
}
.post-6 .gallery-img {
    width: 98%;
    margin: 3% 1%;
}
.post-6 .gallery-img img {
    width: 100%;
    height: auto;
}
.forgot {
    margin-top:0;
}
.coastal {
    margin-top:0;
}
.reservation-div {
    text-align:center;
}
.availability-button {
    width:80%;
    margin-left:0;
}
.copyright {
    text-align: center;
    margin-top: 10px;
}
}
@media only screen and (min-width:375px) {
.wrapper {
    max-width: 340px;
}
.header-title {
    font-size: 60px;
    font-weight: 600;
    width: 150px;
    top: 0px;
    right: 10px;
    line-height: 60px;
    text-decoration: none;
}
.h1-page-title {
    margin: -50px 0 0 0;
}
}
@media only screen and (min-width:425px) {
.wrapper {
    max-width: 90%;
}
.header-title {
    font-size: 3.5em;
    width: auto;
    top: 13px;
    right: 10px;
    text-decoration: underline;
}
.h1-page-title {
    text-align: left;
    width: 85%;
    margin: -50px auto;
}
}
@media only screen and (min-width:600px) {
.wrapper {
    max-width: 92%;
}
.logo-nav-scroll {
    margin-left: 15px;
}
.header-title {
    font-size: 5em;
    top: 6px;
    right: 20px;
}
.h1-page-title {
    width: 90%;
}
.post-6 .gallery-img {
    width: 46%;
    margin: 3% 1.8%;
}
.post-6 .gallery-img img {
    height: 250px;
}
}
@media only screen and (min-width:768px) {
.wrapper {
	max-width:760px;
	margin:0 auto;
	position:relative;
}
.header-title {
    position: absolute;
    width: initial;
    right: 15px;
    top: 15px;
    color: #EDE9DE;
    font-family: 'Poiret One';
    font-weight: 100;
    font-size: 90px;
    margin: 0;
    text-decoration:underline;
    text-underline-position:under;
}
.h1-page-title {
    margin: -50px 0 0 20px;
    font-size: 50px;
    font-weight: 500;
}
.copyright {
    text-align: right;
    padding: 10px;
}
.reservation-div {
    text-align: left;
}
.availability-button {
    margin-left: 30px;
}
.home h3 {
    margin:25px 0;
}
.homepage-right-images .col-12, .homepage-right-images .col-6 {
    padding-left: 4px;
    padding-right: 4px;
}
.homepage-right-images img {
    margin: 4px 0;
}
.post-6 .gallery-img {
    width: 30%;
    margin: 1%;
}
.post-6 .gallery-img img {
    object-fit: cover;
    height: 130px;
    min-width: 130px;
}
.forgot {
    margin-top:-100px;
}
.coastal {
    margin-top:-100px;
}
}

@media (max-width:480px) {
.footer-nav li:after {
    display:none;
}
.footer-nav li {
    display:inherit;
}
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

/* GUESTHOUSE STYLING */