* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  background-color: #f0f2f5;
  color: #666666;
}

img {
  max-width: 100%;
}

.App {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.App .TopBar {
  position: relative;
}

.App h1 {
  padding: 18px 0;
  font-weight: 400;
  color: #333333;
}

.App .TopBar {
  height: auto;
}

nav {
  height: auto;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #02101a;
  border-bottom: 1px solid #cccccc;
}

nav > ul {
  width: 100%;
  list-style-type: none;
  display: flex;
}

nav li {
  position: relative;
  font-size: 15px;
  height: 69px;
  display: flex;
  align-items: center;
  min-width: 150px;
}

nav li:first-child {
  border-left: 1px solid #cccccc;
}

nav li.align-right {
  margin-left: auto;
}

nav li.active {
  box-shadow: inset 0px 4px 0px #3c7aae;
  z-index: 9;
}

nav li:hover {
  background-color: #f2f2f2;
}

nav li:hover:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #02101a;
}

nav a {
  color: #02101a;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 100%;
  width: 100%;
}

nav a span {
  height: 27.5px;
  width: 24px;
  margin-right: 12px;
}

.landing-page {
  padding: 16px 0;
}

.about h1 { padding: 0 20px; }

.about h2 {
  font-size: 26px;
  color: #333333;
}

.rainbow-text {
  background: linear-gradient(to right,
  orange,
  yellow,
  violet
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight-text {
  position: relative;
  font-weight: 700;
  display: inline;
  line-height: 1.2;
  padding: 0 .15em;
}

.highlight-text::before {
  content: "";
  position: absolute;
  width: calc(100% + 0.4em);
  height: 0.8em;
  background: #15a1f8;
  filter: blur(3px);
  transform: rotate(-2deg) translate(-7%, 60%);
  border-radius: 2.5em;
  z-index: -1;
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 80px;
}

.about-us .desc {
  margin: 20px 60px 20px 0px;
}

.about-us .desc p:first-of-type {
  font-size: 26px;
  font-weight: bold;
  color: #666666;
}

.about-us img {
  width: 50%;
  border-radius: 10px;
}

.decorative-divider {
  display: flex;
  width: 100%;
  max-width: 500px;
  margin: 20px auto 0;
}

.mission-content,
.impact-content,
.location-content {
  padding: 0 20px;
  margin: 40px 0;
}

.mission-content p {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin: 25px 0 15px;
}

.impact-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 15px auto;
  padding: 0 40px;
  list-style-type: none;
}

.impact-metrics .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #666666;
  padding: 10px 14px;
  font-size: 26px;
}

.impact-metrics .metric p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.impact-metrics .metric p::after {
  content: "";
  display: block;
  width: 98px;
  height: 98px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 12px 0 0;
}

.impact-metrics .metric-cooks p::after { background-image: url("images/cooks-icon.png"); }
.impact-metrics .metric-recipes p::after { background-image: url("images/recipes-icon.png"); }
.impact-metrics .metric-workshops p::after { background-image: url("images/workshops-icon.png"); }

.impact-metrics .metric strong {
  color: #333333;
  font-size: 44px;
  display: inline-block;
  margin-right: 0;
}

.popular-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popular-categories h3 {
  margin: 20px;
}

.popular-categories img {
  max-width: 700px;
  margin-right: 40px;
}

.location-content h2 { margin-bottom: 15px; }

.location-content .locations {
  display: flex;
  align-items: center;
}

.location-content .location-map {
  max-width: 200px;
  margin-right: 40px;
}

.location-content .locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-content .locations-list li {
  flex: 1 1 220px;
  max-width: 260px;
  background: #fff;
  border: 1px solid #dcdfe3;
  border-radius: 14px;
  padding: 14px 16px 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  position: relative;
  min-height: 250px;
}

.locations-list a {
  color: #3c7aae;
  font-weight: 600;
  text-decoration: none;
}

.locations-list a:not(.no-outline):focus {
  color: #000;
  text-decoration: underline;
}

@keyframes outline {
  0% {
    outline-color: transparent;
  }
  100% {
    outline-color: #3c7aae;
  }
}

.locations-list a.animated:focus {
  animation: outline 800ms forwards;
  text-decoration: none;
}

.locations-list a.no-outline:focus {
  outline: none !important;
  outline-offset: 0;
}

.about-content-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}

.about-content-thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  width: 33.33333%;
}

.about-content-thumbnail h3 {
  position: absolute;
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

footer {
  align-items: center;
  background-color: #283640;
  border-top: 1px solid #5d676f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  margin-top: auto;
  min-height: 91.5px;
}

footer a {
  color: #fff;
  margin: 0 .5em;
  display: inline-block;
}

footer label.Field__label {
  color: #fff;
}

footer p {
  margin: 15px 0;
}

.Field__label {
  display: flex;
  align-items: center;
  text-align: left;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 4px;
  cursor: default;
  line-height: 1;
}

input {
  width: 100%;
  border: 1px solid #cccccc;
  border-bottom: 1px solid #4d4d4d;
  margin-bottom: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 8px;
  box-sizing: border-box;
  font-size: 15px;
  color: #666;
  min-width: 250px;
}

@media (max-width: 1024px) {
  .about-us { flex-direction: column; }

  .about-us img {
    width: 100%;
    max-width: 800px;
  }
}