:root {
  --side-offset: 10%;
}

body {
  background-color: #f8f8f8;
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/170/869/original/BG.png?1753017192");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  font-family: "Murecho", sans-serif;
  font-weight: 250;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  position: relative;
}

h3 {
  font-family: "Murecho", sans-serif;
  font-weight: 400;
  margin-top: 2cap;
}

.logo-container {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  padding-left: var(--side-offset);
}

.logo-container a {
  display: inline-block;
  text-decoration: none;
}

.logo-img {
  margin-top: 80px;
  max-width: 500px;
  width: 80%;
  height: auto;
}

.logo-small {
  position: fixed;
  top: 20px;
  left: 30px;
  z-index: 1000;
  padding: 10px;
}

.logo-small img {
  height: 60px;
  width: auto;
  max-width: none;
}

.navbar {
  padding-bottom: env(safe-area-inset-bottom);
}

.navbar .container-fluid {
  justify-content: flex-start;
  gap: 30px;
  padding-left: var(--side-offset);
  padding-right: var(--side-offset);
}

.nav-link {
  font-size: 18px;
  color: white;
}
.nav-link:hover {
  color: #888;
}
.page-title,
.project-card p {
  color: white;
}

.page-title {
  font-weight: 200;
  font-size: 36px;
  margin-top: 100px;
  text-align: center;
}

.projects-section {
  margin-top: 50px;
  margin-bottom: 100px;
}

.project-card {
  margin: 20px;
}

.project-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

footer {
  font-size: 12px;
  font-weight: 250;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}

.link {
  color: #fe0202;
  text-decoration-line: none;
}

@media only screen and (max-width: 768px) {
  :root {
    --side-offset: 5%;
  }

  .logo-img {
    width: 90%;
  }

  .navbar .container-fluid {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px;
  }

  body {
    padding-bottom: 80px;
  }

  .project-placeholder {
    height: 200px;
  }
}

@media only screen and (max-width: 480px) {
  .logo-container {
    justify-content: center;
    padding-left: 0;
  }

  .logo-img {
    width: 100%;
    max-width: 350px;
  }

  .navbar .container-fluid {
    align-items: center;
    min-height: 60px;
  }

  .nav-link {
    line-height: 1.2;
    padding-top: 6px;
    padding-bottom: 2px;
  }

  .logo-small {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }

  .logo-small img {
    height: 80px;
  }

  .page-title {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 769px) {
  .navbar .container-fluid {
    min-height: 40px;
    align-items: center;
  }

  .nav-link {
    line-height: 1.1;
    padding-top: 0px;
    padding-bottom: 0;
    font-size: 16px;
  }
}

.project-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 10px;
}

.footer-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-footer {
  position: fixed;
  bottom: 40px;
  width: 100%;
  color: white;
  font-size: 12px;
  font-weight: 250;
  text-align: center;
  padding: 10px 0;
  z-index: 999;
}
