@charset "UTF-8";
/* CSS Document */
html body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
  /*  
    background: url("../img/black-back30.jpg") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; 
*/
  background-color: white!important;
  color: black !important;
  padding: 0;
    margin: 0;
  scroll-behavior: smooth;
    height: 1200px;
}

h1, h2, h3 {
    margin: 0;
    line-height: 1;
}

:root {
  --yellow: #ffce00;
  --red: #cf102d;
  --gray: #868e96;
  --gray-dark: #343a40;
  --light: #e5e5e5;
  --dark: #333333;
}

/* NAVIGATION */
.navbar {
  font-size: 18px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 500;
  width: 100%;
  padding: 12px 0px;
  box-shadow: 2px 0px 12px 0px rgba(0, 0, 0, 0.5);

}

.navbar img {
    max-height: 40px; display: inline-block; margin-bottom: 3px; margin-top: 3px;
}

.navbar-toggle {
  cursor: pointer;
    position: absolute;
    top: 18px;
    right: 40px;
  color: var(--dark);
  font-size: calc(1.5rem + 1vh);
}

.navmenu {
    display: none;
    font-size: calc(1rem + 1vh);
}

.top-nav > div:first-child {
 margin-top: 12px;
}

    .navitem {
        padding: 6px 0;
        border: 1px solid #333333;
        width: 80%;
        text-align: center;
        cursor: pointer;
        box-sizing: border-box;
        transition: .5s ease;
        margin-bottom: 1rem;
    }
    
.top-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.sub-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;    
}

.sub-nav div {
    padding: 3px 0;
}


/* HEADER */
    header {
        margin-bottom: 1rem;
    }
    
.headsec {
    background-size: cover;
    background-image: url("../img/fr_header.jpg");
    position: relative;
    height: 100vh;
    background-position: center;
}

.headlayer {
    background-color: rgba(0, 0, 0, 0.0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .headimg {
        width: 100%;
        height: auto;
    }
    
.headtext {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12rem;
    font-weight: 700;
    height: 100vh;
}

/* FOOTER */
    footer {
        background-color: var(--dark);
       padding: 2rem 9px;
        color: white;
  }
    
.footitem a {
    color: white;
}

.foot-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}


/* VIDEO */

.vid-section {
    width: 100%;
    margin-bottom: 2.5rem;
}

.vid-container {
position: relative;
padding-bottom: 56.25%;
height: 0; overflow: hidden;
    border: 1px #333333 solid;
}
 
.vid-container iframe,
.vid-container object,
.vid-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


/* TEXT */
    .main-text {
        width: calc(90% - 12px);
        text-align: left;
        font-size: calc(1rem + 2vw);
        margin-bottom: 2.5rem;
    }
    
    .main-text h1 {
        font-size: calc(1.5rem + 8vw);
        text-align: center;
        color: var(--red);
}

    .main-buttons {
        display: flex;
        flex-wrap: wrap;
        flex: 1;
        text-align: center;
        flex-direction: column;
        justify-content: center;
    }
    
    .flex-button {
        position: relative;
        width: 100%;
        height: 30vh;
        border: 4px solid white;
        box-sizing: border-box;
        cursor: pointer;
    }
    
    .button1 {
        background-image: url("../img/fr_tickets.jpg");
        background-size: cover;
        background-position: top;
    }
    
    .button2 {
        background-image: url("../img/fr_learn.jpg");
        background-size: cover;
        background-position: top;
    }
    
    .button3 {
        background-image: url("../img/fr_cookbook.jpg");
        background-size: cover;
        background-position: top;
    }
    
    .button4 {
        background-image: url("../img/fr_schedule.jpg");
        background-size: cover;
        background-position: top;
    }
    
    .button5 {
        background-image: url("../img/fr_wallpaper.jpg");
        background-size: cover;
        background-position: top;
    }
    
    .button6 {
        background-image: url("../img/fr_exclusives.jpg");
        background-size: cover;
        background-position: top;
    }
    
    .button-overlay {
        background-color: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .button-text {
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
        font-size: calc(2rem + 1vw);
        font-weight: 700;
        padding: 5%;
        z-index: 50;
        text-shadow: 2px 2px 6px black;
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: white;
    }


.active {
  display: block;
}


.hide-mobile, .hide {
  display: none;
}

@media (orientation:landscape) and (min-device-height:1000px),
       all and (min-width:1000px)
    
/* @media screen and (min-width: 767px) */ {
    
    
/* NAVIGATION */
    .navmenu {
        font-size: 1rem;

    }
    
    .navbar {
        height: auto;
        background-color: rgba(255, 255, 255, 1.0);
        position: fixed;
        z-index: 100;
    }
    
   .top-nav, .sub-nav {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
  }
    
.top-nav > div:first-child {
 margin-top: 0;
}

    .sub-nav {
        text-align: center;
        justify-content: center;
        color: var(--red);
    }
    
    .sub-nav div {
        padding: 0 12px;
        font-size: 1.5rem;
    }
    
    .social-link a {
        color: var(--red);
        transition: .5s ease;
    }
    
    .social-link a:hover {
        color: var(--dark);
    }
    
  .top-nav li {
    margin: 0;
    list-style-type: none;
  }
    
  .navbar-toggle {
    display: none;
  }
    
    .navmenu {
        display: inherit;
    }
    
    .navitem {
        padding: 24px 0;
        width: 7%;
        line-height: 1;
        margin: 0;
min-height: 80px;
align-items: center;
display: flex;
justify-content: center;  
        background-color: var(--red);
        color: white;
    }
    
    .navitem:hover {
        background-color: var(--yellow);
        color: black;
        border: 1px solid var(--dark);
    }
    
/* HEADER */
    
    header {
        margin-bottom: 2.5rem;
    }
    
.headsec {
    height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
    top: 150px;
}
    
    .headimg {
        top: 150px;
        margin-top: 150px;
    }
    
.headtext {
    font-size: 6rem;
    height: 50vh;
}
    
/* FOOTER */
        .foot-div {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
       top: 0;
       left 0;
       padding: 0 9px;
  }
    

    
     .footitem {
        padding: 0 12px;
        text-align: center;
        cursor: pointer;
         transition: .5s ease;
    }
    
    .footitem a:hover {
    color: var(--yellow);
}


    
.leftfoot {
  flex-grow: 1;
    text-align: left;
    font-weight: 700;
    /* this is the important bit */
}

.rightfoot {
    display: flex;
  justify-content: space-around;
  flex-direction: column;
}


.hide-mobile {
    display: inline-block;
  }
  
    .hide-desktop {
        display: none;
    }
    
/* VIDEO */
    .vid-section {
    width: 50%;
}


 
 /* TEXT */
    .main-text {
        font-size: calc(1rem + .5vw);
    }
    
    .main-text h1 {
        font-size: calc(1.5rem + 3vw);
}

   .main-buttons {
        flex-direction: row;
       justify-content: center;
       text-align: center;
    }
    
        .flex-button {
        width: 50%;
            height: 50vh;
    }
        
    .button-text {
        font-size: calc(2rem + 2vw);
    }

    .button-overlay:hover {
        background-color: rgba(0, 0, 0, 0.1);
  transition: .5s ease;
    }

    .button-overlay {
        background-color: rgba(0, 0, 0, 0.5);
    }



    }
    