/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #0D1B2A;
  font-size: 16px;
  line-height: 1.5;
}

nav {
  background-color: #0D1B2A;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

/* Logo Image */
.logo {
  height: 40px;
  width: auto;
}

/* Header Section */
header {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #F5B301;
  color: #0D1B2A;
}

/* Button */
.btn {
  background-color: #0D1B2A;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: #0D1B2A;
}

/* Headshot Image */
.headshot {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F5B301;
  margin: 2rem auto 1rem;
  display: block;
}

.about-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap; /* allows stacking on small screens */
}

.about-container .headshot {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F5B301;
  flex-shrink: 0;
}

.about-text {
  max-width: 400px;
}

.about-text h2 {
  margin-top: 0;
  font-size: 1.75rem;
  color: #0D1B2A;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #0D1B2A;
  color: #ffffff;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

/* Main Content */
main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

/* Utility */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav a {
    margin: 0.25rem 0;
  }

  body {
    font-size: 14px;
  }
}
