@charset "UTF-8";
.breadcrumb {
  background: #0c1929;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  border-left: 2px solid rgba(59, 130, 246, 0.15);
}
.breadcrumb a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover {
  color: #f59e0b;
}
.breadcrumb span {
  color: #4b607a;
}

.project-page-header {
  background: #0e1e32;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-top: 3px solid #f59e0b;
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.project-page-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.project-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.content-section {
  background: #0e1e32;
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: 2.25rem;
  margin-bottom: 1.5rem;
}
.content-section h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #f59e0b;
}
.content-section h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f59e0b;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.content-section p {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 0.5rem;
  border: 1px solid rgba(59, 130, 246, 0.15);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parts-list ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.parts-list li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(59, 130, 246, 0.06);
}
.parts-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-size: 1.1rem;
  line-height: 1.2;
}
.parts-list li a {
  color: #ccc;
  text-decoration: none;
}
.parts-list li a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

.code-section {
  margin-top: 1.5rem;
}
.code-section pre {
  background: #050b14;
  border-left: 3px solid #f59e0b;
  padding: 1.5rem;
  overflow-x: auto;
  margin-top: 1rem;
}
.code-section code {
  font-family: "Courier New", Monaco, "Menlo", monospace;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #a5d6a7;
}

.download-links {
  margin-top: 1.25rem;
}

.file-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.file-links li {
  margin: 0;
}

.download-btn,
.download-btn-primary {
  display: block;
  padding: 0.85rem 1.25rem;
  background: transparent;
  border: 1.5px solid rgba(59, 130, 246, 0.35);
  color: #94a3b8;
  text-decoration: none;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  background-color: #111;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.2s ease;
}
.download-btn:hover,
.download-btn-primary:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.download-btn-primary {
  background: #f59e0b;
  color: #070d1a;
  border-color: #f59e0b;
  font-weight: 600;
}
.download-btn-primary:hover {
  background: #d97706;
  border-color: #d97706;
  color: #070d1a;
  transform: translateY(-2px);
}

.print-settings {
  background: rgba(5, 11, 20, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.print-settings h4 {
  margin-top: 0;
}
.print-settings ul {
  list-style: none;
  padding: 0;
}
.print-settings li {
  padding: 0.4rem 0;
  color: #94a3b8;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.06);
}
.print-settings li:last-child {
  border-bottom: none;
}
.print-settings strong {
  color: #e2e8f0;
  font-weight: 600;
  margin-right: 0.5rem;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.gallery-item {
  border: 1px solid rgba(59, 130, 246, 0.15);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.gallery-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
}
.gallery-item img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item img:hover {
  transform: scale(1.04);
}
.gallery-item .caption {
  padding: 0.65rem 1rem;
  background: rgba(5, 11, 20, 0.8);
  color: #4b607a;
  text-align: center;
  font-size: 0.82rem;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.back-link {
  text-align: center;
}

.back-link-top {
  margin-top: 20px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.75rem;
  background: transparent;
  border: 1.5px solid rgba(59, 130, 246, 0.35);
  color: #94a3b8;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
}

.links-section {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.links-section .link-item {
  margin-bottom: 0;
  flex-grow: 1;
  min-width: 200px;
}

@media (max-width: 768px) {
  .project-page-header {
    padding: 1.75rem 1.25rem;
  }
  .project-page-header h2 {
    font-size: 1.6rem;
  }
  .content-section {
    padding: 1.5rem;
  }
  .content-section h3 {
    font-size: 1rem;
  }
  .file-links {
    grid-template-columns: 1fr;
  }
  .photo-gallery {
    grid-template-columns: 1fr;
  }
  .links-section {
    flex-direction: column;
  }
  .links-section .link-item {
    min-width: unset;
  }
}
@media (min-width: 1024px) {
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-item {
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.96);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox.active {
  display: flex;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 92vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 78vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.lightbox-caption {
  color: #94a3b8;
  font-size: 0.88rem;
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.3px;
}

.lightbox-counter {
  color: #4b607a;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.35rem;
  letter-spacing: 1.5px;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: transparent;
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  color: #f59e0b;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.lightbox-close:hover {
  background: #f59e0b;
  color: #070d1a;
}
.lightbox-close span {
  padding-bottom: 5px;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 30, 50, 0.85);
  border: 1.5px solid rgba(59, 130, 246, 0.25);
  color: #94a3b8;
  font-size: 2.2rem;
  width: 3rem;
  height: 5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: #f59e0b;
  color: #f59e0b;
}
.lightbox-prev span,
.lightbox-next span {
  padding-bottom: 8px;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@media (max-width: 600px) {
  .lightbox-prev {
    left: 0.25rem;
  }
  .lightbox-next {
    right: 0.25rem;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 2.5rem;
    height: 4rem;
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=project-page.css.map */