
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=Space+Mono&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #f0f0f0;
  color: #000;
  font-family: 'Space Mono', monospace;
  overflow: hidden;
}

.split-layout { display: flex; height: 100vh; }

/* Sidebar Nav */
.sidebar {
  width: 320px;
  border-right: 4px solid #000;
  background: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-links { display: flex; flex-direction: column; gap: 25px; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  color: #888;
  padding-left: 0;
  transition: padding-left 0.3s, color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: #000;
  padding-left: 12px;
  border-left: 4px solid #000;
}

.sidebar-footer { font-size: 0.75rem; color: #888; }

/* Content Column */
.content-scroll {
  flex: 1;
  overflow-y: auto;
  height: 100%;
}

.portfolio-item {
  border-bottom: 4px solid #000;
  background: #fff;
}
.portfolio-item img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  border-bottom: 4px solid #000;
  filter: grayscale(1);
  transition: filter 0.5s;
}
.portfolio-item:hover img { filter: grayscale(0); }
.item-meta { padding: 40px; }
.item-meta h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; }
.item-meta p { line-height: 1.6; color: #555; }

/* Page Text Content Container */
.container-padding { padding: 60px; max-width: 800px; }
.page-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 40px; }
.large-para { font-size: 1.3rem; line-height: 1.7; margin-bottom: 45px; }

.workflow-card {
  background: #fff;
  border: 4px solid #000;
  padding: 30px;
  box-shadow: 8px 8px 0 #000;
  margin-bottom: 40px;
}
.workflow-card h3 { margin-bottom: 15px; font-weight: 800; }

/* Brutalist Form */
.brutalist-form { display: flex; flex-direction: column; gap: 30px; }
.input-wrap { display: flex; flex-direction: column; gap: 10px; }
.input-wrap label { font-weight: 800; }
.input-wrap input, .input-wrap textarea {
  width: 100%;
  padding: 15px;
  border: 4px solid #000;
  outline: none;
  font-family: inherit;
  background: #fff;
}
.submit-btn {
  display: inline-block;
  padding: 18px;
  background: #000;
  color: #fff;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 8px 8px 0 #888;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.submit-btn:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 #000; }

@media (max-width: 900px) {
  .split-layout { flex-direction: column; }
  .sidebar { width: 100%; height: auto; border-right: none; border-bottom: 4px solid #000; padding: 30px; }
  .content-scroll { overflow-y: visible; height: auto; }
}
  