/*

FONTS

*/

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stint+Ultra+Expanded&display=swap');

/*

BASIC STRUCTURE

*/
html {
  font-size: 10px;
  scroll-behavior: auto !important;
}

html,
body {
  height: 100%;
}

body {
  background: #ffffff;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  color: #000000;
  margin: 0;
  padding: 0;
  position: relative;
}

section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.content {
  margin: 0 auto;
  padding: 0;
}

section .content {
  padding: 4rem;
  margin: 0 auto;
  max-width: 1000px;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
}

.col.full {
  flex-basis: 100%;
}

/*

LINKS

*/

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #blue;
}

a:hover,
a:active {
  outline: 0;
}

/*

TYPOGRAPHY

*/

h1, h2, h3, h4, h5, h6{
  font-weight: 900;
  font-style: normal;
  -webkit-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
  margin-top: 0;
}

h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 1rem;
  font-family: "Figtree";
  color: #ffffff;
}

h2 {
  font-size: 3.2rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.4rem;
  line-height: 1.167;
}

h4 {
  font-size: 2.1rem;
  line-height: 1.333;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.333;
}

h6 {
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .3rem;
}

hr {
  border: solid #e0e0e0;
  border-width: 1px 0 0;
  clear: both;
  margin: 8rem 0 9.6rem;
  height: 0;
}

/*

LISTS

*/

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ol,
ul {
  margin-left: 1rem;
}

ul li {
  padding-left: .5rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1rem 0;
}

/*

FORMS

*/

fieldset {
  border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  display: block;
  height: 6.8rem;
  padding: 1.8rem 0 1.5rem;
  border: 0;
  outline: none;
  color: #000000;
  font-size: 1.6rem;
  line-height: 3.2rem;
  max-width: 100%;
  background: transparent;
  border-bottom: 1px solid #d3d3d3;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

textarea {
  min-height: 25.6rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  color: #000000;
  border-bottom: 1px solid #000000;
}

label,
legend {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: .8rem;
  line-height: 1.714;
  color: #000000;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label > .label-text {
  display: inline-block;
  margin-left: 1rem;
  font-family: "Figtree", sans-serif;
  line-height: inherit;
}

label > input[type="checkbox"],
label > input[type="radio"] {
  margin: 0;
  position: relative;
  top: .2rem;
}

::-webkit-input-placeholder {

  /* WebKit, Blink, Edge */
  color: #8c8c8c;
}

:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #8c8c8c;
}

::-ms-input-placeholder {

  /* Microsoft Edge */
  color: #8c8c8c;
}

::placeholder {

  /* Most modern browsers support this now. */
  color: #8c8c8c;
}

.placeholder {
  color: #8c8c8c !important;
}



/*

BUTTONS

*/
/*
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1rem;
  height: 6rem;
  line-height: 5.6rem;
  padding: 0 3.2rem;
  margin: 0 .4rem 1.6rem 0;
  color: #000000;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #d3d3d3;
  border: 0.2rem solid #d3d3d3;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  outline: 0;
}

.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
  background: #f9861a;
  border-color: #f9861a;
  color: #ffffff;
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
  background: #000000;
  border-color: #000000;
}
*/

/*

HEADER

*/

header {
  width: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease-in-out;
}

header .content {
  padding: 2rem 4rem;
}

header .logo {
  width: 10rem;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(357deg) brightness(101%) contrast(100%);

}

/*

NAVIGATION

*/

nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  font-size: 1.4rem;
  margin-top: 1rem;
  font-weight: 800;
}

nav ul li a {
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 1.8rem;
}

nav ul li a:hover { color: #F4FB00; }

/*

STICKY HEADER & NAVIGATION

*/

header.sticky {
  background-color: rgba(255, 255, 255, .9);
  box-shadow: 0 5px 20px rgba(50, 50, 50, .25);
  z-index: 1000;
}

header.sticky .logo {
/*  width: 10rem;*/
/*  opacity: 1;*/
  filter: none;
}


header.sticky nav ul li a {
  color: #000000;
}

nav ul li a:hover { color: #F4FB00; }

/*

MOBILE NAVIGATION

*/

header .navToggle {
  display: none;
  font-size: 4rem;
  position: absolute;
  top: 0;
  right: 4rem;
  cursor: pointer;
  color: #ffffff;
}

header .navToggle:after { content: "☰"; }

header.sticky .navToggle,
header.mobileOpen .navToggle { color: #000; }
header.mobileOpen .navToggle:after { content: "✕"; }
header.mobileOpen .logo { filter: none; }
header.mobileOpen { background-color: #fff; z-index: 1; }

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

  header nav { display: none; }
  header .navToggle { display: block; }

  nav ul {
    display: flex;
    font-size: 3rem;
    font-weight: 800;
    flex-direction: column;
  }

  nav ul li {
    padding: 0;
    margin-bottom: 2rem;
    text-align: right;
  }

  nav ul li a {
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 1.8rem;
  }

}


/*

SECTIONS

*/

section {
  background-size: cover;
  background-position: center center;
}

section h1 {
  text-align: center;
}

/*

SECTION - HERO

*/

.section-hero {
  min-height: 80%;
/*  background: linear-gradient(
      rgba(0, 0, 0, .5), 
      rgba(0, 0, 0, 0)
    ), url('../images/hero-interior.jpg');*/
/*  background-size: cover;*/
/*  background-position: center center;*/
background-image: url('../images/hero-interior.jpg');
  align-items: center;
}

.overlay {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.5);
}

.promo {
  margin: 20rem auto;
  width: 50%;
  filter: drop-shadow(0px 0px 8px rgb(0 0 0 / 1));
}

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

.promo {
  width: 80%;
}

}

/*

SECTION - SENDOFF

*/

.section-sendoff {
  min-height: 40%;
  background-image: url('../images/hero-exterior.jpg');
}

/*

SECTION - COMING SOON

*/

.comingsoon {
  margin: 10rem auto;
  max-width: 400px;
  text-align: center;
}

.comingsoon h2 {
  font-size: 5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "Stint Ultra Expanded";
}

.comingsoon h3 {
  padding: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  border: 1px solid #000000;
}

.comingsoon p {
  font-size: 1.5rem;
  line-height: 2rem;
}

/*

SECTION - QUOTE

*/

.section-quote {
  background-image: url('../images/space0.png');
}

.section-quote p {
  margin: 0;
  font-size: 8em;
  text-align: center;
}

.quote {
  margin: 10rem 0;
  width: 100%;
}

/*

SECTION - MENU

*/

.section-menu {
  background-image: url('../images/space1.png');
}

ul.menusList {
  list-style: none;
  margin: 10rem 0;
  padding: 0;
}

ul.menusList p.toggle {
  text-align: center;
  font-size: 8em;
  margin: 0;
  cursor: pointer;
}

.menuListToggle {
  margin: 3rem auto;
}

/*

SECTION - MENU PAGES

*/

.menuPage {
  background: linear-gradient( rgb(255, 255, 255), rgb(255, 250, 234) );
  padding: 2rem;
}

.menuPage ul,
.menuPage ul li {
  list-style: none;
  padding: 0;
}

.menuPage ul li {
  position: relative;
  margin-bottom: 2rem;
}

.menuPage h2 {
  text-transform: uppercase;
  font-family: "Stint Ultra Expanded";
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.menuPage h2 { display: flex; align-items: center;}
.menuPage h2::before,
.menuPage h2::after {
  content: '';
  height: 1px;
  background-color: #000;
  flex-grow: 1;
}
.menuPage h2::before { margin-right: 1em; }
.menuPage h2::after { margin-left: 1em; }

.menuPage h3,
.menuPage h4 {
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: .5rem;
  line-height: 1.333;
}

.menuPage h4 {
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
}

.menuPage p {
  text-transform: lowercase;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.menuPage aside {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: right;
}

.menuGroup.inset {
  border: 1px solid #000;
  padding: 2rem;
}

/*

SECTION - GALLERY

*/

.section-gallery {
/*  background-image: url('../images/space1.png');*/
}

.gallery {
  display: flex;
  flex-direction: row;
  gap: 0;
  min-height: 50rem;
}

.gallery figure {
  flex-grow: 1;
  background-size: cover;
  background-position: center center;
}

.gallery.one figure:nth-child(1) { background-image: url('../images/gallery/2.jpg'); }
.gallery.one figure:nth-child(2) { background-image: url('../images/gallery/5.jpg'); }
.gallery.two figure:nth-child(1) { background-image: url('../images/gallery/9.jpg'); }
.gallery.two figure:nth-child(2) { background-image: url('../images/gallery/1.jpg'); }



/*

SECTION - CALENDAR

*/

/*

SECTION - COMING SOON

*/

.section-comingsoon {
  background-image: url('../images/space2.png');
}

/*

SECTION - MEET US

*/

.section-meetus {
  background: linear-gradient(
      rgba(0, 0, 0, 0), 
      rgba(0, 0, 0, .65)
    ), url('../images/meetus1.jpg');
  background-size: cover;
  background-position: top center;
}

.section-meetus .meetUsBios {
  margin: 20rem 0 10rem 0;
}

.section-meetus .subhead { flex-grow: 1; }
.section-meetus .description { flex-grow: 2; }

.section-meetus h2 {
  color: #ffffff;
  text-align: center;
  font-size: 5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-family: "Stint Ultra Expanded";
}

.section-meetus h3 {
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  font-size: 2rem;
}

.section-meetus p {
  font-size: 2rem;
  color: #ffffff;
}

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

  .section-meetus h2 { font-size: 4rem; }
  .section-meetus h3 { font-size: 1.5rem; }
  .section-meetus h3 { font-size: 1.75rem; }

}


/*

SECTION - RESERVATIONS

*/

.section-reservations {
  background-image: url('../images/space2.png');
}

.section-reservations h2 {
  text-align: center;
  margin: 10rem 0 2rem 0;
  font-size: 5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-family: "Stint Ultra Expanded";
}

.reservationWidget {
  margin: 0 0 10rem 0;
  font-family: "Figtree", sans-serif !important;
  text-align: center;
}

.reservationWidget p a {
  font-weight: 600;
}

.MainLabelSpan {
  font-family: "Figtree", sans-serif !important;
  color: #f00 !important;
}

.reservationWidget .TockButton-white {
/*  background-color: #000 !important;*/
}

/*

SECTION - LINKTREE

*/

.linktree {
  background-image: url('../images/hero-interior-blur.jpg');
  align-items: center;
  text-align: center;
  background-size: 100%;
}

.linktree header {
  position: relative;
  color: #fff;
}

.linktree header h1 {
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 2rem;
}

.social-logo {
  margin: 0 auto 1rem;
  width: 10rem;
  height: 10rem;
  border-radius: 1000px;
  background-image: url('../images/social.png');
  background-size: cover;
}

#section-links ul,
#section-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#section-links ul li a {
  font-size: 2rem;
  display: block;
  padding: 2rem;
  text-decoration: none;
  background-color: #F8F5ED;
  border-radius: 100px;
  margin-bottom: 1rem;
}

#section-links ul li a::after {
  content: "➜";
  float:  right;
}

#section-links ul li h2 {
  color:#fff;
  font-size: 2rem;
  display: block;
  padding: 2rem;
  font-weight: 600;
}

/*

FOOTER

*/

footer {
  background-color: #242D32;
  margin: 0;
  padding: 10rem 0;
}

footer .content {
  padding: 0 4rem;
}

footer .col:nth-of-type(1) { flex-grow: 2; }
footer .col:nth-of-type(2) { flex-grow: 1; }

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

footer li {
  padding-left: 0;
  list-style: none;
  color: #ffffff;
  font-size: 2.5rem;
}

footer h6 {
  color: #ffffff;
  margin-bottom: 2rem;
}

footer img {
  display: inline-block;
}

footer ul.footerContact {
  margin-bottom: 3rem;
}

footer ul.footerHours strong {
  padding-right: 2rem;
}

footer .fineprint {
  margin-top: 4rem;
  color: #888888;
}

/*

BREAKPOINTS

*/

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

/*  html { font-size: 9px; }*/

  .content {
    width: 100%;
    padding-left: 2rem !important;
    padding-right: 2rem!important;
  }

  .row { flex-direction: column; }
  .gallery { flex-direction: column; }

  .desktop { display: none; }

}

@media screen and (min-width:650px) {

  .content { max-width: 1000px; }
  .mobile { display: none; }


}

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

/*  html { font-size: 8px; }*/

}

@media screen and (min-width:1000px) {

/*  .content { width: 1000px; }*/
/*  .mobile { display: none; }*/

}




