@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  background-color: #ffffff;
  color: #0d0d0d;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #0d0d0d;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00c1ff;
}

/* HERO GRID SECTION */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  min-height: calc(100vh - 100px);
  padding: 2rem;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* CATEGORY COLUMNS */
.category-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* SOLID BLUE LINK BOXES */
.link-box {
  background-color: #00c1ff;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.link-box:hover {
  background-color: #00a0d9;
}

/* HERO CENTER PANEL */
.hero-center {
  text-align: center;
}

.hero-center h1 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-center p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #444444;
  max-width: 500px;
  margin: 0 auto 1.8rem;
}

.cta {
  padding: 0.8rem 1.6rem;
  background-color: #00c1ff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #00a0d9;
}
