/* =====================================================
   ROOT VARIABLES
   ===================================================== */

:root {
  --heading-font: brandon-grotesque, sans-serif;
  --body-font: franklin-gothic, sans-serif;

  --text-color: black;
  --background-color: #ebffde;'#93c572;
  --border-color: #e5e5e5;

  --max-width-content: 42rem;
  --max-width-nav: 64rem;
}

/* =====================================================
   GLOBAL RESET / BASE
   ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1em;
  line-height: 1.5;
  color: var(--text-color);
  background: var(--background-color);
}

a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

ul {
  padding-left: 1.2rem;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 500; /* Medium */
  letter-spacing: 0.02em;
  line-height: 1.25;
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 2rem;
  text-wrap:balance;
}

h2 {
  font-size: 1.6rem;
  margin-top: 4rem;
  margin-bottom: 1.25rem;
  text-wrap:balance;
}

h3 {
  font-size: 1.1rem;
  margin-top: 1.25rem;
  text-wrap:balance;
}

p {
  margin: 1.25rem 0;
  text-wrap:pretty;
}

li {
  margin-bottom: 0.5rem;
}

/* =====================================================
   PAGE LAYOUT
   ===================================================== */

main {
  max-width: var(--max-width-content);
  margin: 5rem auto;
  padding: 0 1.25rem;
}

/* =====================================================
   FOOTER
   ===================================================== */

.inline{display:none;}
.footer{margin:20px 0;font-weight:100;font-style:normal;}
.social{width:2rem;height:2rem;}

.star-symbol::before {
  content: "\2736"; /* Unicode for 'Six Pointed Black Star' */
  font-size: 80%; /* Adjust size as needed */
  color: red;
}

/* =====================================================
   QUOTES
   ===================================================== */

.quote {
      display:inline-block;
      text-align:left;
      width:100%;
      padding:0px 0px;
      font-style: italic;
      border-top:0px dashed black;
      border-bottom:0px dashed black;
      margin:20px 0;
    }

.attribution {
      display:inline;
      font-style: normal;
    }

/* =====================================================
   HIDE SCROLLBARS
   ===================================================== */

.element {
  /* IE and Edge */
  -ms-overflow-style: none;
  /* Firefox */
  scrollbar-width: none;
}
/* Chrome, Safari, and Opera */
.element::-webkit-scrollbar {
  display: none;
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.gwdesign {
    text-align:left;
    font-family:brandon-grotesque,sans-serif;
    font-weight:500;
    font-style:normal;
    font-size:3rem;
    color:black;
    border-top:2px solid black;
    border-left:2px dashed black;
    line-height:1em;
    padding:0 10px 20px 18px;
    border-top-left-radius:20px;
    margin:0px 20px 0 0;
}  

.site-header {
  border-bottom: 0px solid var(--border-color);
  background: var(--background-color);
}

.nav {
  max-width: var(--max-width-nav);
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--heading-font);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.nav-toggle {
  font-family: inherit;
  font-size: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.nav-menu a {
  font-family: var(--body-font);
}

.nav-menu a[aria-current="page"] {
  border-bottom: 1px solid var(--text-color);
}

/* =====================================================
   DESKTOP NAV
   ===================================================== */

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 0;
  }
}