/* okomito fonts */
@font-face {
  font-family: 'okomito';
  src: url('fonts/Okomito-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'okomito';
  src: url('fonts/Okomito-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'okomito';
  src: url('fonts/Okomito-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'okomito';
  src: url('fonts/Okomito-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'okomito', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.5;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
}

.container {
  width: 100%;
  padding: 0 24px;
  min-height: 100vh;;
}

h1 {
  font-size: 64px;
  font-weight: 400;
  color: #fff;
  line-height: 60px;
  letter-spacing: -1.9px;
  margin-bottom: 24px;
}

.main-project-title {
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -0.32px;
  font-weight: 400;
  display: block;
  color: #fff;
  text-decoration: none;
}

.main-project-company {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  color: #fff;
  text-decoration: none;
}

.project-list {
  list-style: none;
}

.project-list li {
  margin-bottom: 64px;
}

.project-list li:last-child {
  margin-bottom: 80px;
}

.project-list a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
}

.project-list a:hover .main-project-title {
  text-decoration: underline;
}


.subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 32px;
  letter-spacing: -0.24px;
  margin-bottom: 24px;
}

p {
  font-size: 1rem;
  color: #fff;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  min-height: calc(100vh - 142px);
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 64px 0;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-content {
  flex: 1;
}

.right-content {
  flex: 1;
}

.right-align {
  text-align: right;
  display: block;
}

.abt-logo {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: -0.36px;
  background: #fff;
  border-radius: 4px;
  width: 48px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  position: fixed;
  display: block;
  line-height: 40px;
  text-decoration: none;
   z-index: 1002;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.24);
}

.header-content {
  margin-bottom: 80px;
  padding-top: 24px;
}

.footer-content {
  padding-bottom: 24px;
}

.footer-text {
  font-size: 12px;
  line-height: 14px;
}

.footer-text a { color: #fff; }

.contact-link {
  color: #fff;
  text-decoration: none;
}

/* not available project */
.not-available .main-project-title { opacity: 0.3; }
.not-available .main-project-company { opacity: 0.4; }

/* hamburger menu */
.hamburger-menu {
  height: 40px;
  width: 40px;
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 1006;
  cursor: pointer;
}
.top-bar, .bottom-bar {
  height: 2px;
  width: 24px;
  background: #fff;
  position: absolute;
  transition:
    transform 0.2s ease,
    top 0.2s ease,
    bottom 0.2s ease,
    background-color 0.2s ease;
}

.top-bar { left: 8px; top: 14px; }
.bottom-bar { right: 8px; bottom: 14px; }

.active .top-bar, .active .bottom-bar {
  background: #000;
  box-shadow: none;
  z-index: 1003;
}
.active .top-bar { transform: rotate(45deg); top: 19px; left: 8px; }
.active .bottom-bar { transform: rotate(-45deg); bottom: 19px; right: 8px; }

/* menu */
.the-menu {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  max-height: 100vh;
  background: #fff;
  z-index: 1005;
  width: 360px;
  padding: 32px 24px;
  border-radius: 24px 0 0 24px;
  box-shadow: -2px 0 64px rgba(0, 0, 0, 0.16);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(110%);
  transition:
    transform 0.2s ease-out,
    opacity 0.2s ease-out,
    visibility 0s 0.2s;
}

.the-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition:
    transform 0.2s ease-out,
    opacity 0.2s ease-out,
    visibility 0s 0s;
}


.the-menu a {
  text-decoration: none;
  color: #000;
  display: block;
}

.the-menu a:hover .menu-title, .the-menu a.main-link:hover {
  text-decoration: underline;
}

.the-menu .divider {
  margin: 40px 0;
}

.menu-company {
  display: block;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.menu-title {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.24px;
  font-weight: 500;
  margin-bottom: 32px;
  display: block;
  color: #000;
  position: relative;
}

.main-link {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.24px;
  font-weight: 500;
  margin-bottom: 40px;
  display: block;
}

.no-bottom {
  margin-bottom: 0;
}

.inverse-icon {
  display: inline-block;
  position: absolute;
  filter: invert(100%);
  bottom: -2px;
}

.disabled-link.menu-company {
  opacity: 0.3;
}

.disabled-link.menu-title {
  opacity: 0.4;
}

/* about me */

.about-page {
  background: #FFD000;
  overflow-x: hidden;
}

body.about-open {
  overflow: hidden;
}

.bio-paragraph {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.2px;
  color: #000;
  display: block;
}

.anthony-photo {
  background: url("images/anthony-tadina.jpg") no-repeat center center;
  background-size: cover;
  height: 180px;
  width: 180px;
  border-radius: 40px;
  margin: 24px 0 40px;
}

.contact-links {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1.2px;  
  display: block;
  color: #000;
  margin-bottom: 80px;
}

.contact-links a {
  color: #000;
}

#closeAbout {
  font-size: 24px;
  position: fixed;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: url("images/close.svg") no-repeat center center;
  cursor: pointer;
}

.about-link {
  cursor: pointer;
}

.dark-divide {
  background: rgba(0, 0, 0, 0.1);
}

.about-content {
  margin-top: auto;
  margin-bottom: auto;
}

.about-page p, .about-page a { color: #000; }
.about-page .top-bar, .about-page .bottom-bar { background: #000; }
.about-page .abt-logo { background: #000; color: #FFD000; }

/* project pages */
.project-title-company {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
}

.project-title, .bio-header {
  font-size: 56px;
  line-height: 56px;
  letter-spacing: -1.68px;
  font-weight: 400;
  margin-bottom: 80px;
}

.bio-header {
  color: #000;
  margin-bottom: 40px;
}

.project-paragraph {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.last-project-paragraph {
  margin-bottom: 64px;
}

.project-paragraph a {
  color: #fff;
  font-weight: 500;
}

.project-content {
  max-width: 500px;
  margin: 80px auto;
}

.project-cta {
  padding: 12px 24px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  border-radius: 8px;
  display: block;
  text-align: center;
}

.project-image-container {
  text-align: center;
}

.project-image {
  display: inline-block;
  border-radius: 14px;
  border:1px solid rgba(255, 255, 255, 0.3); 
  position:relative;
  z-index:10;
  margin-right: 16px;
}

.last-pi { margin-right: 0; }

.project-image-caption {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  margin: 8px 0 64px;
  text-align: center; 
}


.img-375 { width: 278px; height: 592px; padding: 3px; }
.img-375 img { width: 270px; height: 584px; border-radius: 10px; }

.img-360 { width: 278px; height: 548px; padding: 3px; }
.img-360 img { width: 270px; height: 540px; border-radius: 10px; }

.img-425 { width: 490px; height: 369px; padding: 3px; }
.img-425 img { width: 482px; height: 361px; border-radius: 10px; }

/* responsive tweaks for project images */
@media (max-width: 768px) {
  .contact-links {
    font-size: 24px;
    line-height: 32px;
  }

  .footer-content .right-content {
    display: none;
  }

  .project-image-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .project-image {
    display: block;
    margin: 0;
  }

  .img-375,
  .img-360,
  .img-425 {
    width: 100%;
    max-width: 340px;
    height: auto;
  }

  .img-375 img,
  .img-360 img,
  .img-425 img {
    width: 100%;
    height: auto;
  }
}

.other-projects {
  margin: 64px auto 0;
  padding: 24px 0 80px;
  max-width: 500px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.other-projects a {
  color: #fff;
}