/* Greenboard View — Tactical Overview Aesthetic */

#landscape {
  min-height: 100vh;
  background: var(--navy);
  color: white;
  padding: 4rem 0;
}

.greenboard-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.greenboard-header h2 {
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.greenboard-sub {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Landscape Grid */
.landscape-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.landscape-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.landscape-section:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(42, 157, 143, 0.3);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.section-icon {
  font-size: 2rem;
}

.section-header h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 500;
  color: white;
}

.section-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Landscape Items */
.landscape-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.2rem;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s ease;
  position: relative;
}

.landscape-item:hover {
  background: rgba(42, 157, 143, 0.15);
  border-color: var(--teal);
  transform: translateX(4px);
}

.item-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.item-status {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.item-status.ready {
  background: rgba(42, 157, 143, 0.2);
  color: var(--teal);
  border: 1px solid var(--teal);
}

.item-status.draft {
  background: rgba(233, 196, 106, 0.2);
  color: var(--amber);
  border: 1px solid var(--amber);
}

.item-status.pending {
  background: rgba(136, 136, 136, 0.2);
  color: var(--light);
  border: 1px solid var(--light);
}

/* Landscape Footer */
.landscape-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.landscape-footer .btn-secondary {
  color: white;
  border-color: white;
}

.landscape-footer .btn-secondary:hover {
  background: white;
  color: var(--navy);
}

/* Grid View ASCII Art */
.grid-ascii {
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.5);
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow-x: auto;
  white-space: pre;
}

/* Responsive Greenboard */
@media (max-width: 900px) {
  .landscape-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #landscape {
    padding: 3rem 0;
  }

  .greenboard-header h2 {
    font-size: 1rem;
  }

  .landscape-section {
    padding: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .section-icon {
    font-size: 1.5rem;
  }

  .item-status {
    position: static;
    margin-top: 0.5rem;
    align-self: flex-start;
  }
}
