/* ✅ Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fbfd;
  color: #333;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  line-height: 1.6;
}

/* 🖼️ Banner Image */
.banner img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* 👤 Header */
header {
  text-align: center;
  margin-bottom: 40px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headshot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #80c7f2; /* Light blue border */
  margin-bottom: 12px;
}

#name {
  font-size: 2rem;
  color: #3399cc; /* Light blue */
}

#contact {
  font-size: 1rem;
  color: #666;
  margin-top: 6px;
}

/* 📄 Section Headings */
section {
  margin-bottom: 30px;
}

h2 {
  font-size: 1.5rem;
  color: #3399cc;
  margin-bottom: 10px;
  border-bottom: 2px solid #b3dbf2;
  padding-bottom: 5px;
}

h3 {
  font-size: 1.2rem;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #267eaa;
}

/* 🗃️ Job Timeline */
.timeline {
  padding-top: 10px;
}

.job {
  margin-bottom: 20px;
}

.job p {
  font-style: italic;
  color: #555;
  margin-bottom: 6px;
}

/* 📋 Lists */
ul {
  padding-left: 20px;
  margin-top: 8px;
}

ul li {
  margin-bottom: 6px;
}

ul ul {
  padding-left: 18px;
  margin-top: 4px;
}

#educationDetails {
  list-style-type: square;
}

/* 📱 Responsive Design */
@media (max-width: 600px) {
  body {
    padding: 12px;
  }

  .headshot {
    width: 100px;
    height: 100px;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  #name {
    font-size: 1.6rem;
  }

  #contact {
    font-size: 0.95rem;
  }
}
