/* Global styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #eeeef1;
  color: #1d1a05;
  font-family: Verdana, sans-serif;
  line-height: 1.6;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.header-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
}

/* Header & navigation */
.header {
  background-color: rgba(29, 26, 5, 0.04);
  border-bottom: 1px solid rgba(29, 26, 5, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.avatar {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 20%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo {
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav a[aria-current="page"] {
  font-weight: bold;
  text-decoration: underline;
}

/* Main content */
.content {
  padding-top: 0.5rem;
}

.intro h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.intro p {
  max-width: 36rem;
}

h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

/* Bucket list */
.bucket-list {
  padding-left: 1.5rem;
  margin: 0;
}

.bucket-item {
  margin-bottom: 0.75rem;
  font-weight: bold;
}

.completed {
  text-decoration: line-through;
  font-weight: normal;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(29, 26, 5, 0.12);
  background-color: rgba(29, 26, 5, 0.02);
}

.footer p {
  font-size: 0.8rem;
  margin: 0;
  padding-top: 1rem;
}


