/* ════════════════════════════════════════════════════
   project_detail.css
   Save to:  yourapp/static/css/project_detail.css
   Load via: {% static 'css/project_detail.css' %}

   Requires your main stylesheet to already define:
   --blue, --blue-light, --black, --white, --gray
   Bebas Neue, Barlow Condensed, Barlow  (Google Fonts)
   .fade-up / .fade-up.visible animation
   #cta section, .btn-white, .section-title
   nav height = 85px (mobile) / 90px (desktop)
════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   PAGE SHELL
───────────────────────────────────────── */

.project-detail-page {
  background: #050508;
  color: #ffffff;
  min-height: 100vh;
}

/* Nav stays white (same as projects-page) */
.project-detail-page nav {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-detail-page nav .nav-links a { color: #0a0a0a; }
.project-detail-page nav .nav-links a:hover { color: #1a3fc4; }
.project-detail-page .nav-links a::after { background: #1a3fc4; }

/* Mobile nav drawer stays dark */
@media (max-width: 768px) {
  .project-detail-page .nav-links {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .project-detail-page .nav-links a { color: #ffffff !important; }
  .project-detail-page .nav-links a:hover { background: rgba(255,255,255,0.08); }
  .project-detail-page .nav-links .nav-cta {
    background: #1a3fc4 !important;
    color: #fff !important;
  }
}

/* ─────────────────────────────────────────
   BACK STRIP
   Sits flush under the fixed nav.
   Mobile nav = 85px, Desktop nav = 90px
───────────────────────────────────────── */

.pd-back-strip {
  position: sticky;
  top: 85px;          /* mobile nav height */
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 18px;
  background: rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 769px) {
  .pd-back-strip { top: 90px; padding: 0 48px; }
}

.pd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s, gap 0.18s;
}
.pd-back-btn:hover { color: #fff; gap: 11px; }

.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  /* hide on very small screens so it doesn't crowd */
}
.pd-breadcrumb span:last-child { color: rgba(255, 255, 255, 0.55); }

@media (max-width: 420px) {
  .pd-breadcrumb { display: none; }
}

/* ─────────────────────────────────────────
   HERO SECTION
   Mobile:  image first (top), text below
   Desktop: text left | image right
───────────────────────────────────────── */

.pd-hero {
  position: relative;
  background: #050508;
  overflow: visible;   /* was: hidden */
  padding-top: 0;
}

/* Decorative grid */
.pd-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 63, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 63, 196, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Blue glow */
.pd-hero-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(26, 63, 196, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

/* ── MOBILE LAYOUT (stacked) ── */
.pd-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 20px;   /* ADD THIS — pushes image down from the strip */
}

/* Image block — full width, shown FIRST on mobile */
.pd-hero-visual {
  width: 100%;
  padding: 72px 18px 0;
  
}

.pd-hero-img-frame {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 -8px 50px rgba(26,63,196,0.15);
  background: #0b0f1d;
  aspect-ratio: 16 / 9;        
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  transition: transform 0.3s ease;
}

/* Text block */
.pd-hero-text {
  padding: 28px 18px 36px;
  /* NO order needed */
}

/* No-image placeholder */
.pd-hero-visual-empty .pd-hero-no-img {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(26,63,196,0.1), rgba(26,63,196,0.03));
  color: rgba(255,255,255,0.18);
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* ── DESKTOP LAYOUT (side-by-side) ── */
@media (min-width: 900px) {
  .pd-hero-inner {
    flex-direction: row;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 48px 0;
    gap: 52px;
  }

  .pd-hero-text    { order: 0; flex: 1; padding: 0 0 52px; }
  
  .pd-hero-visual  { order: 1; flex: 1; padding: 0; justify-content: center; }

  .pd-hero-img-frame {
    width: 100%;
    max-width: 620px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 -8px 50px rgba(26,63,196,0.15);
    background: #0b0f1d;
  }

  .pd-hero-img-frame:hover .pd-hero-img {
    transform: scale(1.02);
  }
}

/* ─────────────────────────────────────────
   HERO TEXT ELEMENTS
───────────────────────────────────────── */

.pd-cat-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a3fc4;
  border: 1px solid rgba(26, 63, 196, 0.38);
  background: rgba(26, 63, 196, 0.07);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pd-cat-badge.sm {
  font-size: 8px;
  margin-bottom: 10px;
}

.pd-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  letter-spacing: 0.04em;
  line-height: 0.96;
  color: #ffffff;
  margin: 0 0 16px;
}

.pd-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 22px;
  max-width: 440px;
}

.pd-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}

.pd-tech-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 5px 10px;
  border-radius: 6px;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a3fc4;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.pd-btn-primary:hover { background: #2a52e8; transform: translateY(-1px); }

.pd-btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.pd-btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

/* ─────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────── */

.pd-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 18px 18px;
  background: rgba(26, 63, 196, 0.07);
  border-top: 1px solid rgba(26, 63, 196, 0.13);
  border-bottom: 1px solid rgba(26, 63, 196, 0.13);
}

@media (min-width: 769px) {
  .pd-stats-strip { gap: 48px; padding: 20px 48px; }
}

.pd-stat { text-align: center; }

.pd-stat-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

.pd-stat-lbl {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.pd-stat-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 480px) {
  .pd-stat-sep { display: none; }
}

/* ─────────────────────────────────────────
   BODY GRID  (main content + sidebar)
───────────────────────────────────────── */

.pd-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 18px 64px;
  display: grid;
  grid-template-columns: 1fr;  /* single column on mobile */
  gap: 32px;
}

@media (min-width: 1000px) {
  .pd-body {
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 52px 48px 80px;
    align-items: flex-start;
  }
}

/* Section wrapper */
.pd-section { margin-bottom: 40px; }
.pd-section:last-child { margin-bottom: 0; }

/* Eyebrow label */
.pd-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a3fc4;
  border-left: 3px solid #1a3fc4;
  padding-left: 10px;
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */

.pd-stage {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #060812;
  margin-bottom: 10px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-stage-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: opacity 0.16s ease, transform 0.16s ease;
  background: #060812;
}

/* Prev/Next arrows */
.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s, transform 0.2s;
}
.pd-arrow-left  { left: 10px; }
.pd-arrow-right { right: 10px; }
.pd-arrow:hover { background: #1a3fc4; transform: translateY(-50%) scale(1.08); }

/* Counter badge */
.pd-stage-count {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thumbnail strip */
.pd-thumbs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.pd-thumbs::-webkit-scrollbar { display: none; }

.pd-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.48;
  padding: 0;
  transition: opacity 0.18s, border-color 0.18s, transform 0.18s;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pd-thumb.active,
.pd-thumb:hover { opacity: 1; border-color: #1a3fc4; transform: translateY(-2px); }

/* ─────────────────────────────────────────
   DETAILS TEXT
───────────────────────────────────────── */

.pd-details {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.75);
}
.pd-details p { margin-bottom: 1em; }

/* ─────────────────────────────────────────
   TECH CHIPS
───────────────────────────────────────── */

.pd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pd-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 9px 13px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.pd-chip:hover { border-color: rgba(26,63,196,0.4); background: rgba(26,63,196,0.06); color: #fff; }

.pd-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a3fc4;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────── */

.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Sticky only on large screens where there's room */
@media (min-width: 1000px) {
  .pd-sidebar {
    position: sticky;
    top: 148px;   /* nav 90 + back strip 42 + 16 gap */
  }
}

/* Base card */
.pd-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}

.pd-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
}

/* Remark card */
.pd-card-remark { border-left: 3px solid #1a3fc4; }

.pd-stars {
  color: #f0c040;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.pd-remark {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin: 0 0 13px;
}

.pd-author {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pd-avatar {
  width: 30px;
  height: 30px;
  background: #1a3fc4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.pd-author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

.pd-author-role {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 1px;
}

/* Info card */
.pd-info { display: flex; flex-direction: column; gap: 0; }

.pd-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pd-info-row:last-child { border-bottom: none; }

.pd-info-k {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  flex-shrink: 0;
}

.pd-info-v {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  text-align: right;
}

.pd-info-v.green { color: #4eff91; }
.pd-info-v.blue  { color: #7aa3ff; }

/* CTA card */
.pd-card-cta {
  background: linear-gradient(135deg, rgba(26,63,196,0.16) 0%, rgba(26,63,196,0.06) 100%);
  border-color: rgba(26,63,196,0.28);
}

.pd-cta-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(26,63,196,0.3), transparent 70%);
  pointer-events: none;
}

.pd-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 6px;
  position: relative;
}

.pd-cta-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0 0 14px;
  position: relative;
}

.pd-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: #1a3fc4;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.pd-cta-btn:hover { background: #2a52e8; transform: translateY(-1px); }

/* Live link card */
.pd-live {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 13px 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.pd-live:hover { border-color: rgba(26,63,196,0.38); background: rgba(26,63,196,0.06); }

.pd-live-icon {
  width: 34px; height: 34px;
  background: rgba(26,63,196,0.14);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #2a52e8;
}

.pd-live-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pd-live-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.pd-live-url {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-live-arrow {
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: color 0.2s;
}
.pd-live:hover .pd-live-arrow { color: #2a52e8; }

/* ─────────────────────────────────────────
   RELATED PROJECTS
───────────────────────────────────────── */

.pd-related {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.012);
  padding: 48px 18px 56px;
}

@media (min-width: 769px) {
  .pd-related { padding: 56px 48px 64px; }
}

.pd-related-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.pd-related-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 24px;
}

.pd-related-grid {
  display: grid;
  grid-template-columns: 1fr;   /* 1 col on mobile */
  gap: 16px;
}

@media (min-width: 640px)  { .pd-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pd-related-grid { grid-template-columns: repeat(3, 1fr); } }

.pd-rel-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.pd-rel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  border-color: rgba(26,63,196,0.24);
}

.pd-rel-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #060812;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease;
  background: #060812;
}
.pd-rel-card:hover .pd-rel-img img { transform: scale(1.04); }

.pd-rel-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26,63,196,0.1), rgba(26,63,196,0.03));
  color: rgba(26,63,196,0.3);
}

.pd-rel-body {
  padding: 16px 16px 18px;
  flex: 1;
}

.pd-rel-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 8px 0 5px;
  line-height: 1;
}

.pd-rel-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.42);
}

/* ─────────────────────────────────────────
   FOOTER OVERRIDES
───────────────────────────────────────── */

.project-detail-page footer {
  background: #050508;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.project-detail-page .footer-brand p,
.project-detail-page .footer-col a { color: rgba(255,255,255,0.38); }
.project-detail-page .footer-col h5 { color: rgba(255,255,255,0.22); }
.project-detail-page .footer-col a:hover { color: #fff; }
.project-detail-page .footer-bottom p,
.project-detail-page .footer-tagline { color: rgba(255,255,255,0.18); }