@font-face {
  font-family: 'Champagne & Limousines';
  src: url("../fonts/Champagne & Limousines.0b66ba1f6157.ttf") format("truetype");
}

@font-face {
  font-family: 'Open Sans Condensed Light';
  src: url("../fonts/OpenSans-CondLight.78a0d7e644be.ttf") format("truetype");
}

:root {
  --gold: #EEC880;
  --gold-dark: rgba(238,200,128,0.65);
  --gold-darker: rgba(238,200,128,0.1);
  --white: #F8F0E3;
}

body {
  background-color: black;
  color: var(--white);
  font-family: 'Champagne & Limousines';
  margin: 0;
}

#header {
  background-color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid var(--gold-dark);
  display: flex;
  height: 80px;
  position: fixed;
  width: 100vw;
  z-index: 2;
}

#header a {
  text-decoration: none;
}

#noir-logo-div {
  align-items: center;
  display: flex;
  margin-left: 60px;
}

#noir-logo-anchor {
  display: flex;
}

#noir-logo {
  height: 32.16px;
  width: 170px;
}

#noir-initial {
  display: none;
  height: 42.84px;
  width: 25px;
}

#nav-bar {
  display: flex;
  flex-grow: 1;
  margin-left: 50px;
}

.nav-bar-link-div {
  align-items: center;
  display: flex;
  /* margin: 0 40px; */

  margin: 0 25px;
}

.nav-bar-link-anchor:hover > .nav-bar-link {
  color: var(--white);
  text-shadow: 0 0 5px rgba(128, 128, 128, 0.2);
}

.nav-bar-link {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  /* letter-spacing: 4px; */
  text-shadow: 0 0 20px black;
  transition: 0.1s;

  letter-spacing: 3px;
}

#socials-container {
  margin-right: 40px;
}

#instagram-div {
  align-items: center;
  display: flex;
  height: 100%;
}

#instagram-anchor {
  display: flex;
}

#instagram {
  height: 35px;
  width: 35px;
}

#mobile-nav-bar {
  display: none;
}

#mobile-nav-bar-menu-icon-div {
  align-items: center;
  display: flex;
  height: 100%;
  margin-right: 30px;
}

#mobile-nav-bar-menu-icon-anchor {
  display: flex;
  z-index: 2;
}

#mobile-nav-bar-menu-icon {
  height: 50px;
  width: 50px;
}

#mobile-nav-bar-menu {
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--gold-dark);
  display: flex;
  left: 0;
  padding: 80px 0 20px 0;
  position: absolute;
  top: 0;
  transition: 0.4s;
  width: 100vw;
  z-index: 1;
}

.off-screen {
  opacity: 0;
  /* top: -335px !important; */

  top: -374px !important;
}

#mobile-nav-bar-cross-icon-div {
  position: absolute;
  right: 0;
  top: 0;
}

#mobile-nav-bar-cross-icon {
  height: 50px;
  width: 50px;
}

#mobile-nav-bar-menu-content {
  width: 100%;
}

.mobile-nav-bar-option-div {
  display: flex;
  justify-content: flex-end;
  padding: 4px 0;
  position: relative;
  transition: 0.1s;
  padding: 8px 0;
}

.mobile-nav-bar-option-div:hover .mobile-nav-bar-option {
  color: var(--white);
}

.mobile-nav-bar-option {
  margin-right: 30px;
  transition: 0.1s;
  z-index: 2;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 4px;
}

#content-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh);
  background-color: black;
}

.page-image {
  height: 100vh;
  margin-top: -80px;
  object-fit: cover;
  width: 100%;
  z-index: -1;
}

#footer {
  background-color: var(--black);
  bottom: 0;
  display: flex;
  height: 80px;
  justify-content: center;
  position: absolute;
  width: 100%;
}

#footer a {
  text-decoration: none;
}

#address-div {
  align-items: center;
  display: flex;
}

#address {
  color: var(--gold);
  font-size: 20px;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* 1400 */
/* @media only screen and (max-width: 1400px) {
  .nav-bar-link-div {
    margin: 0 30px;
  }
} */

/* 1300 */
@media only screen and (max-width: 1500px) {
  .nav-bar-link-div {
    margin: 0 20px;
  }
}

/* 1200 */
@media only screen and (max-width: 1450px) {
  .nav-bar-link-div {
    margin: 0 15px;
  }
}

/* 1150 */
@media only screen and (max-width: 1360px) {
  #header {
    justify-content: space-between;
  }

  #nav-bar {
    display: none;
  }

  #noir-logo-div {
    margin-left: 35px;
  }

  #socials-container {
    display: none;
  }

  #mobile-nav-bar {
    display: flex;
  }

  #address {
    font-size: 18px;
  }
}

@media only screen and (max-width: 600px) {
  #address {
    font-size: 16px;
  }
}

@media only screen and (max-width: 400px) {
  #noir-logo {
    display: none;
  }

  #noir-initial {
    display: flex;
  }
}
