/* variables */
/* components */
.reservations a, .button a {
  
  background: white;
  color: #064163;
  text-transform: uppercase;
  transition: all 300ms linear;
  font-size: 18px;
  font-weight: normal;
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 500;
  display: inline-block;
  padding: 20px 80px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 700px) {
  .reservations a, .button a {
    padding: 20px 20px;
  }
}
.reservations a:hover, .button a:hover {
  background: #064163;
  color: #FFFFFF;
  cursor: pointer;
}
.reservations.blue a, .button.blue a {
  background: #064163;
  color: #FFFFFF;
}
.reservations.blue a:hover, .button.blue a:hover {
  background: #AF9F91;
  color: #FFFFFF;
}
.reservations.gold a, .button.gold a {
  background: #AF9F91;
  color: #FFFFFF;
}
.reservations.gold a:hover, .button.gold a:hover {
  background: #064163;
  color: #FFFFFF;
}

.nye-tickets {
  margin-top: 60px;
  background-color: red;
}

.dev {
  background-color: red;
  color: black;	
}

.newsletter a {
  background: #FFF;
  color: #064163;
  text-transform: uppercase;
  transition: all 300ms linear;
  font-size: 18px;
  font-weight: normal;
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 500;
  display: inline-block;
  padding: 20px 80px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  letter-spacing: 2px;
}
@media screen and (max-width: 700px) {
  .newsletter a {
    padding: 20px 20px;
  }
}

.socialBtn {
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  background: #064163;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  display: inline-block;
  transition: all 300ms linear;
  margin-right: 5px;
}
.socialBtn:before {
  font-family: "FontAwesome";
  color: #FFFFFF;
}
.socialBtn:hover {
  background-color: #FFFFFF;
}
.socialBtn:hover:before {
  color: #064163;
}

.facebookBtn:before {
  content: "\f09a";
}

.instagramBtn:before {
  content: "\f16d"; /* add instagram icon */
}

.homeBtn:before {
  content: "\f015";
}

.mailBtn:before {
  content: "\f0e0"; /* add instagram icon */
}

.phoneBtn:before {
  content: "\f095"; /* add instagram icon */
}

/* seven rooms */
#sr-res-root.sr-lg.sr-dark {
  border-radius: 0 !important;
  text-transform: uppercase !important;
  background-color: #064163 !important;
  transition: all 300ms linear !important;
  display: inline-block !important;
  padding: 22px 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 30px !important;
  box-sizing: unset !important;
  width: 380px !important;
  height: auto !important;
}
#sr-res-root.sr-lg.sr-dark span {
  max-width: 100% !important;
  font-size: 18px !important;
  font-weight: normal !important;
  font-family: "mozaic-geo-variable", sans-serif !important;
  font-variation-settings: "wght" 500 !important;
  letter-spacing: 2px !important;
}
#sr-res-root.sr-lg.sr-dark i.sr-fa.sr-fa-logo {
  display: none !important;
}
#sr-res-root.sr-lg.sr-dark:hover {
  background-color: #AF9F91 !important;
}
#sr-res-root.sr-lg.sr-dark.blue {
  color: #FFFFFF !important;
}
#sr-res-root.sr-lg.sr-dark.blue:hover {
  background-color: #AF9F91 !important;
}
#sr-res-root.sr-lg.sr-dark.white {
  background-color: #FFFFFF !important;
  color: #064163 !important;
}
#sr-res-root.sr-lg.sr-dark.white:hover {
  background-color: #AF9F91 !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
}
@media screen and (max-width: 700px) {
  #sr-res-root.sr-lg.sr-dark {
    max-width: 265px !important;
    width: 265px !important;
  }
}

/* header */
header {
  background: #064163;
  width: 100%;
  position: fixed;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 3;
}
header .container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
header .container .logo {
  width: 30%;
}
header .container .logo img {
  max-height: 50px;
}
@media screen and (max-width: 700px) {
  header .container .logo img {
    max-height: 45px;
  }
}
header .container .menu {
  margin-left: auto;
  display: flex;
}
header .container .menu ul.desktop {
  display: inline;
  list-style-type: none;
  padding-left: 0;
}
header .container .menu ul.desktop li {
  margin: 0 0 0 40px;
  display: inline-block;
}
header .container .menu ul.desktop li a {
  text-transform: uppercase;
}
header .container .menu ul.desktop li a:hover {
  color: #AF9F91;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  header .container .menu ul.desktop {
    display: none;
  }
}
header .container .menu .hamburger-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .container .menu .hamburger-menu {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  header {
    height: 80px;
  }
}

.stay__connected {
  margin-top: 30px;
  text-transform: uppercase;
}
.stay__connected hr {
  max-width: 50%;
  margin-bottom: 30px;
}
.stay__connected p {
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.stay__connected .newsletter a {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .stay__connected .newsletter a {
    margin-bottom: 20px;
  }
}

/* footer */
.footer {
  background-color: #064163;
  width: 100%;
  font-family: "mozaic-geo-variable";
  color: #FFFFFF;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}
.footer .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
.footer .container .contact-info {
  max-width: 320px;
}
.footer .container .contact-info p {
  font-size: 16px;
}
.footer .container .contact-info .logo img {
  max-height: 65px;
}
.footer .container .contact-info .pipe {
  margin: 0 5px;
}
.footer .container .contact-info a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 500ms;
}
.footer .container .contact-info a:hover {
  color: #AF9F91;
}
.footer .container .newsletter__section {
  margin-left: auto;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 375px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer .container .newsletter__section P {
  padding-bottom: 0;
}
.footer .container .newsletter__section a {
  font-size: 14px;
  padding: 20px 40px;
  background: #FFFFFF;
  color: #064163;
  margin-top: 0;
}
.footer .container .newsletter__section a:hover {
  background: #AF9F91;
  color: #FFFFFF;
}
@media screen and (max-width: 700px) {
  .footer .container .newsletter__section a {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .container .newsletter__section {
    margin-top: 20px;
  }
}
@media screen and (max-width: 700px) {
  .footer .container .newsletter__section {
    margin-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .footer .container {
    flex-direction: column;
  }
}


/* about */
.section.staff .container {
  max-width: 1100px;
}
.section.staff .container .member {
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
}
.section.staff .container .member .image {
  width: 33%;
  max-width: 400px;
}
.section.staff .container .member .image img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .section.staff .container .member .image {
    width: 100%;
  }
}
.section.staff .container .member .content {
  width: 66%;
  padding-left: 30px;
  text-align: left;
  margin-top: 40px;
}
.section.staff .container .member .content p {
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .section.staff .container .member .content {
    margin-top: 20px;
  }
}
@media screen and (max-width: 700px) {
  .section.staff .container .member .content {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .section.staff .container .member {
    flex-direction: column;
  }
}

.section.private__dining .container .inquiry a {
  color: #064163;
  font-weight: bold;
}
.section.private__dining .container .inquiry a:hover {
  color: #AF9F91;
}
.section.private__dining .container .inquiry .button a {
  color: #FFFFFF;
  font-weight: normal;
}
.section.private__dining .container .menus {
  margin: 50px 0;
}
.section.private__dining .container .menus .call__out {
  display: flex;
  justify-content: space-between;
}
.section.private__dining .container .menus .call__out a {
  width: 48%;
}
.section.private__dining .container .menus .call__out a .item {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 0;
  color: #FFFFFF;
  font-size: 26px;
}
.section.private__dining .container .menus .call__out a .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 65, 99, 0.3); /* Your gradient color */
  z-index: 1; /* Overlay is above the background image */
  transition: all 300ms linear;
}
.section.private__dining .container .menus .call__out a .item:hover::before {
  background: rgba(6, 65, 99, 0.6); /* Your gradient color */
}
.section.private__dining .container .menus .call__out a .item.dining {
  background-image: url(../img/marilena-dining-menus.jpg);
}
.section.private__dining .container .menus .call__out a .item.winelist {
  background-image: url(../img/marilena-wine-list.jpg);
}
.section.private__dining .container .menus .call__out a .item .item__content {
  position: relative; /* Add this line */
  z-index: 2; /* Text is at the forefront */
}
.section.private__dining .container .menus .call__out a .item:hover {
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .section.private__dining .container .menus .call__out a {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 700px) {
  .section.private__dining .container .menus .call__out {
    width: 100%;
    flex-direction: column;
  }
}

/* mobile menu */
#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}

#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}

.menu__btn {
  position: fixed;
  top: 40px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition-duration: 0.25s;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 40px 0 0;
  background-color: #064163;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition-duration: 0.25s;
  text-align: center;
}
.menu__box ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.menu__box ul li {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.menu__box ul li a {
  font-size: 16px;
}
.menu__box img {
  width: 50%;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
}

.menu__item:hover {
  background-color: #CFD8DC;
}

/* banners */
.banner {
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("../img/background.jpg");
  background-size: cover;
  background-blend-mode: color;
}
.banner .middle {
  height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner .middle .logo {
  margin-bottom: 30px;
  text-align: center;
}
.banner .middle .logo img {
  width: 550px;
  height: auto;
}
@media screen and (max-width: 700px) {
  .banner .middle .logo img {
    width: 100%;
  }
}
.banner .middle p {
  font-size: 22px;
  margin-top: 0;
  font-weight: normal;
}
@media screen and (max-width: 1199px) {
  .banner .middle {
    height: 600px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 980px) {
  .banner .middle {
    height: 600px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 700px) {
  .banner .middle {
    height: 500px;
    padding-top: 80px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.banner.inner.about {
  background-image: url(../img/marilena-cafe-about.jpg);
  background-blend-mode: inherit;
  background-position: 50%;
}
@media screen and (max-width: 700px) {
  .banner.inner.about {
    height: 550px;
  }
}
.banner.inner.press {
  background-image: url(../img/marilena-cafe-press.jpg);
  background-blend-mode: inherit;
}
@media screen and (max-width: 700px) {
  .banner.inner.press {
    height: 550px;
    background-position: 50%;
  }
}
.banner.inner.private__dining {
  background-image: url(../img/marilena-private-dining-banner.jpg);
  background-blend-mode: inherit;
}
@media screen and (max-width: 700px) {
  .banner.inner.private__dining {
    height: 550px;
    background-position: 50%;
  }
}
.banner.inner .middle {
  height: 700px;
}
@media screen and (max-width: 1199px) {
  .banner.inner .middle {
    height: 400px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 700px) {
  .banner.inner .middle {
    height: 200px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 1199px) {
  .banner.inner {
    height: 500px;
  }
}
@media screen and (max-width: 700px) {
  .banner.inner {
    height: 280px;
  }
}
@media screen and (max-width: 700px) {
  .banner {
    background-position: 85%;
  }
}

html {
  color: #FFF;
  margin: 0;
}

body {
  margin: 0;
  font-family: "mozaic-geo-variable";
}

a {
  color: #FFF;
  text-decoration: none;
  transition: color 300ms linear;
}
a:hover {
  color: #000;
}

h1, h2, h3 {
  font-size: 28px;
  font-weight: normal;
  font-family: "mozaic-geo-variable", sans-serif;
  font-variation-settings: "wght" 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 0;
  line-height: 36px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 15px;
  line-height: 18px;
  margin-top: 0;
}

p {
  font-size: 18px;
  line-height: 1.5em;
}

.fullwidth__ribbon {
  background: #064163;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.fullwidth__ribbon p {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section {
  color: #064163;
}
.section .container {
  max-width: 800px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}
.section .container .contact-info {
  text-transform: uppercase;
  margin-bottom: 100px;
  letter-spacing: 1px;
}
.section .container .contact-info .pipe {
  margin: 0 20px;
}
.section .container .contact-info a {
  color: #064163;
}
.section .container .contact-info a:hover {
  color: #AF9F91;
}
@media screen and (max-width: 1024px) {
  .section .container .contact-info {
    margin-bottom: 30px;
    line-height: 30px;
  }
}
.section .container .reservations {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .section .container .reservations {
    margin-bottom: 40px;
  }
}

#map {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 1024px) {
  #map {
    height: 400px;
  }
}
@media screen and (max-width: 700px) {
  #map {
    height: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .blockUnder1024 {
    display: block;
  }
  .hideUnder1024 {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .hideUnder980 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .blockUnder700, .blockOnPhone {
    display: block;
  }
  .hideOnPhone {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */




