@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400..700&display=swap');
/*Colour pallete: https://colorhunt.co/palette/16610ef97a00fed16afff4a4 */

@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: white;
  }
}

body {
  margin: 0;
  font-family: Georgia, Helvetica, serif;
  line-height: 1.6;
  /*width: 100%;*/
  /*overflow-x: hidden;*/
}

a {
  color: #FFC16A;
  text-decoration: underline;
  font-family: Helvetica serif;
}
a:hover {
  color: #FED16A;
}

header {
  background-color: #16610E;
  padding: 0.5rem;
  text-align: center;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #FFF;
  font-family: serif;
  letter-spacing: 0.3rem;
}

.hero {
  padding: 1rem;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem;
  max-width: 800px;
  /*margin: 0 auto;*/
}

blockquote {
  border-left: 2px solid #FFC16A;
  padding-left: 32px; /* Space between the border and the text */
  margin-left: 16px;
  font-style: italic;
}

.features {
  background: var(--bg-start);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr; /* Single column by default for mobile */
  gap: 2rem;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid for larger screens */
}



.footer {
  background-color: #222;
  color: #eee;
  padding: 1rem;
  text-align: center;
}
.footer a {
  color: #ffd600;
  text-decoration: none;
}

/* Privacy Policy Link */
.privacy {
    font-size: 0.9rem;
    text-decoration: underline;
}

.privacy:hover {
    opacity: 0.8;
}