* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

h1 {
  font-size: 48px;
  font-weight: bold;
}

h2 {
  font-size: 40px;
  font-weight: bold;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
}

.root-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-primary {
  background: black;
  color: white;
  padding: 16px;
  transition: all 1.0s;
}

.btn-primary:hover {
  transform: scaleX(1.05);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #A4A4A4;
  font-size: 20px;
  transition: all 1.0s;
}

.btn-secondary:hover {
  color: white;
}

.arrow-icon {
  width: 24px;
}

.navbar {
  z-index: 999;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 160px;
  position: sticky;
  top: 0;
  background: white;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  color: black;
}

.nav-logo {
  width: 32px;
}

.route-container {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: #A4A4A4;
  transition: all 1.0s;
}

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

.sections-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 0 80px;
  width: 100vw;
  margin-top: 80px;
}

.header-section {
  height: 60vh;
  width: 100%;
}

.header-container {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image:
    linear-gradient(to right, black 38%, transparent),
    url("../public/mohammad-rahmani-8qEB0fTe9Vw-unsplash.jpg");
  background-size: auto, 60% auto;
  background-position: center, right;
  background-repeat: no-repeat, no-repeat;
  padding: 0 80px;
  color: white;
  border-radius: 32px;
}

.header-content {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.projects-section {
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects-container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 440px 472px 440px;
  align-items: center;
  justify-content: space-between;
}

.projects-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.projects-logo {
  width: 48px;
}

.projects-btn {
  margin-top: 16px;
}

.project {
  height: 100%;
}

.project-link {
  width: 440px;
  height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-link:hover {
  .project-img {
    transform: scale(1.05);
  }
}

.jasmijnschrofer {
  background: #09110E;
  border-radius: 0 32px 32px 0;
}

.wayalink {
  background: #0D1423;
  border-radius: 32px 0 0 32px;
}

.project-img {
  width: 380px;
  transition: all 1.0s;
}

.projects-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-section {
  height: 60vh;
  width: 100%;
}

.about-container {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image:
    linear-gradient(to right, black 38%, transparent),
    url("../public/emile-perron-xrVDYZRGdw4-unsplash.jpg");
  background-size: auto, 60% auto;
  background-position: center, right;
  background-repeat: no-repeat, no-repeat;
  padding: 0 80px;
  color: white;
  border-radius: 32px 32px 0 0;
}

.about-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section {
  width: 100vw;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.email-and-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.social-link {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-link img {
  width: 32px;
}

.footer-logo {
  width: 56px;
}

.copyright {
  width: 100%;
  color: #A4A4A4;
  padding: 40px 0;
  border-top: solid 1px #A4A4A4;
}

@media (max-width: 640px) {
  * {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .navbar {
    height: auto;
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .route-container {
    gap: 20px;
    order: 3;
    width: 100%;
    justify-content: center;
    padding-bottom: 8px;
  }

  .brand-container {
    flex: 1;
  }

  .sections-container {
    padding: 0 16px;
    gap: 40px;
    margin-top: 60px;
  }

  .header-section {
    height: auto;
    min-height: 280px;
  }

  .header-container {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 100%),
      url("../public/mohammad-rahmani-8qEB0fTe9Vw-unsplash.jpg");
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    border-radius: 20px;
    align-items: flex-start;
  }

  .header-content {
    width: 100%;
    gap: 12px;
  }

  .projects-section {
    padding: 0;
    width: 100%;
  }

  .projects-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .project-link {
    width: 100%;
    height: 220px;
    border-radius: 20px;
  }

  .project-img {
    width: 180px;
  }

  .projects-content {
    gap: 12px;
    padding: 0 8px;
  }

  .btn-primary {
    padding: 12px 16px;
    font-size: 15px;
    text-align: center;
  }

  .btn-secondary {
    font-size: 16px;
  }

  .about-section {
    height: auto;
    min-height: 280px;
  }

  .about-container {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 100%),
      url("../public/emile-perron-xrVDYZRGdw4-unsplash.jpg");
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    border-radius: 20px 20px 0 0;
    align-items: flex-start;
  }

  .about-content {
    width: 100%;
    gap: 12px;
  }

  .footer-content {
    padding: 32px 20px;
    gap: 24px;
    width: 100%;
  }

  .socials {
    gap: 24px;
  }

  .copyright {
    padding: 24px 20px;
    font-size: 14px;
  }
}
