:root {
  --blueberry: #6B7A8F;
  --apricot: #F7882F;
  --citrus: #F7C331;
  --apple-core: #DCC7AA;
  --navy-blue: #0F1626;
  --leather: #AB987A;
  --coral: #FF533D;
  --eggshell: #F5F5F5;
  --lightblue: #8EAEBD;
  --sky:#CAEBF2;
  --feather: #77C9D4;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
}

@media screen and (max-width: 667px) {
    body {
        overflow-x: hidden !important;
    }
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    nav div.navbar-header {
        margin: 15px 15px;
    }
    .navbar-brand>img {
        padding: 5px;
        margin: 5px 15px;
    }
    .iframe-scroll-wrapper-sched {
        position: relative;
        margin: 0 auto;
        padding: 5px;
        width: 90%;
        -webkit-overflow-scrolling: touch;
        overflow: auto;
    }
}

/* You can change the height of the carousel by changing the height in the class below. It is set to 50% by default, but can be any height! */

.carousel {
    height: 405px;
}

.carousel-inner{
/*just incase the flash (style above) comes back*/
   background: #000;
   height: 400px;
}

.carousel-inner>.item{
   /*disables white flash*/
   -webkit-transition: -webkit-transform .5s ease-in-out;
   -o-transition: -o-transform .5s ease-in-out;
   transition: transform .5s ease-in-out;
   height: 400px;
}

/* Carousel Button */
div.carousel-caption a {
    background-color: var(--navy-blue);
}

div.carousel-caption a:hover {
    background-color: var(--sky);
    color: var(--blueberry);
}

/* Merriweather Font*/
@font-face{
	font-family: 'Merriweather';
    src: url('./merriweather/Merriweather-Regular.ttf') format('truetype');
}

/* lekton Font*/
@font-face{
	font-family: 'lekton';
    src: url('./lekton/Lekton-Regular.ttf') format('truetype');
}

/* Play Video Button Styles */
div.video-link.play-video {
    background-color: #ffffff;
    color: var(--navy-blue);
}

div.video-link.play-video:hover {
    background-color: #ffffff;
    color: var(--blueberry);
}

ul.play-video {
  margin: 0 auto;
  padding-right: 60px;
  list-style: none;
}
li.play-video {
    font-size : 1em;
    margin: 1em 0;
}

li.play-video > *{
  display: inline-block;
  vertical-align: middle;
}

/* End Play Video Button Styles */

/* video light box styles */
i.fa-times {
  color: #ffffff
}
.summary{
   display:block;
  position: relative;
  width:90%;
  margin:0 auto;
  padding:20px 0 20px 0;
  text-align:center;
}
.video-link{
  cursor:pointer;
  display:block;
  position: relative;
  width:90%;
  max-width:400px;
  background-color:#336699;
  margin: 0 auto 10px auto;
  text-align:center;
  color:#fff;
  padding:20px 0 20px 0;
  transition: all 0.5s;
}

.video-link:hover{
  background-color:#000;
}

.overlay{
  position: fixed;
  top:0px;
  left: 0px;
  height:100%;
  width:100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.9);
  opacity:0.9;
  display:none;
}


.close-video:hover{
  opacity: 0.6; /* css standard */
  filter: alpha(opacity=60); /* internet explorer */
}

.main-vid-box{
  position: fixed;
   width: 100%;
  height:100vh;
  display:none;
  top:0px;
  left:0px;
  z-index: 999;
}

.videoWrapper {
  position: relative;
  z-index:999;
  background-color:#000;
  width:100%;
  height: 100%;
  margin:0 auto;
}
.videoWrapper video {
  position: relative;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100% !important;
  height: 100% !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 40px;
  border-style: solid;
  border-color: transparent;
}

/* End video light box styles */

p.lead {
    color: #000000;
}

p:not(.lead) { font-family: 'Merriweather', Arial, sans-serif; }

/* Nearby Lodging/Camping Button */
p.parks a {
    background-color: var(--navy-blue);
    color: var(--eggshell);
}

p.parks a:hover {
    background-color: var(--sky);
    color: var(--blueberry);
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.fill-75 {
    margin-top: 2.5em;
    width: 75%;
    height: 75%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/* Overriding Bootstrap CSS colors for nav things */
nav.navbar {
    background-color: var(--eggshell);
    padding: 15px;
}

nav div.navbar-header a.navbar-brand {
    color: var(--navy-blue);
}

/* Navbar logo styles */

.navbar-brand {
  padding-bottom: 0px;
}

.navbar-brand>img {
    position: relative;
    top: -52px;
}

/* nav hamburger */
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: var(--blueberry);
 }

/* change colors of the nav links states */
ul.nav.navbar-nav li a {
    color: var(--navy-blue);
}

ul.nav.navbar-nav li a:hover {
    color: var(--apricot);
}

ul.nav.navbar-nav li a:focus {
    color: var(--apricot);
}



ul.nav.navbar-nav li .nav-social {
    color: var(--navy-blue);
}

div.container.main {
    background-color: var(--eggshell);
}

/* Content Section Styles*/

h3 {
    color: var(--navy-blue);
}
/*  Image Shadowing  */
.drop-shadow {
    filter: drop-shadow(0px 0px 2px var(--navy-blue));
}

.box-shadow {box-shadow: 0px 0px 10px var(--navy-blue)}; /*rgba(0,0,0,.5)}*/
div img {
    position: relative;
    margin: 0 auto;
    width: 600px;
    height: 400px;
}

div#thankyou_message img{
    margin: 0 auto;
    width: 400px;
    height: 300px;
    padding: 10px;
}

.img-half-height {
    height: 500px;
}

.img-half-height_venue {
    width: 400px;
    height: 500px;
}

form#gform {
    margin: 10px;
    margin-bottom: 20px;
}

div.content-section-a {
    position: relative;
}

div.content-section-b {
    position: relative;
}

div.section-divider {
    margin: 1em;
    height: 5px;
    width: 100%;
}

.custom-bg-one {
  background-image: linear-gradient( var(--feather), var(--apple-core));
  background-attachment:fixed;
  background-repeat: no-repeat;
}

.custom-bg-two {
  background-image: linear-gradient( var(--citrus), var(--apple-core));
  background-attachment:fixed;
  background-repeat: no-repeat;
}

.banner {
    padding: 100px 0;
    color: #f8f8f8;
    background: url('../img/IMG_9519.JPG') no-repeat center center;
    background-size: cover;
}

.banner h2 {
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
    font-size: 3em;
}

.banner ul {
    margin-bottom: 0;
}

.banner-social-buttons {
    float: right;
    margin-top: 0;
}

div.carousel-buttons {
   display: inline-flex;
   flex-wrap: wrap;
   gap: 24px;
}

div.carousel-buttons  a {
  padding: 10px;
}

form#newsletter input {
  margin: 0 auto;
  padding: 10px;
  width: 80%;
}

form#newsletter button {
  padding: 10px;
  width: 80%;
  background-color: #000000;
  color: #ffffff;
}

form#gform button {
  padding: 15px;
  width: 100%;
}



@media(max-width:1199px) {
    ul.banner-social-buttons {
        float: left;
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    .banner h2 {
        margin: 0;
        text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
        font-size: 3em;
    }

    ul.banner-social-buttons > li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons > li:last-child {
        margin-bottom: 0;
    }
}

/* Portrait */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
    div.carousel-caption h2 {

    }
    div.carousel-buttons {
        flex-direction: column;
        gap: 10px;
    }

    div.carousel-buttons  a {
        padding: 15px;
        width: 100%;
    }

    form#newsletter input {
      margin: 0 auto;
      padding: 10px;
      width: 100%;
    }

    form#newsletter button {
      padding: 10px;
      width: 100%;
    }

    form#gform button {
      padding: 10px;
      width: 100%;
    }
}

footer {
    position: relative;
    width: 100%;
    padding: 50px 0;
    text-align: center;
    background-color: #f8f8f8;
    margin: 0 auto;
}

footer div.container div.row ul {
    position: relative;
    margin: 0 auto;
    padding-bottom: 15px;
    width: 80%;
}

footer div.container div.row ul li {
    background-color: #f8f8f8;
    display: inline-block;
    margin: 0 auto;
}

footer div.container div.row p {
    position: relative;
    margin: 0 auto;
    width: 80%;
    text-align: center;
    background-color: #f8f8f8;
}

p.copyright {
    margin: 15px 0 0;
}

.iframe-scroll-wrapper {
    position: relative;
    margin: 0 auto;
    width: 80%;
    height: 800px;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}

/*.iframe-scroll-wrapper iframe {
    width: 100%;
    height: 920px;
}*/

/* schedule iframe styles iframe-scroll-wrapper-sched */
.iframe-scroll-wrapper-sched {
    position: relative;
    margin: 0 auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}

.iframe-scroll-sched {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}


ul.faq-list {
  margin: 0;
}
ul.faq-list {
  list-style-type: none;
}
ul.faq-list > li {
  text-indent: 5px;
}
ul.faq-list > li:before {
  content: "-";
  text-indent: 5px;
}

.sched-disclaimer {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

div#map {
  width: 100%;
  height: 400px;
}

p.newborder {
  text-align: center;
  padding: 5px;
  border: 2px solid green;
}

strong span.new {
  color: green;
}

.center_content {
  text-align:center;
}

div.center_text h3 {
  margin: 0 auto;
  text-align:center;
}

p.center_text {
  margin: 0 auto;
  text-align:center;
}

h1.center_text {
  margin: 0 auto;
  text-align:center;
}

div.center_image {
  width: 100%;
  margin: 0 auto;
  text-align:center;
}

div.newsletter_top {
  width: 100%;
  height: 15px;
  margin-bottom: 30px;

}
