/* Make the page take full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  flex-direction: column;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

/* Square, larger image aligned left */
.profile-pic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 3px solid white;
  margin-left: 0;
}

/* Center text block vertically and horizontally */
.header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

header {
  background-color: #007030;
  color: white;
  padding: 30px 20px;
}




/* Navigation styling */
nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content grows to fill space */
main {
  flex: 1;
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.dropdown-btn {
  background-color: #007030;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  margin-top: 10px;
}

.dropdown-btn:hover {
  background-color: #005020;
}

.dropdown-content {
  margin-top: 10px;
  padding-left: 20px;
}


/* Footer sticks to bottom */
footer {
  text-align: center;
  padding: 10px;
  background-color: #ddd;
  font-size: 0.9em;
}
