body {
  background-color: white;
}

/*------- TYPOGRAPHY -------*/

h1, h2, .locations-flex a, .cta-button-lockup a, .desktop-link, .mobile-nav-link, .mobile-nav details, .nav-dropdown span {
  font-family: "lorimer-no-2-condensed", sans-serif; 
  font-weight: 600;
}

h1 {
  color: white;
}

h2 {
  color: black;
  font-size: 1.5rem;
}

h3 {
  font-family: "lorimer-no-2-condensed", sans-serif; 
  font-weight: 300;

}

h3, .locations-text a {
  color: black;
  font-size: 1.25rem;
}

p {
  font-family: "gill-sans-nova", sans-serif;
}

/*------- NAVIGATION -------*/

.nav-wrapper {
  background-color: white;
  box-shadow: 0px 3px 4px 2px rgb(0 0 0 / 20%);

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.25rem 20%;
  margin-top: -1rem;
  min-width: 100%;
  
  position: fixed;
  top: 0;
}

@media (max-width: 960px) {
  .nav-wrapper {
    padding: 1.25rem 12%;
  }
}

.nav-logo {
  max-height: 7rem;
  position: relative;
  top: 40px;
  filter: drop-shadow(0 6px 3px rgb(0 0 0 / 30%)) 
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown span {
  font-size: 1.5rem;
  text-decoration: none;
}

.nav-dropdown:hover span {
  font-size: 1rem;
}

.nav-dropdown a {
  display: none;
  transition: all 300ms;
}

.nav-dropdown:hover a {
  display: block;
}

.desktop-link, .desktop-link:visited {
  font-size: 1.5rem;
  text-decoration: none;
  transition: 300ms all;
}

.desktop-link:hover {
  color: #a4274a;
}

@media (max-width: 640px) {
  .desktop-link, .nav-dropdown {
    display: none;
  }
}

/*------- NAV MOBILE -------*/

.hamburger-icon {
  font-size: 2rem;
  transition: all 300ms;
  
  display: none;
}

.hamburger-icon:hover {
  color: #a4274a;
}

@media (max-width: 640px) {
  .hamburger-icon {
    display: block;
  }
}

.mobile-nav-container {
  background-color: #808080;
  color: white;
  font-size: 1.5rem;
  
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
  display: none;
  justify-content: center;
  align-items: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.mobile-nav details li {
  list-style-type: none;
}

.mobile-nav-link {
  transition: all 300ms;
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: #a4274a;
}

.close-button {
  font-size: 2rem;
  transition: all 300ms;
  
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}

.close-button:hover {
  color: #a4274a;
}

/*------- HERO -------*/

.hero-wrapper, .hero-wrapper-detail {
  background: url("../images/luckylab-bg.png");
  background-position: 50% 60%;
  margin-top: 8.5rem;
  background-size: cover;
  
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-wrapper {
  min-height: 60vh;
  text-align: left;
  padding: 12vh 10%;
}

.hero-wrapper-detail {
  min-height: 5vh;
  text-align: center;
  padding: 6vh 10%;
}

.hero-wrapper p {
  color: white;
}

/*------- MENU (DETAILS) -------*/

.menu-container {
  display: flex;
  
  padding: 3rem 10%;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
  text-align: right;
  padding-right: 1.5rem;
}

.menu-nav, .menu-item span {
  font-family: lorimer-no-2-condensed, sans-serif;
  font-weight: 600;
}

.menu-items-container {
  flex-grow: 5;
  
  padding-left: 1.5rem;
}

.menu-items-category {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.menu-item {
  flex: 1 1 calc(50% - 1.5rem);
}

@media (max-width: 960px) {
  .menu-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
  .menu-container {
    flex-direction: row;
  }
}

.menu-item h3 {
  display: inline-block;
  margin-right: .5em;
  font-size: 1.5rem;
}



/*------- LOCATIONS -------*/
.locations-wrapper {
  padding-bottom: 3rem;
}

.locations-wrapper h2 {
    text-align: center;
    padding: 3rem 0;
}

.locations-flex {
  display: flex;
  flex-direction: row;
  flex: 1 1;
  
  justify-content: center;
  gap:5%
}

.location {
  padding-bottom: 1rem;
}

.location a {
  color: black;
  transition: all 300ms;
}

.location a:hover {
  color: #a4274a;
}

@media (max-width:768px) {
  .locations-flex {
    flex-direction: column;
    align-items: center;
  }
  
  .locations-text {
    order: -1;
  }
  
}

/*------- TESTIMONIAL -------*/
.testimonial-wrapper {
  padding: 12vh 10%;
  background: url("../images/luckylab-pizza.png");
  background-size: cover;
  background-attachment: fixed;
  
  text-align: center;
}

.testimonial-wrapper p, .testimonial-wrapper h2 {
  color: white;
}

/*------- CTA/ABOUT -------*/
.text-wrapper {
  padding: 3rem 10%;
}

.cta-button-lockup {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  gap: 1rem;
}

.cta-button {
  padding:10px;
  border-radius: 5px;
  background-color: #004835;
  transition: all 300ms;
}

.cta-button:hover {
  background-color: #a4274a;
}

.cta-button-lockup a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-image {
  max-width: 240px;
}

/*------- FOOTER -------*/
.footer-wrapper {
  background-color: #004835;
  padding: 2rem 10%;
  
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-left {
  min-width: 35%;
}

.footer-right {
  color: white;
}

@media (max-width: 640px) {
  .footer-wrapper {
    display: block;
  }
  
  .footer-left {
    min-width: 60%;
    padding-bottom: 1rem;
  }
}
