@import url('https://use.typekit.net/zfr5fmp.css');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  min-width: 620px;
}
body {
  font-family: 'proxima-nova', sans-serif;
  background-color: #FFFAFC;
}
header{
  background-image: url(../images/flavors-background.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  aspect-ratio: 26.667 / 17.403;
}

.nav-bar {
  display: flex;
  padding: 1rem 3.125rem 0 6.25rem;
  justify-content: space-between;
  transition: .25s;
}

@media (max-width: 1300px) {
  .nav-bar {
    padding: 1rem 1rem 0 3.125rem;
    transition: .25s;
  }
}

@media (max-width: 1150px) {
    .nav-bar {
    padding: 1rem 3.125rem 0 3.125rem;
    transition: .5s;
  }
}

.bar-element, .bar-element:link, .bar-element:visited {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFFAFC;
  transition: .25s all ease-in-out;
  border-right: .3rem solid transparent;
  border-left: .3rem solid transparent;
  padding: 0 3.125rem 0 3.125rem;
}

.bar-element:hover, .bar-element:active {
  border-right: .3rem solid #FFFAFC;
  border-left: .3rem solid #FFFAFC;
}

.header-logo {
  max-width: 116px;
  min-width: 116px;
}

.header-logo, .header-logo:link, .header-logo:visited {
  fill: #fffafc;
  transition: .25s all ease-in-out;
}

.header-logo:hover, .header-logo:active {
  fill: #F1BBB0;
}

@media (max-width: 1150px) {
  .desktop-nav {
    display: none;
  }
}

/* - - - - - - - - - hamburger - - - - - - - - - */

.hamburger-icon {
  display: none;
}

.hamburger-svg {
  transition: all 500ms;
  fill: #fffafc;
}

.hamburger-svg:hover {
  fill: #F1BBB0;
}

@media (max-width: 1150px) {
  .hamburger-icon {
    display: block;
  }
}

/* - - - - - - - - - mobile nav - - - - - - - - - */

.mobile-nav-container {
  background-color: #D87227;
  
  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;
  color: #FFFAFC;
}

.mobile-nav-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 4rem;
  transition: .25s all ease-in-out;
  border-right: .8rem solid transparent;
  border-left: .8rem solid transparent;
  padding: 0 3.125rem 0 3.125rem;
}

.mobile-nav-link:hover {
  border-right: .8rem solid #FFFAFC;
  border-left: .8rem solid #FFFAFC;
}

/* - - - - - - - - - CLOSE BUTTON - - - - - - - - - */

.close-button {
  transition: all 500ms;
  
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 1rem 3.125rem 0 0;
}

.close-svg {
  fill: #fffafc;
  transition: all 500ms;
}

.close-button:hover .close-svg {
  fill: #F1BBB0;
}

/*- - - - - - - - - banner - - - - - - - - - */

.bannerh1 {
  fill: #FAFDFA;
  font-weight: 600;
  font-size: 6rem;
}

.bannerh2 {
  fill: #FAFDFA;
  font-weight: 400;
  font-size: 2rem;
}

.line-bold {
  font-weight: 700;
}

/*- - - - - - - - - flavors - - - - - - - - - */

.flavors {
  padding: 5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.indiv-flavor {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottle {
  width: 339px;
  height: auto;
}

h3 {
  font-weight: 600;
  font-size: 2.5rem;
  text-align: center;
  width: 21.1875rem;
  padding: .5rem 0 0 0;
}

h4 {
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
  width: 21.1875rem;
  line-height: 110%;
  padding: .5rem 0 1.8rem 0;
}

.buy-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  padding: 0.6875rem 1.75rem;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: .25s;
  margin: 0 0 2.5rem 0;
}

.orange-buy-link:link, .orange-buy-link:visited {
  background-color: #D87227;
  color: #FFFDFA;
}

.orange-buy-link:hover, .orange-buy-link:active {
  background-color: transparent;
  color: #D87227;
  border: 2px solid #D87227;
}

.kiwi-buy-link:link, .kiwi-buy-link:visited {
  background-color: #9CCB3C;
  color: #FAFDFA;
}

.kiwi-buy-link:hover, .kiwi-buy-link:active {
  background-color: transparent;
  color: #9CCB3C;
  border: 2px solid #9CCB3C;
}

.strawberry-buy-link:link, .strawberry-buy-link:visited {
  background-color: #DC2540;
  color: #FFFAFC;
}

.strawberry-buy-link:hover, .strawberry-buy-link:active {
  background-color: transparent;
  color: #DC2540;
  border: 2px solid #DC2540;
}

.orange > h3, .orange > h4 {
  color: #D87227;
}

.kiwi > h3, .kiwi > h4 {
  color: #9CCB3C;
}

.strawberry > h3, .strawberry > h4 {
  color: #DC2540;
}

.body {
  color: #DC2540;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.25rem + 0.625vw, 2rem);
  text-align: center;
  max-width: 71rem;
  line-height: 120%;
  margin: auto;
  padding: 0 2.5rem 4.5rem 2.5rem;
}

@media (max-width: 1150px) {
  .flavors {
    flex-direction: column;
  }
}

/* - - - - - - - - - footer - - - - - - - - - */

footer {
  background-color: #DC2540;
}

.footer-bar {
  display: flex;
  padding: 2.875rem 2.875rem 2.875rem 2.875rem;
  justify-content: space-between;
	align-items: center;
}

.footer-left {
  padding-right: 2.4rem;
}

.footer-middle {
  padding: 0 2.4rem 0 2.4rem;
}

.footer-right {
  padding-left: 2.4rem;
}

.footer-bar-element, .footer-bar-element:link, .footer-bar-element:visited {
  text-decoration: none;
  font-weight: 700;
  font-size: 2.25rem;
  color: #FFFAFC;
  transition: .2s all ease-in-out;
  position: relative;
  bottom: 0;
}

@media (max-width: 900px) {
  .footer-bar-element, .footer-bar-element:link, .footer-bar-element:visited {
    font-size: 1.25rem;
  }
  .footer-left {
    padding-right: 1.2rem;
  }

  .footer-middle {
    padding: 0 1.2rem 0 1.2rem;
  }

  .footer-right {
    padding-left: 1.2rem;
  }
}

.footer-left:hover, .footer-left:active {
  position: relative;
  bottom: 10px;
}

.footer-middle:hover, .footer-middle:active {
  position: relative;
  bottom: 10px;
}

.footer-right:hover, .footer-right:active {
  position: relative;
  bottom: 10px;
}

.footer-logo, .footer-logo:link, .footer-logo:visited {
  fill: #fffafc;
  transition: .2s all ease-in-out;
  max-width: 203px;
  min-width: 203px;
}

@media (max-width: 900px) {
  .footer-logo, .footer-logo:link, .footer-logo:visited {
  max-width: 137px;
  min-width: 137px;
  }
}

.footer-logo:hover, .footer-logo:active {
  fill: #F1BBB0;
}


