/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Inter", serif;
}

.page-section {
  padding: 8rem 0;
}

/* navigation */

.navbar {
  box-shadow: none;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.navbar .navbar-brand {
  font-weight: 700;
  color: #212529;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #333;
  font-weight: 400;
  font-size: 1.25rem;
  padding: 0.75rem 0;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active {
  color: #a87349;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: #a87349 !important;
}

@media (min-width: 992px) {
  .navbar {
    box-shadow: none;
    background-color: transparent;
  }

  .navbar .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
  }

  .navbar .navbar-brand:hover {
    color: #fff;
  }

  .navbar .navbar-nav .nav-item {
    border-left: 1px solid #333;
  }

  .navbar .navbar-nav .nav-item:first-child {
    border-left: 1px solid transparent;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    color: #333;
    padding: 0.5rem 3.5rem;
  }

  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #a87349;
  }

  .navbar .navbar-nav .nav-item:first-child .nav-link {
    padding-left: 0;
  }

  .navbar .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }

  .navbar.navbar-shrink {
    box-shadow: none;
    background-color: #fff;
  }

  .navbar.navbar-shrink .navbar-brand {
    color: #212529;
  }

  .navbar.navbar-shrink .navbar-brand:hover {
    color: #f4623a;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link {
    color: #212529;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
    color: #f4623a;
  }
}

header {
  padding-top: 10rem;
  padding-bottom: calc(10rem - 4.5rem);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

header h1,
header .h1 {
  font-size: 2.25rem;
}

@media (min-width: 992px) {
  header {
    height: 100vh;
    min-height: 40rem;
    padding-top: 4.5rem;
    padding-bottom: 0;
  }

  header p {
    font-size: 1.15rem;
  }

  header h1,
  header .h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  header h1,
  header .h1 {
    font-size: 3.5rem;
  }
}

/* cover */

section.cover h1 {
  color: #333;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* portfolio */

section.portfolio p {
  color: #333;
  font-size: .95rem;
  font-weight: 500;
}

section.portfolio a {
  cursor: zoom-in;
}

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

/* footer */

.footer-div {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  padding-top: 3rem;
  border-top: 1px solid #333;
}

.footer-div p {
  margin-bottom: 0;
  color: #333;
  font-size: .95rem;
  font-weight: 500;
}

.footer-div a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #000;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.footer-div a:hover {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

@media (max-width: 991px) {
  .footer-div {
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}




















/* */
