.page-content.home {
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #222;
  background-color: #f8f9fa; /* only affects home */
  line-height: 1.6;
}

.page-content.home header {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.95)),
    url('/assets/background.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 20px 100px 20px;
  margin-top: 0 !important;
}

.page-content.home header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-content.home header p {
  font-style: italic;
  font-size: 18px;
  color: #666;
  margin: 0;
}

.page-content.home .buttons {
  margin-top: 30px;
}

.page-content.home .terminal-container {
  position: relative;
  height: 8em;
  margin: 10px auto 0;
  display: block;
  text-align: center;
}

.page-content.home .terminal-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6em;
  height: 6em;
  fill: #4a9d52;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.9))
          drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.page-content.home .terminal-container .terminal-full {
  animation: blink-full 1s infinite;
}

.page-content.home .terminal-container .terminal-blink {
  animation: blink-blink 1s infinite;
}

@keyframes blink-full {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes blink-blink {
  0%, 50% { opacity: 0; }
  51%, 100% { opacity: 1; }
}

.page-content.home a.button {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  background: #4a9d52;
  color: white;
  transition: background 0.25s;
}

.page-content.home a.button:hover {
  background: #367c3f;
}

.page-content.home section {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

.page-content.home section h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
}

.page-content.home section p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

.page-content.home .headline-icon {
  color: #4a9d52;
  margin-right: 0.3rem;
  margin-left: 0.5rem;
}

.page-content.home .tech-icon {
  color: #4a9d52;
  margin-right: 0.3rem;
}

.page-content.home footer {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #ddd;
  background: #f1f3f4;
}

.page-content.home .custom-footer-divider {
    border-left: 1px solid var(--color-secondary-dark-1);
    margin: 0 0.1rem;
}