:root {
  --cream: #f2e6c9;       /* text/outline cream from the logo */
  --sunset-orange: #e2632e; /* sky gradient, upper */
  --ember-red: #c8462c;     /* sky gradient, lower/deeper */
  --sun-glow: #f1d79a;      /* pale halo around the sun */
  --dusk-purple: #5c4a6e;   /* mid mountains */
  --night-navy: #171522;    /* foreground silhouette, near-black */
  --window-glow: #f2a93b;   /* warm cabin window light */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


h1, h2, h3, .nav a {
    font-family: "Fontdiner Swanky", serif;
    font-weight: 400;
    font-style: normal;
}


body {
    font-family: "Exo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: var(--cream);
    color: var(--night-navy);
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

.header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px 32px 12px;
  background: var(--night-navy);
  border-bottom: 4px solid var(--sunset-orange);
}

.header {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 16px 32px 12px;
  background: var(--night-navy);
}

.logo {
  position: relative;
  z-index: 1;
  margin-bottom: -53px;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
}

.nav {
  position: relative;
  z-index: 1;
}

.nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding-bottom: 12px;
}

.nav a:hover {
  color: var(--ember-red);
}

.content {
  height: 100%;
  display: flex;
  flex: auto;
  flex-direction: column;
  gap: 24px;
  align-items: start;
  padding: 50px;
  margin: auto;
}

.card {
  background: var(--sun-glow);
  border: 2px solid var(--sunset-orange);
  border-radius: 12px;
  padding: 24px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card img {
  float: right;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%; 
  margin: 0 0 12px 20px;
}

.card h1 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--ember-red);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--ember-red);
}

.card p {
  margin-bottom: 12px;
  color: var(--night-navy);
}

.card a {
  color: var(--ember-red);
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

.card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--night-navy);
}

.card b {
  color: var(--ember-red);
}

.card table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

.card th, .card td {
  padding: 8px;
  text-align: left;
}

.card th {
  background: var(--sun-glow);
  color: var(--ember-red);
  text-decoration: underline;
}

.footer {
  flex-shrink: 0;

  padding: 20px;
  background: var(--night-navy);
  color: var(--cream);
  border-top: 4px solid var(--sunset-orange);
}

.footer a {
  color: var(--cream);
  text-decoration: none;
}

.footer a:hover {
  color: var(--ember-red);
}