/* Variables */
:root {
  --color-blue: #4a90e2;
  --color-dark-blue: #1a4b8a;
  --color-medium-blue: #1976d2;
  --color-black: #333;
  --color-dark-grey: #777;
  --color-medium-grey: #aaa;
  --color-light-grey: #ddd;
  --color-white: #fff;
  --color-background: #fefefe;
  --hover-bg-rgba: 74, 144, 226, 0.15;
  --hover-shadow-rgba: 74, 144, 226, 0.07;
  --hover-img-shadow-rgba: 74, 144, 226, 0.4;
  --private-overlay-rgba: 74, 144, 226, 0.9;
}

html {
  font-size: 10px;
}

body {
  background-color: var(--color-background);
  color: var(--color-dark-blue);
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  text-align: center;
  padding: 6rem 3.2rem 3.2rem;
  margin: 0;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

p {
  color: var(--color-dark-blue);
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

.mdi {
  font-size: 1.4rem;
}

.card {
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 7px;
  max-width: 1000px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(51, 51, 51, 0.1);
}

.card-header {
  background-color: var(--color-dark-blue);
  padding: 2.8rem 2.8rem 4rem;
  margin-bottom: 4rem;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.card-header h1 {
  color: var(--color-white);
  font-size: 4.2rem;
  line-height: 3.2rem;
  margin-bottom: 2rem;
}
.card-header h2 {
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-top: 0;
  padding: 0 20px;
}
.card-header .role-info {
  display: inline-flex;
  flex-direction: column;
  color: var(--color-white);
  font-size: 1.2rem;
  margin: 2rem 12px 1rem 12px;
  vertical-align: top;
  width: calc((100% - 80px) / 3);
}
.card-header .role-info .role-info-label {
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.card-header .role-info .role-info-value {
  font-weight: 400;
  opacity: 0.7;
}

.card-body {
  padding: 1.6rem 3.2rem 1.6rem;
}

.work-samples-header {
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 4rem;
  color: var(--color-medium-grey);
}

.work-samples-list {
  text-align: left;
  margin-bottom: 4rem;
}

.sample-list-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: top;
  align-content: top;
  border: 1px solid var(--color-light-grey);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 1.6rem;
  min-height: 4rem;
}
.sample-list-item .list-item-screenshot {
  flex: 3;
  text-align: center;
  padding: 2rem;
}
.sample-list-item .list-item-screenshot img {
  width: 100%;
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}
.sample-list-item .list-item-content {
  flex: 6;
  padding: 2.4rem 2.8rem 2rem 1.6rem;
}
.sample-list-item .list-item-content .list-item-title {
  margin: 0;
  font-size: 2.4rem;
  line-height: 2.8rem;
}
.sample-list-item .list-item-content .list-item-role {
  color: var(--color-dark-grey);
  font-size: 1.2rem;
  line-height: 2rem;
}
.sample-list-item .list-item-content .list-item-desc {
  color: var(--color-black);
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.sample-list-item .list-item-icons {
  float: right;
  color: var(--color-dark-grey);
}
.sample-list-item .list-item-icons .mdi {
  font-size: 1.6rem;
  position: relative;
  top: 0.6rem;
}
.sample-list-item:hover {
  border: 1px solid var(--color-blue);
  background-color: rgba(var(--hover-bg-rgba));
  box-shadow: 0 2px 7px rgba(var(--hover-shadow-rgba));
  transition: all 0.5s;
}
.sample-list-item:hover img {
  box-shadow: 0 2px 15px rgba(var(--hover-img-shadow-rgba));
}
.sample-list-item.private {
  position: relative;
  background-color: rgba(221, 221, 221, 0.5);
}
.sample-list-item.private:hover {
  box-shadow: 0 2px 7px rgba(var(--hover-shadow-rgba));
  transition: none;
  cursor: default;
}
.sample-list-item.private:hover img {
  box-shadow: none;
}
.sample-list-item.private:hover .private-msg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(var(--private-overlay-rgba));
  text-align: center;
  border-radius: 5px;
  transition: all 0.5s;
}
.sample-list-item.private:hover .private-msg::after {
  content: "Restricted";
  position: relative;
  top: calc(50% - 30px);
  font-size: 50px;
  color: var(--color-white);
  text-transform: uppercase;
}

.card-footer {
  padding: 0 3.2rem 6rem;
}

.project-nav {
  margin-bottom: 2rem;
}
.project-nav .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-white);
  font-size: 1.4rem;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.project-nav .back-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.project-nav .back-link i {
  font-size: 1.6rem;
}

.project-description {
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.project-content {
  max-width: 1000px;
  margin: 0 auto;
}

.project-images {
  margin-top: 2rem;
  margin-bottom: 10rem;
}
.project-images img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 3.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}
.project-images .project-image-caption {
  text-align: center;
  color: var(--color-dark-grey);
  font-size: 1.2rem;
  margin-top: -2.8rem;
  margin-bottom: 3.2rem;
  font-style: italic;
}

.board-section {
  text-align: center;
  margin-bottom: 3.2rem;
}
.board-section .board-title {
  color: var(--color-black);
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.board-section .board-description {
  color: var(--color-dark-grey);
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin: 0;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}
.board-grid .board-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background-color: var(--color-light-grey);
  transition: transform 0.3s, box-shadow 0.3s;
}
.board-grid .board-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 8px;
  transition: transform 0.3s;
}
.board-grid .board-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.board-grid .board-thumbnail:hover img {
  transform: scale(1.05);
}

.board-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}
.board-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.board-modal .board-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}
.board-modal .board-modal-content {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  max-height: 100vh;
  max-height: 100dvh;
}
.board-modal .board-modal-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.board-modal .board-modal-close i {
  font-size: 2rem;
  color: var(--color-dark-blue);
}
.board-modal .board-modal-close:hover {
  background-color: var(--color-white);
  transform: scale(1.1);
}
.board-modal .board-modal-main {
  position: relative;
  display: flex;
  height: 100%;
  overflow: hidden;
}
.board-modal .board-image-container {
  position: relative;
  width: 75%;
  height: 100%;
  overflow: auto;
  background-color: #f5f5f5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}
.board-modal .board-image-container .board-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.board-modal .board-image-container .board-large-image {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.board-modal .board-image-container .board-overlay-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.board-modal .board-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2010;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  pointer-events: all;
}
.board-modal .board-nav-button i {
  font-size: 2.4rem;
  color: var(--color-dark-blue);
}
.board-modal .board-nav-button:hover:not(:disabled) {
  background-color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.board-modal .board-nav-button:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}
.board-modal .board-nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.board-modal .board-nav-button.board-nav-prev {
  left: 2rem;
}
.board-modal .board-nav-button.board-nav-next {
  left: calc(75% - 7rem);
}
.board-modal .board-side-panel {
  width: 24%;
  border-left: 1px solid var(--color-light-grey);
  background-color: var(--color-white);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.board-modal .board-side-panel .board-side-panel-content {
  padding: 2rem;
}
.board-modal .board-side-panel .board-side-panel-content .board-side-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--color-light-grey);
}
.board-modal .board-side-panel .board-side-panel-content .board-side-panel-title {
  color: var(--color-dark-blue);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
  text-align: left;
}
.board-modal .board-side-panel .board-side-panel-content .board-export-button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  color: var(--color-white);
  background-color: var(--color-blue);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.board-modal .board-side-panel .board-side-panel-content .board-export-button i {
  font-size: 1.4rem;
}
.board-modal .board-side-panel .board-side-panel-content .board-export-button:hover {
  background-color: var(--color-dark-blue);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(var(--hover-shadow-rgba));
}
.board-modal .board-side-panel .board-side-panel-content .board-export-button:active {
  transform: translateY(0);
}
.board-modal .board-side-panel .board-side-panel-content .board-side-panel-description {
  color: var(--color-dark-grey);
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin: 0 0 2rem 0;
  padding: 0;
  text-align: left;
}
.board-modal .board-annotations-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.board-modal .board-annotation-item {
  padding: 1.2rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}
.board-modal .board-annotation-item:hover {
  background-color: rgba(var(--hover-bg-rgba));
  border-color: var(--color-blue);
}
.board-modal .board-annotation-item.active {
  background-color: rgba(var(--hover-bg-rgba));
  border-color: var(--color-blue);
}
.board-modal .board-annotation-item .annotation-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}
.board-modal .board-annotation-item .annotation-text {
  color: var(--color-black);
  font-size: 1.4rem;
  line-height: 1.8rem;
  display: inline;
  white-space: normal;
}

.board-overlay-dot {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: grab;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 5;
  transform: translate(-50%, -50%);
  user-select: none;
}
.board-overlay-dot:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.board-overlay-dot:active {
  cursor: grabbing;
}
.board-overlay-dot.active {
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 4px 16px rgba(var(--hover-img-shadow-rgba));
  color: var(--color-blue);
}

.project-placeholder {
  text-align: center;
  color: var(--color-medium-grey);
  font-size: 1.6rem;
  padding: 4rem 2rem;
  border: 2px dashed var(--color-light-grey);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.project-placeholder-note {
  text-align: center;
  color: var(--color-dark-grey);
  font-size: 1.2rem;
  margin-top: 1rem;
}
.project-placeholder-note code {
  background-color: var(--color-light-grey);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
}

.project-section {
  margin-bottom: 4rem;
}
.project-section h3 {
  color: var(--color-dark-blue);
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  font-weight: 500;
}
.project-section p {
  color: var(--color-black);
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 1.6rem;
}

.online-presence ul {
  margin: 0;
  padding: 1rem 3.2rem;
  line-height: 2rem;
  border-radius: 50vh;
  background-color: var(--color-background);
  display: inline-block;
}
.online-presence ul a:hover {
  text-decoration: underline;
}
.online-presence li {
  list-style-type: none;
  display: inline-block;
  padding: 0;
  margin: 0 1.6rem;
}

.theme-selector-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  padding: 1.2rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.theme-selector-container label {
  color: var(--color-dark-blue);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}
.theme-selector-container select {
  padding: 0.8rem 1.2rem;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  color: var(--color-dark-blue);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.theme-selector-container select:hover {
  border-color: var(--color-blue);
}
.theme-selector-container select:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 2px rgba(var(--hover-shadow-rgba));
}
.theme-selector-container button {
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  color: var(--color-white);
  background-color: var(--color-blue);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.theme-selector-container button:hover {
  background-color: var(--color-dark-blue);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(var(--hover-shadow-rgba));
}
.theme-selector-container button:active {
  transform: translateY(0);
}

@media screen and (max-width: 660px) {
  body {
    padding: 6rem 1.6rem 1.6rem;
  }
  .theme-selector-container {
    padding: 1rem;
    gap: 0.8rem;
  }
  .theme-selector-container label {
    font-size: 1.2rem;
  }
  .theme-selector-container select, .theme-selector-container button {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
  }
  .sample-list-item .list-item-content {
    padding-left: 0.8rem;
  }
  .project-description {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .project-nav .back-link {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
  }
  .project-section h3 {
    font-size: 2rem;
  }
  .project-section p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .board-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .board-modal .board-modal-content {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    overflow: hidden;
  }
  .board-modal .board-modal-close {
    top: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .board-modal .board-modal-close i {
    font-size: 1.8rem;
  }
  .board-modal .board-modal-main {
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
  .board-modal .board-image-container {
    width: 100%;
    height: 40%;
    max-height: 40vh;
    max-height: 40dvh;
    overflow: auto;
    padding: 1rem;
    box-sizing: border-box;
    align-items: flex-start;
  }
  .board-modal .board-image-container .board-image-wrapper {
    max-width: 100%;
  }
  .board-modal .board-image-container .board-large-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
  }
  .board-modal .board-nav-button {
    width: 3.5rem;
    height: 3.5rem;
    position: fixed;
    top: 20%;
    transform: translateY(-50%);
    z-index: 2010;
  }
  .board-modal .board-nav-button i {
    font-size: 1.8rem;
  }
  .board-modal .board-nav-button:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
  }
  .board-modal .board-nav-button:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
  }
  .board-modal .board-nav-button.board-nav-prev {
    left: 0.5rem;
    right: auto;
  }
  .board-modal .board-nav-button.board-nav-next {
    left: auto;
    right: 0.5rem;
  }
  .board-modal .board-overlay-dot {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.7rem;
  }
  .board-modal .board-side-panel {
    width: 100%;
    height: 60%;
    max-height: 60vh;
    max-height: 60dvh;
    border-left: none;
    border-top: 1px solid var(--color-light-grey);
    overflow-y: auto;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 530px) {
  body {
    padding: 5.5rem 0 0;
  }
  .card,
  .card-header {
    border-radius: 0;
  }
  .card-body {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .sample-list-item .list-item-content {
    padding-left: 2.8rem;
  }
  .sample-list-item .list-item-screenshot {
    display: none;
  }
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .board-section .board-title {
    font-size: 2rem;
  }
  .board-section .board-description {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 400px) {
  .card-footer {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .online-presence ul {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

/*# sourceMappingURL=site.css.map */
