/* [project]/src/app/portfolio/Portfolio.module.css [app-client] (css) */
.Portfolio-module__waoPaG__container {
  z-index: 10;
  box-sizing: border-box;
  color: #fff;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 4rem 2rem;
  display: flex;
  position: relative;
}

.Portfolio-module__waoPaG__header {
  text-align: center;
  margin-bottom: 4rem;
}

.Portfolio-module__waoPaG__title {
  background: linear-gradient(90deg, #fff, #888);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: bold;
}

.Portfolio-module__waoPaG__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.Portfolio-module__waoPaG__card {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  padding: 2rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.Portfolio-module__waoPaG__card:hover {
  background: #ffffff1a;
  border-color: #ffffff4d;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #00000080;
}

.Portfolio-module__waoPaG__cardHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.Portfolio-module__waoPaG__projectName {
  font-size: 1.5rem;
  font-weight: bold;
}

.Portfolio-module__waoPaG__projectType {
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff1a;
  border-radius: 4px;
  padding: .2rem .5rem;
  font-size: .8rem;
}

.Portfolio-module__waoPaG__card:hover .Portfolio-module__waoPaG__projectName {
  background: linear-gradient(90deg, red, #ff7f00, #ff0, #0f0, #00f, indigo, #8f00ff) 0 0 / 200%;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 3s linear infinite Portfolio-module__waoPaG__rainbow;
}

.Portfolio-module__waoPaG__description {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

.Portfolio-module__waoPaG__linkUrl {
  color: #888;
  margin-top: 1.5rem;
  font-family: monospace;
  font-size: .9rem;
}

.Portfolio-module__waoPaG__footer {
  margin-top: auto;
  padding-bottom: 2rem;
}

.Portfolio-module__waoPaG__backLink {
  color: #888;
  font-family: monospace;
  font-size: .9rem;
  text-decoration: none;
  transition: color .3s;
}

.Portfolio-module__waoPaG__backLink:hover {
  color: #fff;
}

@keyframes Portfolio-module__waoPaG__rainbow {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

@media (max-width: 768px) {
  .Portfolio-module__waoPaG__title {
    font-size: 2rem;
  }

  .Portfolio-module__waoPaG__grid {
    grid-template-columns: 1fr;
  }

  .Portfolio-module__waoPaG__backLink {
    font-size: .8rem;
  }
}

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