@font-face {
  font-family: semplicitapro;
  src: url("assets/fonts/SemplicitaPro-Regular.otf") format("opentype");
}

@font-face {
  font-family: semplicitaprobold;
  src: url("assets/fonts/SemplicitaPro-Bold.otf") format("opentype");
}

@font-face {
  font-family: semplicitaproitalic;
  src: url("assets/fonts/SemplicitaPro-Italic.otf") format("opentype");
}


html,
body {
  height: 100vh;
  padding-left: 20px;
  padding-right: 20px;
  font-family: semplicitapro, sans-serif;
  font-size: 16px;
  transition: font-size 0.3s ease;
}



.logo {
  background-image: url("./assets/logo.svg");
  background-repeat: no-repeat;
  /* Default Desktop Dimensions */
  height: 80px;
  width: 220px;
  background-size: contain;
  background-position: left center;
  /* Vertically centered */
  transition: all 0.3s ease;
  /* Smooth resizing */
}




.header-full {
  background-color: transparent;
  z-index: 1000;
  /* padding: 20px 0; */
}

.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-body {
  color: #212529;
  /* font-size: 80%; */
  padding: 0.75rem;
}

.card-title {
  font-family: semplicitaprobold, sans-serif;
  /* font-weight: 700; */
  line-height: 160%;
  font-size: 80%;
  margin-bottom: 0.2em;
  /* white-space: nowrap; */
}

.card-text {
  font-family: semplicitaproitalic, sans-serif;
  /* font-weight: 500; */
  /* font-style: italic; */
  line-height: 100%;
}

.column-left {
  z-index: 1;
}

.column-right {
  white-space: nowrap;
  z-index: 1;
}

.column-center {
  /* height: 100vh; */
  /* position: fixed; */
  /* overflow-y: scroll; */
  text-align: center;
  /* padding: 0 20px; */
  z-index: 2;
}

.detail-center {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.detail-page .img-fluid {
  margin-bottom: 2em;
}

.margin-top-1 {
  margin-top: 120px;
}

.margin-top-2 {
  margin-top: 40px;
}

.fa-1x {
  font-size: 1.5rem;
  transition: font-size 0.3s ease;
}

.navbar-toggler {
  cursor: pointer;
}

.navbar {
  padding: 0;
}

li.nav-item {
  font-family: semplicitaprobold;
  padding-left: 2em;
}

.nav-link {
  color: black;
}


li.active>a.nav-link {
  color: #ff4847;
}

.links {
  padding-top: 28px;
  /* Adjusted to align with vertically centered logo */
  transition: padding 0.3s ease;
}


.links a {
  font-family: semplicitaprobold, sans-serif;
  /* font-weight: 700; */
  color: black;
  text-decoration: none;
  margin-left: 1.2em;
  padding: 0.5em;
  font-size: 100%;
  display: inline-block;
}


.links a.active {
  color: #7f7f7f;
}

.links a:hover {
  color: #ff4847;
}

.links a.active:hover {
  color: #ff4847;
}

strong {
  color: #FF4847;
}

.card {
  border: none;
}

.card-columns {
  max-width: 100%;
  column-count: 3;
}

.card-columns .card {
  margin-bottom: 1.25rem;
}

.card-columns a {
  text-decoration: none;
}

.img-fluid {
  margin-bottom: 10px;
}

.detail-page {}

.details-width {
  max-width: 220px;
}

.details {
  font-size: 100%;
  font-family: semplicitapro, sans-serif;
  line-height: 130%;
}

.details .title {
  font-family: semplicitaprobold, sans-serif;
  /* font-size: 14px; */
}

.details .subtitle {
  font-family: semplicitaproitalic, sans-serif;
}

.details .desc {}

.details .detail-de {
  color: #7f7f7f;
}

.details .detail-en {}

.padding-top-20 {
  padding-top: 20px;
}

.prev-project-link,
.next-project-link {
  color: #FF4847;
  text-decoration: none;
}

.prev-project-link:hover,
.next-project-link:hover {
  color: black;
  text-decoration: none;
}

.home-page {
  background-image: url("./assets/basically-us-background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Home Page Fun Facts */
.home-center-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}




@media (max-width: 1200px) {

  html,
  body {
    font-size: 15px;
  }

  .logo {
    width: 180px;
    height: 70px;
  }

  .links {
    padding-top: 24px;
  }
}


@media (max-width: 992px) {

  html,
  body {
    font-size: 32px;
  }


  .links {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .links a {
    display: block;
    margin-left: 0;
    text-align: right;
    padding: 10px 0;
  }

  .card-columns {
    column-count: 2;
  }

  .navbar {
    min-width: 100%;
    /* Adjusted from fixed pixel width */
  }

  /* Home Page Mobile Overrides */
  .home-center-container {
    display: block;
    min-height: auto;
    margin-top: 40px;
  }

  .card-columns {
    column-count: 2;
  }

  li.nav-item {
    background-color: #FF4847;
    text-align: center;
    border-bottom: 2px solid white;
  }

  li.active>a.nav-link {
    color: black;
  }

  li>a.nav-link {
    color: white;
  }

  .nav-link:hover {
    color: black;
  }

  .logo {
    height: 125px;
    width: 350px;
  }

  .details {
    /* font-size: 80%; */
  }

  .detail-center {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .logo {
    height: 115px;
    width: 250px;
  }

  .fa-1x {
    font-size: 1.3rem;
  }

  .card-columns {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .logo {
    height: 115px;
    width: 250px;
  }

  .fa-1x {
    font-size: 1.1rem;
  }
}