/* =========================================================
   COLOR SCHEME — edit these six values to test a new palette.
   Everything else in this file just references these variables.
   ========================================================= */

/* 
Initial color palette choices
Dark goldenrod B8860B
Golden sand D9C168
Periwinkle CCDDFF
Pale sky B7CCE1
Alabaster E6E6E6
Charcoal blue 304550 
Pink mist DF9BBC*/

:root {
  --dark-primary:     #304550; /* header bar background */
  --light-primary:    #E6E6E6; /* main page background */
  --light-secondary:  #D9C168; /* button background */
  --neutral-secondary:#CCDDFF; /* footer bar background */

  --text-on-dark:     #E6E6E6; /* text sitting on dark-primary */
  --text-on-light:    #304550; /* text sitting on light-primary / light-secondary / neutral-secondary */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Header: dark primary ---- */
.site-header {
  background-color: var(--dark-primary);
  color: var(--text-on-dark);
  padding: 1.5rem 2rem;
}

.site-header h1 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* ---- Main: light primary ---- */
.site-main {
  background-color: var(--light-primary);
  color: var(--text-on-light);
  flex: 1;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.site-main p {
  max-width: 40rem;
  line-height: 1.5;
}

/* ---- Button: light secondary ---- */
.test-button {
  background-color: var(--light-secondary);
  color: var(--text-on-light);
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

.test-button:hover {
  filter: brightness(0.95);
}

/* ---- Footer: neutral secondary ---- */
.site-footer {
  background-color: var(--neutral-secondary);
  color: var(--text-on-light);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.875rem;
}
