/* layout.css */

/* Section Title */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* Subtext / Subtitle */
.subtext {
  text-align: center;
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Main Layout */
main {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
 flex: 1 0 auto
} 

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding-top: 3rem;
}

/* About Section */
.about-section {
  max-width: 850px;
  margin: auto;
  padding: 3rem 2rem;
  text-align: left;
}

/* Bio Paragraphs */
.bio-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--text);
}

/* Highlights List */
.about-highlights {
  margin-top: 3rem;
}

.about-highlights h3 {
  color: hsla(210, 70.1%, 58%, 0.99);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-highlights ul {
  list-style: none;
  padding-left: 0;
}

.about-highlights ul li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

/* Driving Visual Image */
.driving-visual {
  margin-top: 3rem;
  text-align: center;
}

.driving-visual img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 0 18px #4994dffd;
}

/* Map Caption Styling */
.map-caption {
  margin-top: 0.6rem;
  font-style: italic;
  color: #aaa;
  font-size: 0.95rem;
}

