.cursor {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 100;
}

.cursor--large {
  --size: 40px;
  background: #C9E5EA;
  opacity: 50%;
}

.cursor--small {
  --size: 10px;
  background: #4EB8DB;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Reset styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

:root {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
  background-color: #f5f5f5;
  cursor: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* Gradient Background */
  background: linear-gradient(120deg, #eaeaea, #ffffff, #97b5b3);
  background-size: 100% 100%;
}

@-webkit-keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#backgroundSVG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.noselect {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Container to center the content */
.container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 10px 100px 10px;
}

.project-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Card section at the top */
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
  margin-top: 50px;
}

.card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 30px;
}

.card-content {
  max-width: 600px;
}

.card-content svg {
  max-height: 20px;
  fill: black;
}

a svg {
  max-height: 20px;
  fill: black;
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.card-content h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 17px;
  color: #666;
  line-height: 1.5em;
}

.half-br {
  display: block;
  height: 10px;
  width: 1px;
}

/* Projects section */
.projects {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  aspect-ratio: 1 / 1;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}

.project img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project .overlay {
  position: absolute;
  bottom: -30%;
  left: 0;
  right: 0;
  height: 30%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  -webkit-transition: bottom 0.2s ease-in-out;
  transition: bottom 0.2s ease-in-out;
  /* Changed from 0.3s to 0.2s */
  padding: 8px 12px;
}

.project:hover .overlay {
  bottom: 0;
}

.overlay h3 {
  margin: 0;
  font-size: 1.2em;
}

.overlay p {
  margin: 5px 0 0 0;
  font-size: 0.9em;
}

.project-header {
  margin-bottom: 40px;
}

.project-header h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.banner-image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.project-description {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #666;
  font-size: 17px;
}

.gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  aspect-ratio: 16 / 9;
  cursor: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.gallery-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.back-button {
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px 20px;
  background-color: transparent;
  color: #373737;
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  cursor: none;
}

.back-button:hover {
  background-color: #c2c2c2;
}

/* New Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  cursor: none;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.close-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .gallery {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .project-header h1 {
    font-size: 2em;
  }
  .banner-image {
    height: 300px;
  }
}

/* Add some responsiveness */
@media (max-width: 600px) {
  .projects {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .card img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .card-content {
    max-width: 100%;
  }
  .card-content p {
    padding: 0 20px;
  }
  .banner-image {
    height: 200px !important;
  }
  .project-header {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .card {
    padding-bottom: 0;
    padding-top: 0;
  }
  .overlay {
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
  }
  .back-button {
    display: none !important;
  }
}
/*# sourceMappingURL=main.css.map */