/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

img {
	max-width: 100%;
	height: auto;
}

body {
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	font-family: sawarabi-mincho,sans-serif;
	font-weight: 500;
	font-style: normal;
	
		/* Tweakable Variables */
	--top-bar-height: 150px;
	--footer-height: 100px;
	--admin-bar-height: 0px;
	--gold: #bfad88;
	--dark-brown: #191000;
	--charcoal-grey: #161616;
	--gold-border: solid 2px var(--gold);
	--smooth-padding: 5vw;
	--mobile-column-max-width: calc(calc(calc(calc(100vh - var(--admin-bar-height)) * .8) - var(--top-bar-height)) * 1);
	--mobile-column-width: calc(100vw - calc(var(--smooth-padding) * 2));
	
	color: var(--gold);
	min-height: calc(100vh - var(--admin-bar-height));
	background-color: #000000;
}

body.admin-bar {
	--admin-bar-height: 32px;
}

body.mobile-menu-open {
	overflow: hidden;
}

@media screen and (max-width: 782px) {
	#wpadminbar {
		position: fixed;
	}
	
	body.admin-bar {
		--admin-bar-height: 46px;
	}
}

header {
	position: fixed;
	top: 0;
	display: flex;
	height: var(--top-bar-height);
	width: 100%;
	z-index: 999;
	padding-left: var(--smooth-padding);
	padding-right: var(--smooth-padding);
	padding-top: calc(var(--top-bar-height) * .2);
	padding-bottom: calc(var(--top-bar-height) * .2);
}

header .header-menu {
	flex: 1;
	height: 60px;
	display: flex;
	align-items: center;
}


header .menu-main-menu-container {
	width: 100%;
	height: 40px;
}


header .header-menu ul {
	height: 100%;
	width: 100%;
	list-style: none;
	display: flex;
	padding: 0px;
	margin: 0px;
}

header .header-menu li {
	position: relative;
	height: 100%;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .header-menu li.menu-item-has-children>a::after {
	content: "\20\20\20∨";
	white-space: pre;
}

header .header-menu li:hover {
}

header .header-menu li:not(:first-child) {

}



header .header-menu li a, header .header-menu li a:hover {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--gold);
	text-decoration: none; 
}

header .header-menu ul ul {
    display: none;
	position: absolute;
    top: 40px;
    left: 0;
    z-index: 99999;
    width: 180px;
}

header .header-menu ul ul li {
	background-color: #000000;
}

header .header-menu ul ul li:not(:first-child) {
	border-top: var(--gold-border);
}

header .header-menu ul li:hover > ul {
	display: block;
}

header .header-menu li img {
	max-height: 30px;
	width: auto;
}

header .header-menu .sub-menu {
	width: 100%;
}

.booking-button {
	background: rgb(194,13,35);
	background: linear-gradient(90deg, rgba(194,13,35,1) 0%, rgba(127,0,49,1) 31%, rgba(194,13,35,1) 100%);
	color: #FFFFFF;
	height: 60px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.border-radius-none { border-radius: 0px !important; }

.booking-button a { 
	text-decoration: none; 
	color: #ffffff; 
}

.booking-button a img { float: left; }
.booking-button a span { float: left; }

.shiny {
	position: relative;
	overflow: hidden;
	transform: scale(1, 1);
	transition: transform 1s;
}

@keyframes shine {
	0% { left: -100%; }
	80% { left: -100%; }
	100% { left: 100%; }
}

@keyframes hover-shine {
	0% { left: -100%; }
	100% { left: 0%; }
}

.shiny .shine {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	background: rgb(255,255,255);
	background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 85%, rgba(255,255,255,0) 100%);
	animation-name: shine;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	transition: left 1s;
	z-index: -1;
}

.shiny:hover {
	transform: scale(1.2, 1.2);
}

.shiny:hover .shine {
	left: 0%;
	animation-name: hover-shine;
	animation-duration: 1s;
	animation-iteration-count: 1;
}

.booking-button img {
	width: 18px;
	margin-right: 10px; 
}

header img { cursor: pointer; }

header .booking-button {
	padding-left: 30px;
	padding-right: 30px;
	cursor: pointer; 
}

header .hamburger {
	position: absolute;
	display: none;
	--hamburger-height: calc(var(--top-bar-height) / 3);
	--hamburger-bar-height: calc(var(--hamburger-height) / 10);
	top: var(--hamburger-height);
	right: var(--hamburger-height);
	height: var(--hamburger-height);
	width: var(--hamburger-height);
}

header .hamburger:hover {
	cursor: pointer; 
}

header .hamburger div {
	position: absolute;
	height: var(--hamburger-bar-height);
	width: 100%;
	background-color: var(--gold);
	border-radius: 100px;
	transition: transform 1s;
}

header .hamburger div:nth-child(1) {
	top: 0;
}

header .hamburger div:nth-child(2) {
	top: calc(calc(var(--hamburger-height) / 2) - calc(var(--hamburger-bar-height) / 2));
}

header .hamburger div:nth-child(3) {
	top: calc(var(--hamburger-height) - var(--hamburger-bar-height));
}

.mobile-menu-open header .hamburger div:nth-child(1) {
	transform: translateY(calc(calc(var(--hamburger-height) - var(--hamburger-bar-height)) / 2)) rotate(225deg);
}

.mobile-menu-open header .hamburger div:nth-child(2) {
	transform: scaleX(0);
}

.mobile-menu-open header .hamburger div:nth-child(3) {
	transform: translateY(  calc(calc(calc(var(--hamburger-height) - var(--hamburger-bar-height)) / 2) * -1)  ) rotate(-225deg);
}

.mobile-menu {
	opacity: 0;
	position: fixed;
	top: var(--top-bar-height);
	right: -100vw;
	width: 100%;
	height: calc(100vh - var(--top-bar-height));
	background-color: var(--charcoal-grey);
	z-index: 999999;
	transition: right .5s, opacity 0s .5s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.mobile-menu-open .mobile-menu {
	opacity: 1;
	right: 0;
	transition: right .5s, opacity 0s 0s;
}

.mobile-menu .menu-main-menu-container {
	display: flex;
	justify-content: center;
}

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

.mobile-menu li {
	text-align: center;
}

.mobile-menu ul a, .mobile-menu ul a:hover {
	color: var(--gold);
	text-decoration: none;
	font-size: 1.3rem;
}

.mobile-menu .menu-main-menu-container>ul>li {
	padding-bottom: 1.5rem;
}

.mobile-menu .menu-main-menu-container>ul>li>ul>li {
	font-size: 1.2rem;
}

.mobile-menu .menu-main-menu-container>ul>li>ul>li::before {
	content: "-";
	font-size: 1.4rem;
}

.mobile-menu .booking-button {
	width: 300px;
}

.main-content {
	flex: 1;
}

.top-spacer {
	height: var(--top-bar-height);
}

.fat-visible {
	
}

.tall-visible {
	display: none !important;
}

.hero {
	width: 100%;
	height: calc(calc(100vh - var(--admin-bar-height)) * .8);
	background-image: url("../img/hero-bg.jpg");
	background-size: cover;
	background-position: bottom center;
	padding-left: var(--smooth-padding);
	padding-right: var(--smooth-padding);
}

.hero-content {
	--hero-content-height: calc(calc(calc(100vh - var(--admin-bar-height)) * .8) - var(--top-bar-height));
	height: var(--hero-content-height);
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-row {
	width: 100%;
	height: calc(var(--hero-content-height) * .8);
	display: flex;
	justify-content: center;
	max-height: 40vw; 
}

.hero-gallery {
	position: relative;
	height: calc(var(--hero-content-height) * .8);
	width: calc(var(--hero-content-height) * .8);
	max-height: 40vw; 
	max-width: 40vw; 
	background-color: #000000;
	border: var(--gold-border);
	overflow: hidden;
}

.hero-gallery .left-arrow, .hero-gallery .right-arrow {
	position: absolute;
	bottom: 30px;
	border: var(--gold-border);
	height: 5vw;
	width: 5vw;
	max-width: 80px;
	max-height: 80px;
	border-radius: 1000px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer; 
}

.hero-gallery .left-arrow img, .hero-gallery .right-arrow img {
	max-width: 60%;
	height: auto;
}

.hero-gallery .left-arrow {
	z-index: 20;
	left: 30px;
}

.hero-gallery .right-arrow {
	z-index: 20;
	right: 30px;
}

.gallery-image {
	z-index: 1;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	overflow: hidden;
	transform: translateX(0) rotate(0) scale(1);
}

.gallery-image.out {
	opacity: 0;
}

.gallery-image.next {
	opacity: 0;
	transform: translateX(10%) rotate(20deg) scale(1.5);
}

.gallery-image.previous {
	opacity: 0;
	transform: translateX(-10%) rotate(-20deg) scale(1.5);
}

.gallery-image.deactivate {
	transition: transform 1s ease 0s, opacity 1s ease 0s;
}

.gallery-image.activate {
	opacity: 1;
	transform: translateX(0) rotate(0) scale(1);
	transition: transform 1s ease 0s, opacity 1s ease 0s;
}

.hero-text {
	width: calc(var(--hero-content-height) * .8);
	margin-left: 5vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}

.hero-text h1 {
	font-size: 3vw;
	line-height: 4.5vw;
}

.hero-text h6 {
	font-size: 1vw;
	line-height: 2vw;
}

.text-gallery {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.gallery-text {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: translateX(0) rotate(0) scale(1);
}

.gallery-text.out h1, .gallery-text.out h6 {
	opacity: 0;
}

.gallery-text.next h1, .gallery-text.next h6 {
	opacity: 0;
	transform: translateX(20%);
}

.gallery-text.previous h1, .gallery-text.previous h6 {
	opacity: 0;
	transform: translateX(-20%);
}

.gallery-text.activate h1, .gallery-text.activate h6 {
	opacity: 1;
	transform: translateX(0);
}

.gallery-text.activate h1, .gallery-text.deactivate h1 {
	transition: transform 1s .25s, opacity 1s ease .25s;
}

.gallery-text.activate h6, .gallery-text.deactivate h6 {
	transition: transform 1s .5s, opacity 1s ease .5s;
}

.hero-text .booking-button {
	padding-left: 30px;
	padding-right: 30px;
}

.hero-bottom {
	width: 100%;
	height: calc(calc(100vh - var(--admin-bar-height)) * .2);
	background-color: #000000;
	padding-left: var(--smooth-padding);
	padding-right: var(--smooth-padding);
}

.hero-bottom-row {
	width: 100%;
	height: 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hero-bottom-row>div {
	flex: 1;
}

.hero-bottom-img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-bottom-img img {
	height: height: calc(calc(100vh - var(--admin-bar-height)) * .15);
	width: auto;
}

.concept {
	width: 100%;
	background-image: url("../img/concept-bg.jpg");
	background-size: cover;
	background-position: bottom center;
	padding-left: var(--smooth-padding);
	padding-right: var(--smooth-padding);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.concept-row {
	margin-top: var(--smooth-padding);
	margin-bottom: var(--smooth-padding);
	width: 100%;
	display: flex;
}

.concept-text {
	flex: 1;
	padding-right: 5vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.concept-text h1 {
	font-size: 3vw;
	line-height: 4.5vw;
}

.concept-text h4 {
	font-size: 2vw;
	line-height: 3.5vw;
}

.concept-text h6 {
	font-size: 1vw;
	line-height: 2vw;
}

.concept-text .about-button {
	background-color: var(--gold);
	color: #000000;
	height: 60px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
}

.concept-text .about-button a { 

	text-decoration: none; 
	color: #000000;
	
}

.concept-row img {
	height: calc(calc(100vw - calc(var(--smooth-padding) * 3)) / 2);
	width: calc(calc(100vw - calc(var(--smooth-padding) * 3)) / 2);
	object-fit: cover;
	overflow: hidden;
	object-position: center;
}

	
.reasons {
	padding-top: calc(var(--smooth-padding) * 2);
	width: 100%;
	background-color: #000000;
}

.home .reasons {
	padding-left: var(--smooth-padding);
	padding-right: var(--smooth-padding);
}

.reasons h1 {
	font-size: 3vw;
	line-height: 4.5vw;
	text-align: center;
}

.reasons-row {
	--gutter-width: calc(var(--smooth-padding) * .5);
	margin-top: var(--smooth-padding);
	display: flex;
}

.reason-card {
	--card-width: calc(calc(100vw - calc(calc(var(--smooth-padding) * 2) - calc(var(--gutter-width) * 2))) / 3);
	width: var(--card-width);
	border: var(--gold-border);
	display: flex;
	flex-direction: column;
}

.reason-card:nth-child(2){
	margin-left: var(--gutter-width);
	margin-right: var(--gutter-width);
}

.reason-card img {
	width: 100%;
	object-fit: cover;
	overflow: hidden;
}

.home .reason-card img {
	height: calc(var(--card-width) / 1.618);
	max-height: calc(var(--card-max-width) / 1.618);
}

.reason-card-text {
	flex: 1;
	border-top: var(--gold-border);
	background-color: var(--dark-brown);
	padding: calc(var(--smooth-padding) * .25);
}

.reason-card-text h6 {
	font-size: 1.4rem;
	line-height: 2rem;
	padding-bottom: 10px;
}

.reason-card-text p {
	color: #FFFFFF;
	line-height: 1.6rem;
}

.cta {
	padding: var(--smooth-padding);
	background-color: #000000;
}

.cta-row {
	border: var(--gold-border);
	display: flex;
	padding: var(--smooth-padding);
}

.cta-img {
	width: 50%;
	padding-right: calc(var(--smooth-padding) * .5);
}

.cta-text {
	width: 50%;
	padding-left: calc(var(--smooth-padding) * .5);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.cta-img img {
	width: 100%;
	aspect-ratio: 1.618;
	object-fit: cover;
	overflow: hidden;
}

.underline {
	border-bottom: var(--gold-border);
}

.cta h1 {
	font-size: 3vw;
	line-height: 4.5vw;
}

.cta .underline {
	width: 30%;
	margin-top: calc(var(--smooth-padding) * .25);
	margin-bottom: calc(var(--smooth-padding) * .25);
}

.cta .phone-number {
	color: #FFFFFF;
	display: flex;
	align-items: center;
}

.cta .phone-number img{
	height: 3vw;
	width: auto;
	margin-right: 1.5vw; 
}

.cta .line-button {
	width: 80%;
	background-color: var(--gold);
	color: #000000;
	height: 60px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
}

.recent-posts {
	background-color: var(--charcoal-grey);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: var(--smooth-padding);
}

.recent-posts h1 {
	font-size: 3vw;
	line-height: 4.5vw;
	margin-bottom: var(--smooth-padding);
}

.recent-posts .post-list {
	width: 100%;
	padding-left: var(--smooth-padding);
	padding-right: var(--smooth-padding);
}

.recent-posts .post {
	position: relative;
	width: 100%;
	border-bottom: solid 1px #FFFFFF;
	display: flex;
	padding-top: 15px;
	padding-bottom: 15px;
}

.recent-posts .post a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.recent-posts .post:hover .link {
	text-decoration: underline;
}

.recent-posts .post .date {
	width: 20vw;
	max-width: 200px; 
}

.recent-posts .post .exerpt {
	flex: 1;
	color: #FFFFFF;
}

.recent-posts .post .link {
	width: 20vw;
	max-width: 200px; 
	display: flex;
	justify-content: flex-end;
	color: #FFFFFF;
}

.guide {
	background-color: #000000;
	padding: var(--smooth-padding);
	padding-top: calc(var(--smooth-padding) * 2);
}

.guide-row {
	--gutter-width: calc(var(--smooth-padding) * .5);
	display: flex;
	justify-content: space-between;
}

.guide h1 {
	text-align: center;
	margin-bottom: var(--smooth-padding); 
	font-size: 3vw;
	line-height: 4.5vw;
}

.guide-table {
	border: var(--gold-border);
	--width: calc(calc(100% - var(--gutter-width)) * .5);
	width: var(--width);
}

.guide-table-row {
	height: calc(100% / 6);
	border-top: solid 1px var(--gold);
	display: flex;
}

.guide-table-row .title {
	width: 10vw;
	height: 100%;
	border-right: solid 1px var(--gold);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #bfad8845;
}

.guide-table-row .value {
	flex: 1;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: calc(var(--smooth-padding) * .25);
}

.guide-table-row:nth-child(1) {
	border-top: unset;
}

.guide-img {
	--width: calc(calc(100% - var(--gutter-width)) * .5);
	width: var(--width);
	height: calc(var(--width) / 1.618);
	object-fit: cover;
	overflow: hidden;
}

.map {
	background-color: #000000;
	padding-left: var(--smooth-padding);
	padding-right: var(--smooth-padding);
	padding-bottom: var(--smooth-padding);
}

.map iframe {
	height: 50vh;
	max-height: 100vw;
}

.service {
	background-color: #000000;
}

.service .card, .concept-page .card {
	border-radius: 0;
	border: solid 1px var(--gold);
}

.service .card .card-body, .concept-page .card .card-body {
	border-top: solid 1px var(--gold);
	background-color: #000000;
	color: #FFFFFF;
}

.service .card .card-body h6, .concept-page .card .card-body h6 {
	font-size: 1.4rem;
	color: var(--gold);
}

.service .plan-table {
	border: solid 1px var(--gold);
	color: #FFFFFF;
}

.service .plan-table .blue-table-heading {
	background-color: #006fc1;
}

.service .plan-table .green-table-heading {
	background-color: #00a063;
}

.service .plan-table .red-table-heading {
	background: rgb(194,13,35);
	background: linear-gradient(90deg, rgba(194,13,35,1) 0%, rgba(127,0,49,1) 31%, rgba(194,13,35,1) 100%);
}

.service .plan-table .row {
	border-top: solid 1px var(--gold);
}

.service .plan-table .row>div:nth-child(1) {
	border-right: solid 1px var(--gold);
}

.service .plan-table .row:nth-child(1) {
	border-top: none;
}

.service .plan-details p {
	line-height: 2rem; 
}

.concept-page {
	background-color: #000000;
}

.concept-page p {
	line-height: 1.8rem;
}

.usage {
	background-color: #000000;
}

.usage .card {
	position: relative;
	border-radius: 0;
	border: solid 1px var(--gold);
	margin-top: 40px; 
}

.usage .card .card-number {
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	height: 80px;
	width: 80px;
	background: rgb(194,13,35);
	background: linear-gradient(90deg, rgba(194,13,35,1) 0%, rgba(127,0,49,1) 31%, rgba(194,13,35,1) 100%);
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: solid 1px var(--gold);
	font-size: 2rem;
}

.usage .card .card-body {
	background-color: #000000;
	border-top: solid 1px var(--gold);
}

.contact {
	background-color: #000000;
}

.contact-block{
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #191000; 
}

.contact-block .phone-number {
	color: #FFFFFF;
	display: flex;
	align-items: center;
}

.contact-block .phone-number h1 {
	margin: 0;
}

.contact-block .phone-number img {
	height: 30px;
	width: auto;
	margin-right: 20px; 
}

.contact-block .line-button {
	width: 80%;
	background-color: var(--gold);
	color: #000000;
	height: 60px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
}

footer {
	background-color: var(--charcoal-grey);
}

/*
footer .logo {
	width: 100%;
	height: var(--top-bar-height);
	display: flex;
	justify-content: center;
	padding-top: calc(var(--top-bar-height) * .25);
	padding-bottom: calc(var(--top-bar-height) * .25);
}
*/

footer .logo img { width: 120px; height: 120px; }

footer .links {
	display: flex;
	padding-left: var(--smooth-padding);
	padding-right: var(--smooth-padding);
	padding-top: calc(var(--smooth-padding) * .5);
}

.footer-menu {
	flex: 1;
}

.footer-contact {
	display: flex;
	flex-direction: column;
}

.footer-contact .phone-number {
	display: flex;
	padding: calc(var(--smooth-padding) * .25);
}

.footer-contact .phone-number img {
	height: 3.6vw;
	width: auto;
}

.footer-contact .phone-number>div {
	flex: 1;
}

.footer-contact .phone-number h2 {
	font-size: 1.7vw;
	text-align: center;
}

.footer-contact .phone-number h4 {
	font-size: 1vw;
	text-align: center;
}


footer .copyright {
	height: calc(var(--top-bar-height) * .5);
	width: 100%;
	border-top: var(--gold-border);
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-menu ul {
	width: 100%;
	list-style: none;
	display: flex;
	padding: 0px;
	margin: 0px;
}

.footer-menu ul li {
	flex-grow: 1;
}

.footer-menu ul ul li {
	height: 30px;
}

.footer-menu ul ul {
	margin-top: 10px;
	flex-direction: column;
}

.footer-menu ul li a, .footer-menu ul li a:hover {
	flex-grow: 1;
	color: var(--gold);
	text-decoration: none; 
}

.footer-menu ul ul li a::before {
	content: "-";
}


@media screen and (min-width: 250vh) {
	
	.hero {
		height: 100vh;
	}
	
	.hero-content {
		--hero-content-height: calc(calc(100vh - var(--admin-bar-height)) - var(--top-bar-height));
	}
	
	.hero-text {
		width: calc(var(--hero-content-height) * 1.6);
	}
	
	.hero-bottom-row {
		height: 100%;
	}
	
	.hero-bottom-row>div {
		height: 100%;
	}
}

@media screen and (max-width: 1500px) and (min-width: 150vh) {
	
	.hero {
		height: 100vh;
	}
	
	.hero-content {
		--hero-content-height: calc(calc(100vh - var(--admin-bar-height)) - var(--top-bar-height));
	}
	
	.hero-text {
		width: calc(var(--hero-content-height) * 1);
	}
	
	.hero-bottom-row {
		height: 100%;
	}
	
	.hero-bottom-row>div {
		height: 100%;
	}
	
	.hero-bottom-row>div>img {
		/* height: 90%; */
		width: auto;
	}
}

@media screen and (max-width: 80vh) {
	body {
		--top-bar-height: 100px;
	}
	
	header {
		background-color: #000000;
		padding-top: calc(var(--top-bar-height) * .1);
		padding-bottom: calc(var(--top-bar-height) * .1);
		justify-content: center;
	}
	
	header .hamburger {
		display: block;
	}
	
	.fat-visible {
		display: none !important;
	}

	.tall-visible {
		display: unset !important;
	}
	
	.hero {
		height: unset;
	}
	
	.hero-content {
		height: unset;
		justify-content: flex-start;
	}
	
	.hero-row {
		flex-direction: column;
		align-items: center;
		height: unset;
		max-height: unset;
	}
	
	.hero-gallery, .mobile-text-gallery {
		max-width: var(--mobile-column-max-width);
		max-height: var(--mobile-column-max-width);
		width: var(--mobile-column-width);
		height: var(--mobile-column-width);
	}
	
	.hero-gallery .left-arrow, .hero-gallery .right-arrow {
		height: 15vw;
		width: 15vw;
		max-height: 50px;
		max-width: 50px;
	}
	
	.gallery-image.deactivate {
		transition: transform 1s ease .25s, opacity 1s ease .25s;
	}

	.gallery-image.activate {
		transition: transform 1s ease .1s, opacity 1s ease .1s;
	}
	
	.hero-text {
		width: calc(var(--hero-content-height) * 1);
		max-width: calc(100vw - calc(var(--smooth-padding) * 2));
		margin-left: unset;
		justify-content: space-between;
		margin-bottom: var(--smooth-padding);
	}
	
	.text-gallery {
		height: 30vw;
		flex: unset;
	}
	
	.gallery-text {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	.gallery-text.next h1, .gallery-text.next h6 {
		transform: translateX(20%) rotate(20deg);
	}

	.gallery-text.previous h1, .gallery-text.previous h6 {
		transform: translateX(-20%) rotate(-20deg);
	}

	.gallery-text.activate h1, .gallery-text.activate h6 {
		transform: translateX(0);
	}
	
	.gallery-text.activate h1, .gallery-text.deactivate h1 {
		transition: transform 1s 0s, opacity 1s ease 0s;
	}

	.gallery-text.activate h6, .gallery-text.deactivate h6 {
		transition: transform 1s .2s, opacity 1s ease .2s;
	}
	
	.hero-text .booking-button {
		width: 100%;
		order: 1;
		margin-bottom: var(--smooth-padding);
	}
	
	.hero h1 {
		margin-top: var(--smooth-padding);
		margin-bottom: var(--smooth-padding);
	}
	
	.hero h6 {
		order: 2;
		font-size: 2vw;
		line-height: 3vw;
	}
	
	.hero-bottom {
		height: unset;
	}
	
	.hero-bottom-row {
		flex-direction: column;
		padding-top: var(--smooth-padding);
	}
	
	.hero-bottom-text {
		padding-bottom: var(--smooth-padding);
	}
	
	.concept {
		height: unset;
	}
	
	.concept-row {
		flex-direction: column;
		align-items: center;
		height: unset;
		margin-top: var(--smooth-padding);
		margin-bottom: var(--smooth-padding);
	}
	
	.concept-text {
		max-width: var(--mobile-column-max-width);
		width: var(--mobile-column-width);
		padding-right: unset;
		padding-bottom: var(--smooth-padding);
	}
	
	.concept-row img {
		max-width: var(--mobile-column-max-width);
		max-height: var(--mobile-column-max-width);
		width: var(--mobile-column-width);
		height: var(--mobile-column-width);
	}
	
	.concept-text h1 {
		font-size: 2rem;
		line-height: 3rem;
	}
	
	.concept-text h4 {
		font-size: 6vw;
		line-height: 9vw;
	}
	
	.concept-text h6 {
		font-size: 2vw;
		line-height: 3vw;
	}
	
	.concept-text .about-button {
		width: 100%;
		margin-top: var(--smooth-padding);
	}
	
	.reasons h1 {
		font-size: 3rem;
		line-height: 4rem;
	}
	
	.reasons-row {
		flex-direction: column;
		align-items: center; 
	}
	
	
	.reason-card {
		--card-width: var(--mobile-column-width);
		max-width: var(--mobile-column-max-width);
	}
	
	.reason-card:nth-child(2) {
		margin-top: var(--smooth-padding);
		margin-bottom: var(--smooth-padding);
		margin-left: unset !important;
		margin-right: unset !important;
	}
	
	.reason-card img {
		max-height: calc(var(--mobile-column-max-width) / 1.618);
	}
	
	.reason-card-text {
		padding: calc(var(--smooth-padding) * .5);
	}
	
	.cta {
		display: flex;
		justify-content: center;
		padding-left: 0;
		padding-right: 0;
	}
	
	.cta-row {
		max-width: var(--mobile-column-max-width);
		width: var(--mobile-column-width);
		flex-direction: column;
	}
	
	.cta h1 {
		font-size: 2rem;
		line-height: 3rem;
	}
	
	.cta h4 {
		font-size: 1.2rem;
		line-height: 3rem;
	}
	
	.cta .phone-number img {
		display: none;
	}
	
	.cta-img {
		order: 2;
		width: 100%;
		padding-right: unset;
	}

	.cta-text {
		order: 1;
		width: 100%;
		padding-left: unset;
		padding-bottom: var(--smooth-padding);
	}
	
	.cta .line-button {
		width: 100%;
		margin-top: calc(var(--smooth-padding) * .25);
	}
	
	.recent-posts h1 {
		font-size: 3rem;
		line-height: 4rem;
	}
	
	.recent-posts .post-list {
		width: var(--mobile-column-width);
		max-width: var(--mobile-column-max-width);
		padding-left: 0;
		padding-right: 0;
	}
	
	.recent-posts .post-list .post {
		flex-direction: column; 
	}
	
	.recent-posts .post .date {
		width: 100%;
		max-width: unset;
	}

	.recent-posts .post .exerpt {
		width: 100%;
		color: #FFFFFF;
		padding-top: calc(var(--smooth-padding) * .55);
		padding-bottom: calc(var(--smooth-padding) * .55);
		max-width: unset;
	}

	.recent-posts .post .link {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		color: #FFFFFF;
		max-width: unset;
	}
	
	.guide {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.guide h1 {
		font-size: 3rem;
		line-height: 4rem;
	}
	
	.guide-row {
		flex-direction: column;
	}
	
	.guide-table {
		border: var(--gold-border);
		--width: var(--mobile-column-width);
		max-width: var(--mobile-column-max-width);
		
		order: 2;
		
	}
	
	.guide-img {
		--width: var(--mobile-column-width);
		max-width: var(--mobile-column-max-width);
		max-height: calc(var(--mobile-column-max-width) / 1.618);
		order: 1;
		margin-bottom: var(--smooth-padding);
	}
	
	.guide-table-row {
		flex-direction: column; 
	}
	
	.guide-table-row .title {
		width: 100%;
		padding: calc(var(--smooth-padding) * .25);
		justify-content: flex-start;
		border-right: unset;
		border-bottom: solid 1px var(--gold);
	}
	
	.guide-table-row .value {
		width: 100%;
		padding: calc(var(--smooth-padding) * .25);
	}
	
	.map {
		padding-left: unset;
		padding-right: unset;
	}
	
	footer {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.footer-contact {
		max-width: var(--mobile-column-max-width);
	}
	
	.footer-contact .phone-number {
		margin-top: calc(var(--smooth-padding) * .5);
	}
	
	.footer-contact .phone-number h2 {
		font-size: 2rem;
		text-align: center;
	}

	.footer-contact .phone-number h4 {
		font-size: 1.2rem;
		text-align: center;
	}
	
	.footer-contact .phone-number img {
		height: 4rem;
		width: auto;
	}
	
	footer .logo {
		padding-top: unset;
		padding-bottom: unset;
		margin-top: calc(var(--top-bar-height) * .25);
		margin-bottom: calc(var(--top-bar-height) * .25);
	}

}

@media screen and (max-width: 700px) {
	.hero h6, .concept h6, .reason-card-text h6 {
		font-size: 14px;
		line-height: 21px;
	}
}

@media screen and (max-width: 400px) {
	.concept-text h1 {
		font-size: 1.4rem;
		line-height: 2rem;
		padding-bottom: 20px;
	}
	
	.concept-text h4 {
		font-size: 1.2rem;
		line-height: 2rem;
		padding-bottom: 20px;
	}
	
	.concept-text h6 {
		font-size: 1rem;
		line-height: 1.4rem;
	}
	
	.reasons h1 {
		font-size: 2rem;
		line-height: 3rem;
	}
	
	.guide h1 {
		font-size: 2rem;
		line-height: 3rem;
	}
	
	.cta h1 {
		font-size: 1.6rem;
		line-height: 2rem;
	}
	
	.cta h4 {
		font-size: 1rem;
	}
	
	.recent-posts h1 {
		font-size: 2rem;
		line-height: 3rem;
	}
	
	footer .links {
		padding-left: unset;
		padding-right: unset;
		width: 100%;
		justify-content: center;
	}
	
	.footer-contact {
		max-width: unset;
		width: var(--mobile-column-width);
	}
	
	.footer-contact .phone-number h2 {
		font-size: 1.6rem;
	}

	.footer-contact .phone-number h4 {
		font-size: .8rem;
	}
	
	.footer-contact .phone-number img {
		height: 3rem;
		width: auto;
	}
}

.line-button a { 
	text-decoration: none;
	color: #000000;
}

footer a[href^="tel"] { 
	color: var(--gold);
	text-decoration: none;
}

a, a:hover{ color: var(--gold); }

.credit-cards img { max-width: 300px; }

@media screen and (max-width: 767px) { 

	footer .logo img { width: 100px; height: 100px; }
	
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    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) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

