@charset "UTF-8";
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.portfolio-section {
  padding: 3rem 0;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}
.portfolio-section .hero-section {
  background: linear-gradient(to right, var(--bs-body-bg) 10%, rgba(0, 180, 216, 0.15) 100%);
  width: 100%;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.portfolio-section .hero-section h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--bs-body-color);
}
.portfolio-section .hero-section p {
  font-size: 1.1rem;
  color: var(--bs-body-color);
  line-height: 1.6;
}

.filters-card {
  background: var(--bs-body-bg);
  border: 2px solid var(--bs-primary);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.filters-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--bs-primary);
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.filter-item input[type=checkbox] {
  cursor: pointer;
  width: 20px;
  height: 20px;
  accent-color: var(--bs-primary);
  margin-right: 0.75rem;
}
.filter-item label {
  cursor: pointer;
  margin: 0;
  font-size: 1rem;
  user-select: none;
}
.filter-item label:hover {
  color: var(--bs-primary);
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-primary);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.2);
}
.project-card {
  cursor: pointer;
  height: 100%;
}
.project-card:hover {
  border-color: var(--bs-secondary);
}

.project-card-header {
  padding: 1.5rem;
  border-bottom: 3px solid var(--bs-primary);
}

.project-card-type {
  display: inline-block;
  font-size: 0.8rem;
  color: white;
  background: var(--bs-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.project-card-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--bs-body-color);
  margin-bottom: 0.75rem;
}

.project-card-context {
  font-size: 0.9rem;
  color: var(--bs-body-color);
  line-height: 1.5;
}

.project-card-footer {
  padding: 1rem 1.5rem;
  background-color: rgba(0, 180, 216, 0.05);
  border-top: 1px solid var(--bs-primary);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tech-tag {
  font-size: 0.75rem;
  color: white;
  background: var(--bs-primary);
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
}

.project-status {
  font-size: 0.85rem;
  color: var(--bs-success);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.view-button {
  align-self: flex-start;
  background: var(--bs-primary);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
.view-button:hover {
  background: var(--bs-secondary);
  color: var(--bs-body-color);
  transform: translateX(4px);
}

.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 42, 65, 0.8);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.modal-content {
  position: relative;
  background: var(--bs-body-bg);
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
  z-index: 10000;
}

.modal-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--bs-body-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: rgba(0, 180, 216, 0.1);
  color: var(--bs-primary);
}

.modal-close-float {
  position: fixed;
  top: 10%;
  right: 25%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bs-primary);
  color: white;
  border: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
  z-index: 10001;
}

.modal-close-float:hover {
  transform: rotate(90deg) scale(1.1);
  background: #0078a8;
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.5);
}

.project-detail-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: bold;
  color: var(--bs-body-color);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--bs-primary);
  padding-bottom: 1rem;
}

.project-detail-section {
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}

.section-content {
  color: var(--bs-body-color);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section-list {
  list-style: none;
  padding: 0;
}
.section-list li {
  padding: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--bs-body-color);
  line-height: 1.6;
}
.section-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--bs-primary);
  font-weight: bold;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(0, 180, 216, 0.1);
  color: var(--bs-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid var(--bs-primary);
  font-weight: 600;
}

.illustration-container {
  margin-top: 1rem;
}

.illustration {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--bs-primary);
}

.no-projects {
  text-align: center;
  padding: 3rem;
  color: var(--bs-body-color);
  font-size: 1.1rem;
  background: rgba(0, 180, 216, 0.05);
  border-radius: 12px;
  border: 1px solid var(--bs-primary);
}

@media (max-width: 768px) {
  .portfolio-container {
    grid-template-columns: 1fr;
  }
  .modal-content {
    width: 95%;
    padding: 1.5rem;
    max-height: 95vh;
  }
  .project-detail-title {
    font-size: 1.5rem;
  }
  .portfolio-section .hero-section h2 {
    font-size: 1.8rem;
  }
  .filters-card {
    padding: 1.5rem;
  }
}
@media (prefers-color-scheme: dark) {
  .filters-card {
    background: rgba(255, 255, 251, 0.05);
    border-color: var(--bs-primary);
  }
  .project-card {
    background: rgba(255, 255, 251, 0.02);
    border-color: var(--bs-primary);
  }
  .project-card .project-card-footer {
    background-color: rgba(0, 180, 216, 0.1);
  }
  .modal-content {
    background: rgba(27, 42, 65, 0.95);
  }
}

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