
/*color palette*/
:root{
    --black: #000000;
    --main-gray: #E9E6D8;
    --accent-gray-dark: #919190;
    --accent-gray-light: #ACACAA;
    --accent-color: #7B8E97;
}
/*fonts*/
.cormorant-garamond-<uniquifier> {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
html{
    background-image: url(/assets/landing-page/brand-logo.png);
    background-size: 73%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--black);
    height: 100%;
}

body{
    max-width: 100vw;
    max-height: 100dvh;
    margin: auto;
    font-family: "Cormorant Garamond", serif;
    color: var(--main-gray);
}
h1{
    color: var(--main-gray);
    font-style: italic;
    margin-left: 70%;
    font-size: 1.5em;
}
h1 a{
  text-decoration: none;
  color: var(--main-gray);
}

footer{
    position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
    margin: auto;
}

/*header*/
header {
  padding: 0;
  height: 40px;
  display: flex;
  justify-content: space-between;
}
nav li{
  font-style: italic;
}
ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
ul a {
  color: var(--main-gray);
  text-decoration: none;
}
ul li {
  padding: 1vw;
}
#hamburger-icon {
  margin: 2% 0;
  padding: 0 20px;
  display: none;
  cursor: pointer;
}
#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: var(--main-gray);
  margin: 6px 0;
  transition: 0.4s;
}
.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}
.open .bar2 {
  opacity: 0;
}
.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}
.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background-color: var(--black);
  height: 80vh;
  width: 40%;
  font-size: 1.3em;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  height: calc(100vh - 50px);
  width: 40%;
}
.mobile-menu li{
  background-color: var(--black);
  width:50%;
  padding-right: 20%;
  font-style: italic;
  text-align: right;
}

@media (max-width: 810px) {
  header nav {
    display: none;
  }
  h1{
    color: var(--main-gray);
    font-style: italic;
    margin-left: 30%;
}
.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background-color: var(--black);
  height: 90vh;
  width: 40%;
  font-size: 1.3em;
}
  #hamburger-icon {
    display: block;
    margin: 2vh 0;
  }
  html{
    background-image: url(/assets/landing-page/brand-logo.png);
    background-size: 175%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--black);
    height: 100%;
    }
}

@media (max-width: 600px) {
  header nav {
    display: none;
  }
  h1{
    color: var(--main-gray);
    font-style: italic;
    margin-left: 30%;
}
.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background-color: var(--black);
  height: 80vh;
  width: 40%;
  font-size: 1.3em;
}
  #hamburger-icon {
    display: block;
    margin: 2vh% 0;
  }
  html{
    background-image: url(/assets/landing-page/brand-logo.png);
    background-size: 200%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--black);
    height: 100%;
}
}

@media only screen and (max-width: 480px) {
  header nav {
    display: none;
  }
  h1{
    color: var(--main-gray);
    font-style: italic;
    margin-left: 30%;
}
.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background-color: var(--black);
  height: 80vh;
  width: 50%;
  font-size: 1.3em;
}
  #hamburger-icon {
    display: block;
  }
}