/* still.css 20260911 (C) Niamh Shaw */

:root {
  --body-font: "Lato", sans-serif;
  --offwhite: RGB(255,255,255); /* was 253 */
  --bluegreen: RGB(67,92,132);
  --darkerbluegreen: RGB(38,54,79);
  --lightgrey: RGB(211,211,211);
  --faintslateblue: rgba(91,109,205,0.1);
  --shanghai-peach: RGB(215,154,145);
  --gold: RGB(255,215,0);
  --forestgreen: RGB(34,139,34);
  --antique-white: RGB(250,235,215);
  --hampton: #E8D4A2;
  --linkwater: #DCE5F2;
  --spindle: #A7C4E0;
  --fiord: #3B536B;
  --swanwhite: #F7F1E2;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  background: var(--offwhite);
  /* defaults */
  font-family: var(--body-font);
  font-size: 1.0rem;
  line-height: 1.4;
  color: var(--bluegreen);
}

main {
  max-width: 65ch;
  margin: 0 auto;
  padding: 0.5rem 1rem 2rem;
  background: var(--offwhite);
  box-sizing: border-box;
}

main, .close-btn {
  box-sizing: border-box;
}

p {
  font-size: 1.0rem;
  line-height: 1.4;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  margin-block: 0 0.5rem;
}

h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--fiord);
  font-weight: 600;
  text-wrap: balance;
  margin-block: 0; 0.5rem;
}

h2 {
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--fiord);
  font-weight: 500;
  text-wrap: balance;
  margin-block: 0.75rem 0.4rem;
  margin-bottom: 1.0em;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--fiord);
  font-weight: 500;
  text-align: justify;
  margin-block: 0.75rem 0.4rem;
}

hr {
  background: var(--lightgrey);
  height: 2px;
  border: none;
  margin: 1.7rem 0;
}

.quote {
  font-size: 1.0rem;
  line-height: 1.4;
  text-wrap: pretty;
  font-style: italic;
  text-align: justify;
  text-wrap: pretty;
  color: var(--fiord);
  
  padding: 0.5rem 1.0rem;
  margin-block: 1.0rem;

  background-color: var(--swanwhite);
  border: 1px solid var(--lightgrey);
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);

}

footer {
  font-size: 0.8rem;
  text-align: center;
}

footer p {
  text-align: center;
}

.cursive {
  font-family: 'Italianno';
  font-weight: 400;
  font-size: 3rem;
  color: var(--darkerbluegreen);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.5rem 1.0rem;
  background: var(--fiord);
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.navbar-txt {
  font-size: 1.6rem;
  color: white;
  margin: 0;
  padding: 0.5rem;
}

.close-btn {
  font: inherit;
  font-size: 1.8rem;
  line-height: 1.0;
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.1rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

button {
  appearance: none;
  -webkit-appearance: none;
  font-size: 1.0rem;
  color: var(--fiord);
  background: white; /*transparent;*/
  border: 2px solid var(--bluegreen);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

button:hover {
    background-color: var(--faintslateblue);
}

.btn--book {
  background-color: #E8D4A2 !important; /* var(--hampton); */
}
