/* --- HERO SECTION --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  text-align: center; /* Center text */
  width: 100%;
  padding: 0 5%; /* Add side padding */
}

.hero-content {
  width: 100%;
  max-width: 800px; /* Optimal line length for readability */
  margin: 0 auto; /* Center container */
}

.hero-text-pane {
  width: 100%; /* Take full width */
  padding: 0; /* Remove previous padding */
}

#hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto; /* Center the paragraph */
  margin-right: auto;
}

/* Remove image pane styles (no longer needed) */
.hero-image-pane {
  display: none;
}