/* font-family: 'Inter', sans-serif;
font-family: 'Shippori Mincho', serif; */

:root {
  --primary-color: #404040;
  --secondary-color: #666;
  --accent-color-teal: rgb(144, 201, 182);
  --accent-color-orange: rgb(248, 167, 17);
  --heading-font-family: "Shippori Mincho", serif;
  --default-font-family: "Inter", sans-serif;
}

body {
  background-color: rgb(253, 253, 253);
  font-family: var(--default-font-family);
  text-align: center;
}

h1 {
  font-family: var(--heading-font-family);
  color: var(--primary-color);
  font-size: 60px;
  font-weight: 100;
}

h2,
h4 {
  font-family: var(--heading-font-family);
  color: var(--secondary-color);
  font-weight: 900;
}

h3 {
  font-family: var(--default-font-family);
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h5 {
  font-family: var(--default-font-family);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

p {
  color: var(--primary-color);
  font-size: 16px;
  margin: 30px auto;
  max-width: 800px;
}

.hero {
  background-image: url(/images/ButteryBakeryPhotostyling_breakfast.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 20px;
}

.hero-heading {
  color: #fff;
}

.hero-sub-heading {
  color: #fff;
  font-weight: 300;
  font-size: 23px;
  letter-spacing: 1px;
}

.hero-mouse-type {
  color: #fff;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-top: 30px;
}

.hero-mouse-type a {
  color: #fff;
  text-decoration: none;
}

.hero-mouse-type a:hover {
  color: var(--accent-color-teal);
  text-decoration: underline;
}

.btn-branded {
  background-color: var(--accent-color-teal);
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 27px;
  font-weight: 600;
}

.btn-branded a {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.btn-branded a:hover {
  color: #2c6688;
}

.studio-news {
  background-color: var(--primary-color);
  padding: 20px;
}

.studio-news h3 {
  color: #fff;
  text-align: center;
  font-size: 50px;
  font-weight: 100;
}

.studio-news h2 {
  color: #fff;
  text-align: left;
}

.studio-news p {
  color: #fff;
  text-align: left;
}

.portfolio p {
  color: var(--primary-color);
  text-align: left;
}

.btn-project-links {
  border: 1px solid var(--accent-color-teal);
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 27px;
  font-weight: 600;
}

.btn-project-links a {
  color: var(--accent-color-teal);
  text-decoration: none;
}

.btn-project-links a:hover {
  color: var(--accent-color-orange);
}

footer {
  background: #070707;
  padding: 40px 10px;
  margin-top: 20px;
}

footer.contact-footer {
  background: #fff;
  padding: 40px 10px;
  margin-top: 20px;
}

ul li {
  text-align: start;
  list-style-type: none;
}

a.site-map-links {
  font-size: 14px;
  color: var(--accent-color-teal);
  text-decoration: none;

  padding-bottom: 10px;
}

a.site-map-links:hover {
  color: #fff;
}

.contact-picture {
  max-width: 200px;
}

footer .footer-invite {
  color: var(--accent-color-teal);
}

footer .footer-invite a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 20px;
}

footer .footer-invite a:hover {
  color: var(--accent-color-orange);
}

footer .social-icons {
  display: flex;
  justify-content: center;
  font-size: 28px;
}

.social-icons a {
  color: #1b6894;
  transition: all 150ms ease-in-out;
  padding: 0 10px;
}

.social-icons a:hover {
  color: var(--accent-color-teal);
}

.mouse-type {
  font-size: 8px;
  text-align: center;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 30px;
}

@media (max-width: 600px) {
  h1,
  h2,
  h3,
  h4,
  p {
    text-align: center;
  }

  h1 {
    font-size: 28px;
    font-weight: 800;
    margin-top: 10px;
  }

  .hero {
    background-image: url(/images/ButteryHero_600pxwide_breakfast.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 60px;
  }

  h2 {
    font-size: 24px;
  }

  h3.hero-sub-heading {
    font-size: 16px;
    margin-bottom: 90px;
  }

  .studio-news h3 {
    font-size: 28px;
    font-weight: 400;
  }

  .hero-sub-heading h3 {
    font-size: 12px;
  }

  h4 {
    font-size: 12px;
    padding-top: 5px;
  }

  p {
    font-size: 95%;
    line-height: 1.5;
    padding-top: 10px;
    text-align: center;
  }

  .text-start {
    font-size: 90%;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
