@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: bisque;
  line-height: 1.6;
}

#banner {
  background-color: brown;
  color: white;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 10px 3px coral;
}

#logo {
  width: 150px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 10px 3px black;
}

.tagline {
  margin-top: 8px;
  font-weight: 300;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: bisque;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px black;
}

nav a:hover {
  background: coral;
  color: white;
  text-shadow: none;
}

.badge {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: coral;
  color: white;
  padding: 10px 15px;
  border-radius: 999px;
  box-shadow: 0 0 10px black;
  font-weight: 600;
}

.grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px;
}

section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
  margin-bottom: 10px;
  color: brown;
}

.role-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.role {
  margin-bottom: 20px;
}

.meta {
  color: #777;
  font-size: 0.9em;
}

ul {
  margin-top: 10px;
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  nav {
    flex-direction: column;
    align-items: center;
  }
}
