@font-face {
  font-family: 'PP Neue Montreal';             
  src: url('assets/ppneuemontreal-book.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  }

body {
  font-family: "Instrument Serif", serif;
  margin: 0;
  padding: 0;
  color: #000000;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  /* overflow: hidden; */
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #FFE4E1;
  background-color: #d93131;
  /* text-decoration: underline; */
}

::selection {
  background: #f9ece7; /* highlight color */
  color: rgb(217, 49, 49); /* text color when selected */
}

.logo {
  width: 70px;
  display: block;
  margin-left: auto;
  margin-right: auto
}

.cafe-header {
  font-size: 100px; 
  font-family: 'Instrument Serif', serif;
  padding: 50px 150px 50px 150px;
  text-align: center;
  line-height: 100px;
  padding: 0px 20% 0px 20%;
  /* margin-top: 3%; */
}

.nov-15 {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  font-size: 175px; 
  flex-wrap: wrap;
  font-family: 'Instrument Serif', serif;
  text-align: center;
  line-height: 160px;
}

.nov-15 p {
    padding: 0 5%;
    box-sizing: border-box;
}

.title {
  font-family: 'Instrument Serif', serif;
  font-size: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
}

body .title {
  color: #f9ece7;
  z-index: 0;
}
 
h2 {
  font-family: 'PP Neue Montreal';
  font-family: "Lexend Peta", sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  letter-spacing: -1px;
}

.subtext {
  font-size: 1.5em;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: 10%;
  margin-right: 10%;
}

/* about.html */
.about {
  font-size: 80px;
  line-height: 80px; 
  text-align: center;
  padding: 20px 20% 25px 20%;
}

.description {
  font-size: 60px;
  line-height: 65px; 
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0px 10% 25px 10%;
}

/* menu.html */
.menu-body {
  font-size: 40px;
  line-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-right: -10%;
  padding-left: -10%;
  z-index: 1;
}

/* Navbar */
.nav {
  font-family: "Lexend Peta", sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: -1.2px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.footer {
  font-family: "Lexend Peta", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -1px;
  position: relative;
  bottom: 2%;
  left: 0;
  width: 100%;
  text-align: center;
}


/* Media queries for mobile */
@media only screen and (max-width:768px) {
  .cafe-header {
      margin-top: 50px;
      text-align: center;
      font-size: 100px;
      line-height: 100px;
  }

  .title {
      font-size: 2.5em;
  }

  /* about.html */
  .about {
    font-size: 50px;
    line-height: 55px;
    padding: 20px 8% 10px 8%;
  }

  .description {
    font-size: 40px;
    line-height: 45px;
    padding: 0px 9% 10px 9%;
  }

  .menu-description {
    font-size: 30px;
    margin-top: 40px;
  }
}



/* ----------------------------------------- */
/* Archived CSS */
/* menu - 11-15-25.html */
/* Scroll container */
#scroll-container {
  overflow-x: hidden;   /* hide default horizontal scrollbar */
  overflow-y: auto;     /* enable vertical scrolling (for wheel events) */
  height: auto;        /* full viewport height */
  min-height: 100vh;
  min-width: 100vw;
  position: relative;
  z-index: 1;
}

/* Inner container - horizontal layout */
#menu-container{
  display: flex;
  flex-direction: row;  /* horizontal layout */
  width: max-content;   /* fit all boxes in a row */
  align-items: stretch;
  font-family: "Instrument Serif";
  flex-wrap: nowrap;
}

/* Each box */
#menu-container .box {
  flex: 0 0 40vw;     /* take full viewport width */
  height: 150vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:-140px;
  font-size: 70px;
  color: rgb(0, 0, 0);
  text-align: center;
  line-height: 60px;
  padding-right: 40px;
  padding-left: 40px;
}

#menu-container .text {
  padding-top: 20px;
}