/***********************************
** SASS ****************************
***********************************/
/*************************************
** TABLE OF CONTENTS *****************
*************************************/
/*
You should be able to ctrl+f to quickly find what you need.


** 1. Default Page - The whole site will look like this
**		1a. Baseline - backgrounds, borders, fonts, colors(colors to eventually be extracted to its own .css)
**		1b. Navigation - Site Navigation, including responsiveness and mobile view but not inside views (ie menu/specials)
**		1c. Layout - header, footer, anything else that will be universal across the site
**		1d. Extras - Social Icons, any extra visual flare unique to this site

** 2. Inside Views
**		2a. Home - Second only to Default in terms of attention
**		2b. Album/Albums
**		2c. Events - both Calendar and List view
**		2d. Menu
**		2e. Specials
**		2f. Coupons/Gift Cards
**		2g. Forms
**		2h. Legal

** 3. Utility - basic layout classes and css tricks
**		3a. Utility Classes - basic simple function classes to be applied liberally similar to Foundation
**		3b. Pseudo-elements - visual additions and flare that is NOT content
**		3c. Animation - Any custom animations using keyframes

** 4. Other - "And when you gaze long into an abyss, the abyss also gazes into you." ~Friedrich Nietzsche

*/
/***********************************
** 1. DEFAULT PAGE *****************
***********************************/
/* 
** 1a. Baseline **
 */
.row .row {
  /* foundation negative margins for nested .rows caused things to fall off screen*/
  margin-left: 0 !important;
  margin-right: 0 !important;
}

p, a, address, menu * {
  font-family: 'Open Sans Condensed', sans-serif !important;
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6, h1 a, h2 a, nav a, .head-info p, .head-info a {
  font-family: 'Oswald', sans-serif !important;
}

.age-restriction p{
  font-family: 'Great Vibes', cursive !important;
  text-align: center;
  font-size:1.75rem;
  color:red;
  margin-bottom:0;
}

h1, h2, h3, h4, h5, h6 {
  color: red;
}

h2 a {
  color: red;
}

a {
  color: #fff;
}
a:hover {
  color: red;
}

html {
  background-color: #000;
  background: url(../images/primary-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  color: #fff;
}

.main-view, #menu_wrapper {
  background: #000;
  min-height: 400px;
}
.main-view h2, #menu_wrapper h2 {
  margin-top: 20px;
}

.container {
  padding: 16px;
}

/* foundation made it's own block grids slightly off center */
[class*="block-grid-"] {
  margin: 0;
}

/*
** 1b. Navigation **
*/
.top-bar {
  margin: 0 auto;
  background: none;
}

.menu-icon {
  color: white !important;
}

#nav_wrapper {
  background: #000;
  margin-top: 4px;
  margin-bottom: 16px;
}

.top-bar-section {
  z-index: 99;
  background: none !important;
  /*foundation override*/
  color: #fff;
}
.top-bar-section li {
  /* width:16.666666%; # of items divided by 100%, alternative to margin-right separation */
  /* nav responsive section if using margin-right to seperate items */
  margin-right: 4%;
}
.top-bar-section li:first-child {
  margin-left: -30px;
  /* to negate ul.title-area */
}
@media screen and (max-width: 640px) {
  .top-bar-section li:first-child {
    margin-left: 0;
  }
}
.top-bar-section li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .top-bar-section li {
    margin-right: 3%;
  }
}
@media screen and (max-width: 900px) {
  .top-bar-section li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 815px) {
  .top-bar-section li {
    margin-right: 1%;
  }
}
@media screen and (max-width: 725px) {
  .top-bar-section li {
    margin-right: 0%;
  }
}
@media screen and (max-width: 640px) {
  .top-bar-section li {
    width: 100%;
    border-top: 1px solid white;
    border-right: none;
    margin-top: 0;
  }
}
.top-bar-section li a {
  padding: 4px !important;
  font-size: 1rem !important;
}
.top-bar-section a:hover {
  color: red !important;
  background: none !important;
}

#logo {
  margin-bottom: 12px;
}

.name {
  z-index: 99;
}

/*
** 1c. Layout  **
*/
header {
  padding-top: 36px;
}

.head-info {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .head-info {
    text-align: center;
  }
}
.head-info p {
  margin-bottom: 8px;
}

footer {
  background: #000;
  width: 100%;
  padding-bottom: 24px;
}
footer .columns {
  color: #fff;
}
footer p {
  margin-bottom: 0;
  line-height: 1.5;
}
footer h3 {
  font-size: 1.35rem;
  color: white !important;
}
footer address {
  line-height: 1.5;
}
footer address a {
  color: #fff;
}
footer address a:hover {
  color: red;
}
footer ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 16px !important;
}
footer li {
  margin-top: 24px;
  padding-bottom: 4px !important;
}
footer li img:first-child {
  margin-bottom: 24px;
}
footer #legal {
  color: #fff;
  padding: 8px;
}
footer #copyright {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: red;
}

/*
1d. Extras
*/
#social {
  margin-top: 8px;
  z-index: 999;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#social ul {
  margin: 0;
}
#social li {
  display: inline;
  margin-right: 8px;
  list-style: none;
}
#social li:last-child {
  margin-right: 0;
}
#social li a {
  top: 0;
}
#social li img {
  width: 36px;
  margin-bottom: 8px;
  -webkit-transition: all 333ms ease-in-out;
  -moz-transition: all 333ms ease-in-out;
  transition: all 333ms ease-in-out;
}
#social li img:hover {
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

#landing_banner {
  width: 100%;
  position: relative;
}

.owl-carousel {
  margin: 0;
  list-style: none;
}

address {
  font-style: normal;
  line-height: 1.25;
}

address a {
  color: #fff;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
address a:hover {
  color: red;
}

/***********************************
** 2. INSIDE VIEWS *****************
***********************************/
/*
** 2a. Home View
*/
#home h1 {
  padding-top: 12px;
}

#home h2 {
  padding: 8px;
  font-size: 1.75rem;
  background: red;
  color: #fff;
}

#events .owl-carousel {
  padding: 8px;
}
#events .owl-carousel li {
  padding: 8px;
}
#events .owl-carousel p {
  color: red;
  line-height: 1.1;
  font-size: 1.1rem;
}

.owl-prev {
  font-family: FontAwesome;
  font-size: 32px;
  color: red;
  position: absolute;
  top: 30%;
  left: -32px;
}

.owl-next {
  font-family: FontAwesome;
  font-size: 32px;
  color: red;
  position: absolute;
  top: 30%;
  right: -32px;
}

@media screen and (max-width: 1080px) {
  #events .owl-carousel {
    padding: 32px;
  }

  .owl-prev {
    left: 4px;
  }

  .owl-next {
    right: 4px;
  }
}
#home .event-hasimage img {
  border: none;
}

.home-menu {
  padding-top: 32px;
}
.home-menu img {
  margin-top: 8px;
}

.video-frame iframe {
  width: 100%;
}

#home button {
  float: right;
  margin-top: 32px;
}

/*
** 2b. Album/Albums **
*/
.album-block > div, .photo-list > div {
  height: 300px !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  /*reset override*/
  overflow: hidden;
}
.album-block > div h2, .photo-list > div h2 {
  font-size: 1.5em;
  color: red !important;
}
.album-block > div img, .photo-list > div img {
  max-height: 250px;
}
.album-block > div p:first-of-type, .photo-list > div p:first-of-type {
  font-size: 0.75rem;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* album description hover overlay */
.album-block a {
  color: #fff;
}

.album-block > div, .photo-list > div {
  position: relative;
}
.album-block > div a, .photo-list > div a {
  color: #fff;
}
.album-block > div .overlay-desc, .photo-list > div .overlay-desc {
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  padding: 64px 32px 32px 32px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.album-block > div .date, .photo-list > div .date {
  position: absolute;
  bottom: 4px;
}

.album-block .overlay-desc:hover, .photo-list .overlay-desc:hover {
  opacity: 1;
}

/* end album desc overlay */
/*
** 2c. Events **
*/
.event-block {
  min-height: 650px;
  /* min-height to eventually be replaced by flex-box */
  padding-top: 5px !important;
}
@media screen and (max-width: 640px) {
  .event-block {
    min-height: auto;
  }
}
.event-block label {
  cursor: default;
}

.event-content img {
  max-height: 200px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.event-block h2 {
  font-size: 1.3rem;
  color: #CABF40 !important;
}
.event-block label {
  color: red !important;
}

.c-month-view {
  background: red;
}

.have-events {
  background-color: red !important;
  color: #ffffff !important;
}

.specific-day::before {
  content: "\f104";
  font-family: FontAwesome;
  position: absolute;
  left: 20px;
  top: 8px;
  font-size: 4rem;
}
@media screen and (max-width: 640px) {
  .specific-day::before {
    left: 0;
  }
}
@media screen and (max-width: 425px) {
  .specific-day::before {
    font-size: 3rem;
  }
}

.specific-day:hover:before {
  color: #fff;
}

/*
** 2d. Menu **
*/
#menu {
  /*to make it more like .row*/
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  max-width: 62.5rem;
}

#left_menu {
  max-width: 100%;
  margin-right: 16px;
}

.menu-description {
  line-height: 1.5 !important;
}

.top-level {
  background: red;
}

/*MENUS 2.0 BEGINNING CSS*/
#menus {
  padding-bottom: 24px;
}

#menus h2:before {
  /*this selector will change once it's actually in a menu page*/
  content: "\f0f5";
  font-family: FontAwesome;
  margin-right: 8px;
  position: relative;
  top: -4px;
}

#item_view {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
  margin-bottom: 16px;
  color: #fff;
}
#item_view h3 {
  color: #fff;
}
#item_view form * {
  display: inline;
}
#item_view form label {
  color: #fff;
  font-size: 1rem;
}
#item_view form input[type="text"] {
  width: 45px;
  border-radius: 4px;
}
#item_view form input[type="submit"] {
  color: #fff !important;
  background-color: red;
  border: none;
  border-radius: 4px;
  padding: 10px;
  float: right;
}

.image-frame-large {
  border: 2px solid #fff;
  width: 100%;
}
.image-frame-large img {
  width: 100%;
}

.menus-section {
  overflow: hidden;
  /*to negate the side effects of a necessary negative margin on block grids*/
}
.menus-section h3 {
  text-align: center;
  border-bottom: 2px solid #111;
}
.menus-section h3 span {
  font-family: FontAwesome;
}
.menus-section li {
  padding: 24px;
}
.menus-section li > div {
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 12px 45px 12px;
}
.menus-section .image-frame {
  border: 2px solid #fff;
  width: 250px;
  height: 175px;
  overflow: hidden;
  background-color: #111;
  position: relative;
}
.menus-section .image-frame img {
  width: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.menus-section p {
  color: #fff;
}
.menus-section .button {
  margin-bottom: 0;
  width: 45%;
  float: right;
  margin-right: 4%;
  padding: 8px;
}
.menus-section .price {
  float: left;
  border: 1px solid gray;
  border-radius: 5px;
  background: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  width: 45%;
  margin-left: 4%;
}
.menus-section ul {
  display: none;
}
.menus-section ul:first-of-type {
  display: block;
}

#disclaimer {
  color: #111;
  text-align: center;
}

#return_btn {
  font-family: FontAwesome !important;
  font-size: 40px;
  margin-right: 16px;
  color: #111;
  position: relative;
  top: -24px;
}

/*
** 2e. Specials **
*/
#specials_tab_list h3 {
  font-size: 1.5rem !important;
}

.tabs dd.active a {
  background-color: red;
}

.specials-nav {
  background-color: rgba(0, 0, 0, 0.5);
  margin-bottom: 16px !important;
}

.specials-content {
  background-color: transparent;
  padding: 16px;
}

/*
** 2f. Coupons/Gift Cards **
*/
#gift_card .button {
  padding-left: 10px;
  padding-right: 10px;
}

#gift_card {
  background-image: url(/themes/stanfords/images/gift-card.png) !important;
}

/*
** 2g. Forms **
*/
label {
  cursor: default;
}

form label {
  color: #fff;
}

.columns div label {
  color: #fff !important;
}

/*two unmatching "required" asterisks were being generated*/
.form .required label:before, .form .required .label:before, .form label.required:before, .form .label.required:before {
  content: "" !important;
}

/*
** 2h. Legal **
*/
#terms {
  padding: 16px;
}

/***********************************
** 3. UTILITY **********************
***********************************/
/*
** 3a. Utility Classes **
*/
.grid-center li > * {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

.center-this {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  .small-center-this {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1024px) {
  .medium-center-this {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/*
** 3b. Pseudo-elements
*/
/*home-pseudos*/
#circle1:before, #circle2:before, #circle3:before, #circle4:before {
  font-family: FontAwesome;
  text-align: center;
  font-size: 50px;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  margin: 12px 0;
  padding-top: 26px;
  color: #fff;
  background-color: red;
  border-radius: 80px;
}

#circle1::before {
  content: "\f0f7";
}

#circle2::before {
  content: "\f0f5";
}

#circle3::before {
  content: "\f164";
}

#circle4::before {
  content: "\f073";
}

/* end home pseudos */
/*
** 3c. Animation **
*/
/* Currently no custom animation */
/***********************************
** 4. OTHER ************************
***********************************/
aside li {
  margin-top: 30px;
  overflow: hidden;
}

#blank_section {
  line-height: 1.5;
}

h6 {
  text-align: center;
  padding: 20px;
  border: 1px solid white;
}

button {
  background-color: red !important;
  color: #fff;
}

button:hover {
  background-color: #ff3333 !important;
}

div.button, a.button, div.submit_button {
  border: 1px solid #8a0000;
  border-bottom: 1px solid #810000;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 0 #ff1d0c;
  color: white;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  background-color: red;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, red), color-stop(50%, #c70000), color-stop(50%, #a90000), color-stop(100%, #b00000));
  background-image: -webkit-linear-gradient(top, red 0%, #c70000 50%, #a90000 50%, #b00000 100%);
  background-image: linear-gradient(to bottom,red 0%, #c70000 50%, #a90000 50%, #b00000 100%);
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 -1px 1px #730000;
}
div.button:hover:not(:disabled), a.button:hover:not(:disabled), div.submit_button:hover:not(:disabled) {
  cursor: pointer;
  background-color: #f20000;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f20000), color-stop(50%, #bd0000), color-stop(50%, #a20000), color-stop(100%, #a90000));
  background-image: -webkit-linear-gradient(top, #f20000 0%, #bd0000 50%, #a20000 50%, #a90000 100%);
  background-image: linear-gradient(to bottom,#f20000 0%, #bd0000 50%, #a20000 50%, #a90000 100%);
}
div.button:active:not(:disabled), a.button:active:not(:disabled), div.submit_button:active:not(:disabled) {
  box-shadow: inset 0 0 20px 0 #900000, 0 1px 0 white;
}
div.button:disabled, a.button:disabled, div.submit_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

div.button a {
  color: #fff !important;
}
