/* colors: https://coolors.co/app/751816-dfd8c9-772417-b99892-f9e9bc */

@font-face {
  font-family: 'BebasKai';
  src:
    url('/resources/fonts/BebasKai.otf') format('opentype'),
    url('/resources/fonts/BebasKai.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* top-level properties */
:root {
  --bg-color: whitesmoke;
  --fg-color: #111;
  --mfb-tan: #fdf1d7;
  --mfb-red: #751816;
  /* --font-sans: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
  --font-sans: 'Roboto', sans-serif;
  --font-serif: 'Droid Serif', serif;
  --font-header: 'BebasKai', sans-serif;
  --font-typed: 'Special Elite', courier, serif;
}

summary {
  display: list-item; /* fix stupid normalize.css breaking details */
  cursor: pointer;
}

summary h3 {
  color: var(--mfb-red);
}

.cast summary {
  list-style: none;
}

.cast details .bio {
  /* display: block; */
  -webkit-mask-image: linear-gradient(180deg, black, 75%, transparent);
  mask-image: linear-gradient(180deg, black, 75%, transparent);
  height: 6rem;
}

.cast details[open] .bio {
  /* display:none; */
  -webkit-mask-image: none;
  mask-image: none;
  height: auto;
}

/* utility */
.textcenter {
    display: block;
    width:100%;
    max-width: 100vw;
    text-align: center;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.block {
   display: block;
}

.hidden {
  display: none;
}

.clear {
    clear:both;
}

.tiny {
  font-size: x-small;
}
.small {
  font-size: small;
}
.normal {
  font-size: 100%;
}
.large {
  font-size: large;
}

.tightup {
  padding-top: 0;
}

.tightdown {
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .wide {
    display:none;
  }
}

/* mobile first... */

/** general **/
.container {
  max-width: 1000px;
}
body {
/*    font-family: 'Open Sans', sans-serif;    */
    font-family: var(--font-serif);
    background-color: #abb1b7;
}

p {
  line-height: 1.4em;
  /* font-family: 'Open Sans', sans-serif;    */
  font-family: var(--font-serif);
}

h1, h2, h3, h4, h5, h6 {
/*    font-family: 'Special Elite', courier, serif;*/
    /* font-family: 'Lora', serif; */
    /* font-family: 'BebasKai','Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    font-family: var(--font-header);

}

h1 {
    font-size: xx-large;
    text-align: center;
    padding-top: 1.4em;
}

h2 {
    font-size: xx-large;
    text-align: center;
    padding-top: 1.4em;
}

h3 {
    /*font-family: 'Special Elite', courier, serif;*/
    font-size: x-large;
    text-align: center;
  }

h4.question {
  font-size: medium;
  font-weight: bold;
  margin-bottom: 0.1em;
}

/* p.answer {
} */

address {
  font-style: normal;
  font-weight: bold;
  padding-bottom: 0.6em;
}

.subtitled {
  padding-bottom: 0;
  margin-bottom: 0;
}
.subtitle {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 1rem;
  font-weight: bold;
}

.fancy {
  font-variant: small-caps;
  font-style: italic;
  padding-top: 1rem;
  font-size: large;
}

.sidebyside {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nobr {
  /* display: inline-block; */
  white-space: nowrap;
}

.button {
    font-family: var(--font-sans);
    color: #dfd8c9;
    background-color: #751816;
    border-color: white;
}

.button:hover, .button.button-primary:hover {
    background-color: #a6221f;
    border-color: white;
}

.button.button-primary {
    background-color: #751816;
    border-color: white;
}
button[disabled], html input[disabled] {
  cursor: not-allowed;
}
button[disabled].button {
  background-color: silver;
}

img.circle {
  border-radius: 50%;
}

img.rounded {
  border-radius: 10%;
}

.icon {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.row.message {
  padding: 1rem;
  background-color: #b00000;
  text-align: center;
  font-family: var(--font-sans);
  text-shadow: 1px 1px 2px black;
  color: #dfd8c9;
}

/** header/navigation **/
#header {
  position: relative;
  background-color: #111;
  z-index: 10;
}

#logo {
  display: inline-block;
  width: 75%;
  padding-left: 18%;
}

#logo img {
  height: 4.5em;
}

/* hamburger menu */
#menu-btn {
  position: absolute;
  top:0.4em;
  left: 0.4em;
}

.menu-btn {
  display: inline-block;
  padding: 0.8em;
  width: 1.5em;  
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  background: #fff;
  z-index: 99;
}

#menu.fixed {
  position: fixed;
  display: none;
  width: 100%;
  background-color: #111;
  top: 0;
  left: 0;
  z-index: 5;
  margin-top:0;
  margin-bottom:0;
  padding-top: 0.8em;
  padding-bottom: 0.5em;
}

#menu.fixed li {
  display: inline-block;
  padding-left: 1em;
  font-size: medium;
}

#menu.fixed li.logo {
  list-style-type: none;
}
#menu.fixed li.logo img {
  height: 1.3em;
  position: relative;
  top: 0.3em;
}

#menu.fixed ul.submenu {
  display: none;
}

#menu.float {
  position: fixed;
  display: block;
  color: #b7b7b7;
  width: 90%;
  padding-left: 10%;
  background-color: rgba(2,2,2,.75);
  z-index: 100;
  font-size: large;
  font-weight: bold;
}

#menu.float li {
  margin:1em;
  list-style-type: disc;
}

#menu.float li.logo {
  display: none;
}

#menu li a {
  color: #ccc;
  text-decoration: none;
}

#menu li.book {
  list-style-type: none;
}

#menu li.book a {
  color: white;
  background-color: #333;
  border: thin white solid;
  border-radius: 5px;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}

.notice {
  /* display: none; */
  position: relative;
  text-align: center;
  z-index: 10;
  width: 90%;
  
  font-size: medium;
  background: #FFCC05;  /*#333;  #AE9963;  #D6BF86; */
  color: #111;
  padding-top: 0.4em;
  padding-bottom: 0.4em;/* Larger than mobile */
  padding-left: 5%;
  padding-right: 5%;
}
.notice.fixed {
  position: fixed;
  display: block;
  top:0; left:0;
  z-index: 9;
}
.notice a {
  color: blue;
}

.countdown {
  /* text-align: center;
  width: 100%;
  background-color: #1115;
  font-size: large; */
}
.countdown .changes {
  font-weight: bold;
  /* font-size: larger; */
}

.veritas {
  font-size: large;
  text-align: center;
  padding-bottom: 2rem;
}

/* info icons */
.icons {
  padding-top: 0.25rem;
  padding-bottom: 1rem;
  background-color: #111;
}
.icons .foots {
  width:97%;
}
.icons .foots span {
  padding-left: 1rem;
  white-space: nowrap;
}

/** bios (in several pages) */
.cast {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  row-gap: 10px;
  column-gap: 20px;
}

.cast .block {
  width: 95%;
  max-width: 23rem;
  flex-grow: 1;
  /* flex-basis: 33%; */
}

.cast h3 {
  font-size: 120%;
  margin-bottom:0;
}

.cast details {
  padding-bottom: 2rem;
}

.cast .bio {
  font-size: small;
}

.cast {
  text-align: left;
}

/** review icons in several locations */

.contacticon {
    height: 6rem;
}

.reviews .contacticon {
  height: 3rem;
  padding-left: 2rem;
  padding-bottom: 1rem;
}
.reviews .contacticon.first {
  padding-left: 0;
}
.reviews .contacticon#facebook {
  height: 2.7rem;
  position: relative;
  bottom: 0.4rem;
}
.reviews .contacticon#yelp {
  height: 6rem;
}
.reviews .contacticon#google {
  height: 3.6rem;
  position: relative;
  bottom: -0.5rem;
}

/* awards, shared section */

.awards {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align:center;
  background-color: #222;

  .container {
    width:96%;
    max-width: 96vw;
  }

  h2 {
    color: #eee;
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .award {
    display: inline-block;
  }
  .award p {
    font-style: italic;
    font-size: 14px;
    color: #ccac47 !important;
  }
  .award img {
    width: 90px;
    padding: 0.7rem;
  }

  @media (min-width: 560px) {
      .award img {
        width: 149px;
      }
  }
}

/* gallery, shared section */

/** gallery */
.section.gallery {
  padding-top: 5rem;
  padding-bottom: 5rem;

  h1 {
    padding-bottom: 2rem;
  }

  .container {
    width: 100%;
    max-width: 800px;
  }
  .container figure {
    width: 100%;
  }

  @media (min-width: 550px)  { .container { width: 80%; } }
  @media (min-width: 750px)  { .container { width: 70%; } }
  @media (min-width: 1000px) { .container { width: 60%; } }
  @media (min-width: 1200px) { .container { width: 50%; } }

  /* Override Skeleton to jam more gallery in */
  @media (max-width: 549px) {
    .container { max-width: 420px; }
    .three.columns {
      width: 50%;
      padding-right: 15px;
      padding-left: 15px;
    }
  }

  .my-gallery .columns {
    text-align: center;
  }
  .my-gallery figure {
    display: inline-block;
    position:relative;
    width: 100%;
    max-width: 170px;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 1.4rem;
    overflow: hidden;
  }
  .my-gallery figure:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .my-gallery figure a {
    display:block;
    position:absolute;
    width: 100%;
    height: 100%;
  }
  .my-gallery figure img {
    position:relative;
  }
  .my-gallery figure img.horiz {
    height: 100%;
  }
  .my-gallery figure img.vert {
    width: 100%;
  }
}


/* show info icon bar */
.bi {
  position: relative;
  bottom: -0.2rem;
  padding-right: 0.2rem;
}

.info {
  /* font-family: Avenir, Helvetica, Arial, sans-serif; */
  font-family: var(--font-sans);
  /* font-size: 1.5em; */
  /* line-height: 1.6; */
  
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.0rem;
  padding-bottom: 0.5rem;
  /* background-color: #eaf0f8; */
  /* width: 100%; */
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: left;
}
.info div {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 15rem;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 550px) {
  .info {
    padding-left: 1rem;
    justify-content: center;
  }
}


/* Larger than mobile */
@media (min-width: 400px) {
  .reviews .contacticon#yelp {
      position: relative;
      height: 6rem;
      top: 0rem;
    }
}

/** footer section **/

.section.footer {
    padding-top: 2rem;
    padding-bottom: 1rem;
    background-image: url('/resources/images/backgrounds/random_dark_variations.jpg');
    background-color: #13171d;
    /* background-color: #751816; */
    font-family: var(--font-sans);

    /* background-size: 100%; */
    color: #dfd8c9;

    @media (min-width: 550px) {
    }

    .row {
      text-align: center;
    }
    
    .logobanner {
      width:90%;
    }
    
    .contact {
      padding-bottom: 1rem;
    }
    
    .contact h2 {
      font-size: large;
      padding-top: 1rem;
      padding-bottom: 0.2rem;
      margin-bottom: 0;
    }
    
    .address {
      padding-top: 2rem;
    }
    
    .navigation {
      text-align: left;
    }

    .navigation h2 {
      padding: 0;
      margin: 0;
    }

    .navigation h3 {
      padding: 0;
      margin: 0;
      text-align: left;
      font-size: 18px;
    }

    .middle {
      padding-top: 1rem;
    }
    
    .socials {
      padding-top: 2rem;
      padding-bottom: 1rem;
    }

    .socials a {
      color: whitesmoke;
      text-decoration: none;
    }

    .socials svg {
      padding: 0.5rem;
    }

    .copyright {
      color: #ccc5b7;
    }
}

.logobanner {
    width:80%;
}

/** page: party **/
div.party {
  background-color: #222;
  color: #eee;
}

/** archive notes */
.section#archives h1 {
  padding-top: 0;
}

/** temporary: COVID passport **/

.section#covid {
  background-color: #D6BF86;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.passport {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  
  background-color: #f8f7f2;
  background-image: url('/resources/images/specialevents/passport/bg.jpg');
  background-position: center;
  background-size: cover;
  border-radius: 2rem;
  border: thin solid silver;
  box-shadow: -5px 5px #888888;  
  
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}
.passport .head {
  padding-top: 1rem;
  width: 98%;
}
.passport .head img {
  width: 100%;
}
.passport-item {
  max-width: 35rem;
  padding: 2rem;
  /* font-family: sans-serif; */
  font-family: var(--font-sans);
  font-size: 85%;
}
.passport-item img {
  float: left;
  height: 10rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
}

.passport-item .text {
  padding-top: 1.5rem;
}

#private img { padding-left: 3rem; }
#masks img { padding-top: 1rem; padding-bottom: 3rem; }
#vaccinated img { padding-left: 3rem; height: 12rem }
#propswap img {  }
#airfilter img { padding-left: 3rem; }
#sickpolicy img { height: 13rem }


@media (min-width: 975px) {
  #private { order: 0; }
  #masks { order: 2; }
  #vaccinated { order: 1; }
  #propswap { order: 3; }
  #airfilter { order: 4; }
  #sickpolicy { order: 5; }
}

/** end passport **/

/* Larger than small phone */
@media (min-width: 350px) {
}

/* Larger than mobile */
@media (min-width: 400px) {
    .mobileonly {
      display:none;
    }
}

/* Larger than phablet */
@media (min-width: 550px) {
  #logo {
    padding-left: 30%;
  }  
}

/* Larger than tablet */
@media (min-width: 900px) {
  #logo {
    padding-left: 10%;
  }
  /* show non-hamburger menu */
  .menu-btn {
    display: none;
  }
  #header {
    width: 100%;
  }
  #menu.fixed {
    position: absolute;
    display:block;
    z-index: 11;
    left: 40%;
    top: 1em;
    width: auto;
  }
  #menu.fixed li {
    font-size: large;
  }
  #menu.fixed li.logo {
      display: none;
  }

}

/* Larger than desktop */
@media (min-width: 1000px) {
    .largeonly {
      display:none;
    }
  #logo {
    padding-left: 12%;
  }
  #menu {
    left:50%;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}