/* Reset */
@font-face {
  font-family: 'Azo Sans';
  src: url('fonts/azo-sans/AzoSansRegular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: 'Azo Sans', Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

nav {
  margin-top: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  font-family: 'Azo Sans', sans-serif;
  text-decoration: none;
  color: black;
  font-size: 0.9rem;
}

nav a:hover {
  background-color: #bddfd5;
  border-radius: 5px;
  padding: 5px;
  color: white;
}

nav a.active {
  background-color: #bddfd5;
  border-radius: 5px;
  padding: 5px;
  color: white;
}

/* .nav-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
} */

.home-logo {
  margin-bottom: 10px;
}

section {
  margin-bottom: 100px;
  /* max-width: 600px; */
}

footer {
  background-color: white;
  color: #752f22;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

footer p {
  text-align: center;
}

.footer-logo {
  width: 60px;
  height: auto;
  color: #752f22;
}

.social-logos {
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.fa {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 5px;
  background: white;
  color: #752f22;
  border-radius: 5px;
}

.fa:hover {
  background: #752f22;
  color: white;
}

.nav-links .hamburger {
  display: none;
}

.nav-links .x {
  display: none;
}

.about {
  display: flex;
  justify-content: space-around;
  padding-top: 60px;
  font-size: 1.25rem;
}

.bio {
  margin-left: 20px;
  margin-right: 20px;
}

.headshot {
  margin-right: 20px;
}

.gallery-container {
  display: flex;
  background-color: #bddfd5;
  padding-bottom: 100px;
}

.column {
  flex: 50%;
  padding: 20px;
}

.portfolio-img {
  width: 100%;
  height: auto;
}

#services-img {
  width: 25%;
  height: auto;
}

section h1 {
  margin-bottom: 10px;
}

.service-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around; 
  margin-top: 75px;
}

.service-1-text {
  width: 40%;
}

.design-consultation-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

.service-1-list-container {
  text-align: center;
}

.design-consultation-list {
  display: inline-block;
  text-align: left;
  list-style-position: inside;  
}

.service-2 {
  margin-left: 7%;
  margin-right: 7%;
}

.full-service-indent {
  margin-left: 2.25%;
  margin-right: 2.25%;
}

.service-2-title {
  text-align: center;
}

.service-3 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.service-3-text-container {
  width: 40%;
}

.service-3-p {
  margin-top: 15px;
  margin-bottom: 15px;
}

.service-4 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 150px;
}

.service-4-list {
  margin-left: 5%;
}

.service-4-indent {
  margin-left: 5%;
}

@media only screen and (max-width: 900px) {
    .about {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; 
    }

    .bio {
      text-align: center;
      font-size: 1rem;
      margin-bottom: 10px;
      margin-left: 20px;
      margin-right: 20px;
    }
  }

/* Smaller Screens */
@media only screen and (max-width: 750px) {

  nav {
    display: flex;
    justify-content: space-between;
  }

  .nav-links a {display: none;}

  .nav-links a.home-logo {
    display: block;
    margin-left: auto;
    /* margin-right: auto; */
  }

  .nav-links a.hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-links a.x {
    display: none;
  }
  
}

@media only screen and (max-width: 750px) {

  .nav-links.responsive {
    display: flex;
    flex-direction: column;
  }

  .nav-links.responsive a.hamburger {
    display: none;
  }

  .nav-links.responsive a {
    display: block;
    margin-bottom: 20px;
  }

  .nav-links.responsive a.home-logo {
    display: none;
  }

  .nav-links.responsive a.x {
    position: absolute;
    right: 0;
    margin-right: 20px;
  }

}
