/*
 * Application styles — matches CLF WordPress theme header
 * Values in px, matched against computed styles from chickslovefood.com
 */

/* Header — matches chickslovefood.com */
.site-header {
  background: #f7f7f5;
  position: relative;
  height: 76px;
}

.fixed-header {
  display: flex;
  align-items: center;
  height: inherit;
  padding: 0 15px;
}

.header-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
}

.logo-container {
  padding-top: 2px;
}

.logo {
  display: block;
  height: 28px;
  width: 169px;
}

.logo svg {
  display: block;
  height: inherit;
  width: inherit;
}

.site-description {
  color: #635c64;
  display: none;
  font-size: 13px;
}

.header-navigation {
  align-items: center;
  display: flex;
}

.header-navigation .header-navigation-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-navigation .header-navigation-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-navigation .header-navigation-menu li {
  display: inline-block;
  position: relative;
}

.header-navigation .header-navigation-menu li:not(:last-child) {
  margin-right: 24px;
}

.header-navigation .header-navigation-menu li a {
  color: #635c64;
  font-family: Barlow, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s;
}

.header-navigation .header-navigation-menu li a:hover {
  color: #f2a49a;
}

/* Nav button (for button_to forms in nav) */
.header-navigation .header-navigation-menu li form {
  display: inline;
  margin: 0;
}

.header-navigation .header-navigation-menu li .nav-button {
  appearance: none;
  background: none;
  border: none;
  color: #635c64;
  cursor: pointer;
  font-family: Barlow, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0;
  text-transform: uppercase;
  transition: color 0.15s;
}

.header-navigation .header-navigation-menu li .nav-button:hover {
  color: #f2a49a;
}

/* Buttons — matches chickslovefood.com */
.btn-primary {
  background-color: #3a4b41;
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Barlow, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 32px;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s;
}

.btn-primary:hover {
  background-color: #f2a49a;
  color: #fff;
}

/* Responsive */
@media (min-width: 640px) {
  .site-description {
    display: block;
  }

  .logo {
    height: 32px;
    width: 195px;
  }
}

@media (min-width: 1024px) {
  .site-header {
    height: 130px;
  }

  .logo {
    height: 48px;
    width: 289px;
  }

  .logo-container {
    padding-top: 16px;
  }

  .fixed-header {
    padding: 0 25px;
  }
}
