/* GLOBAL FONTS */

:root {
  --heading-font: "Comic Sans MS", "Comic Sans", Arial;
  --body-font: Verdana, sans-serif;
}

/* Body text = Verdana */
body {
  font-family: var(--body-font);
}

/* Headers (brand, hero, section titles) = Verdana heading font */
.navbar-brand,
.hero-heading,
.hero-text h1,
.approach-title,
.app-title,
.printables-title,
.activities-title,
.about-title,
.custom-title,
.seasonal-title {
  font-family: var(--heading-font) !important;
}

/* Card View Typography Overrides */
.activities-col h3,
.activities-col h6,
.activities-col p {
  font-family: var(--body-font) !important;
  font-weight: 600;       /* thicker + more readable */
  color: #683B2B;
}

.activities-col h3 {
  font-size: 1.35rem;
  font-weight: 700 !important;
}

.activities-col h6 {
  font-size: 1.1rem;
  font-weight: 700;
}

.activities-col p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Activities page subheading (the H2 under the banner) */
.subpagetext h2 {
  font-family: var(--body-font) !important;
  font-size: 1.6rem;       /* adjust for readability */
  font-weight: 600;        /* thicker for clarity */
  color: #683B2B;
  text-align: center;
}



/*-------------Navbar section--------*/

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Adjust based on navbar height */
}

.nav-link {
  color: #fff;
  font-family: var(--body-font);
  font-size: 20px;
  display: flex;
  margin-right: auto;
}

/* Remove space from the last item if necessary (for perfect alignment) */
.nav-item:last-child {
  margin-right: 0;
}

.navbar-brand {
  margin-right: auto;
  font-size: 30px;
  font-family: var(--heading-font);
  display: flex;
}

.navbar-collapse {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* Hide the dropdown arrow */
.nav-item.dropdown .nav-link::after {
  display: none;
}

/* When the user hovers or focuses on the link, it turns green */
ul.nav a:hover,
ul.nav a:focus {
  color: #c7ddb5 !important;  /* Green color on hover/focus */
}

/* When the link is active (selected but not hovered), it turns white */
ul.nav a:active {
  color: white !important;  /* White color when active */
}

/* Keep the link white when it's not hovered or focused (default state) */
ul.nav a {
  color: white !important;  /* Default color is white */
}

/* Style the dropdown menu itself */
.nav-item.dropdown .dropdown-menu {
  background-color: white !important;
  color: white !important;
  font-family: var(--body-font);
  font-size: 12px;
  padding: 25px;
}

/* Style the items inside the dropdown */
.nav-item.dropdown .dropdown-menu .dropdown-item {
  color: black !important;  /* Ensure the text is black for dropdown items */
}

/* Hover effect for dropdown items */
.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: white !important;
  color: #c7ddb5 !important;
}

/* Active state of dropdown items */
.nav-item.dropdown .dropdown-menu .dropdown-item.active {
  background-color: #c7ddb5 !important;
  color: white !important;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Horizontal menu inside mobile dropdown */
@media (max-width: 991px) {
  .navbar-collapse .navbar-nav {
    display: flex;                  /* make it a flex container */
    flex-direction: row !important; /* horizontal */
    flex-wrap: wrap;                /* allow wrap if needed *//
  }

  .navbar-collapse .navbar-nav .nav-item {
    margin: 5px 10px !important;    /* spacing between items */
  }

  .navbar-collapse .dropdown-menu {
    position: absolute !important;    /* keep dropdown aligned */
    text-align: left;
  }
}

/* Make navbar text smaller on mobile to prevent wrapping */
@media (max-width: 575px) {
  .navbar-nav .nav-link {
    font-size: 14px !important;
    padding-left: 6px;
    padding-right: 6px;
  }
}


  .navbar-nav .nav-item {
    margin: 3px 6px !important;  /* tighter spacing */
  }





/*-------------Hero image--------*/

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 25px;
  margin-left: 2%;
}

.hero-section-with-bg {
  background-image: url("Images/gradient.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-heading {
  font-size: clamp(3rem, 5vw, 5rem);
  font-family: var(--heading-font);
  color: #014017;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.hero-subheading {
  font-size: clamp(1.5rem, 3.8vw, 2.8rem) !important;
  font-family: var(--body-font);
  color: #014017;
  text-align: center;
  line-height: 1.4;
}

.hero-overlay {
  background: rgba(92, 91, 91, 0.349);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #c7ddb5;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  padding: 0 15px;
}

.hero-text h1 {
  font-family: var(--heading-font);
  font-size: 5rem;
  color: #014017;
}

.hero-text p {
  font-family: var(--body-font);
  font-size: 2.2rem;
  color: #014017;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-img {
    margin-left: auto;
  }
}

@keyframes fadeInHero {
  to {
    opacity: 1;
  }
}

/*-------------Our approach section--------*/

.approach-section {
  background-color: #683B2B;
}

.approach-container {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 5rem;
  padding-right: 2rem;
}

.approach-img {
  border: none !important;
  padding: 0;
  margin: 0;
  box-shadow: none;
  max-width: 70%;
}

.approach-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: white;
  text-align: left;
  padding-top: 40px;
}

.approach-text {
  font-family: var(--body-font);
  font-size: 1.2rem;
  line-height: 1.8;
  color: white;
  text-align: left;
}

.approach-inner {
  max-width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
}

.approach-content {
  display: flex;
  flex-wrap: wrap;
}

.approach-img-wrapper {
  flex: 1;
  max-width: 300px;
  margin-right: 1rem;
}

.approach-text-wrapper {
  flex: 1;
  margin-left: 0;
}

@media (max-width: 768px) {
  .approach-container {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }

  .approach-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .approach-img-wrapper,
  .approach-text-wrapper {
    margin: 0 auto;
    text-align: center;
  }

  .approach-img {
    display: block;
    margin: 0 auto;
  }

  .approach-title,
  .approach-text {
    text-align: center;
  }
}

/*-------------Our app section--------*/

.app-section {
  background-color: white;
  max-height: 600px;
}

.app-content {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.app-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: #683B2B;
  text-align: left;
}

.app-text {
  font-family: var(--body-font);
  font-size: 1.1rem;
  color: #683B2B;
  line-height: 1.7;
  text-align: left;
}

ul.app-text {
  list-style-type: none;
  padding-left: 0;
}

.app-img {
  max-width: 100%;
  margin-right: 0;
  max-height: 700px;
  border: none !important;
}

/* Mobile overrides */
@media (max-width: 768px) {

  .app-section {
    max-height: none;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-title {
    text-align: center;
    font-size: 2rem;
  }

  .app-text {
    text-align: center;
    font-size: 1rem;
  }

  .app-img {
    max-width: 80%;
    max-height: none;
    margin: 1.5rem auto 0;
    display: block;
    border: none !important;
  }

  ul.app-text {
    text-align: left;
  }
}

/*-------------Our printables section--------*/

.printables-section {
  background-color: #683B2B;
}

.printables-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: #fff;
  text-align: left;
}

.printables-text {
  font-family: var(--body-font);
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.7;
  text-align: left;
}

.printables-img {
  max-width: 100%;
  height: auto;
  border-color: #fff;
  border-radius: 25px;
}

@media (max-width: 768px) {
  .printables-title {
    text-align: center;
  }
  .printables-text {
    text-align: center;
  }
  .printables-img {
    text-align: center;
  }
}

/*-------------Our activities section--------*/

.activities-section {
  background-color: #fff;
  margin-bottom: -5%;
}

.activities-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: #683B2B;
  text-align: center;
  padding-top: 4%;
}

.activities-text {
  font-family: var(--body-font);
  font-size: 1.1rem;
  color: #683B2B;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 768px) {
  .activities-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .activities-title {
    text-align: center;
  }
  .activities-text {
    text-align: center;
  }
}

/*-------------About--------*/

.about-section {
  background-color: #683B2B;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 5rem;
  padding-right: 2rem;
}

.about-img {
  border: none !important;
  padding: 0;
  margin: 0;
  box-shadow: none;
  max-width: 70%;
  border-radius: 25px !important;
}

.about-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: white;
  text-align: left;
  padding-top: 40px;
}

.about-inner {
  max-width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
}

.about-img-wrapper {
  flex: 1;
  max-width: 300px;
  margin-right: 1rem;
}

.about-text-wrapper {
  margin-left: 100px;
  margin-top: 75px;
}

@media (max-width: 768px) {
  .about-container {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-img-wrapper,
  .about-text-wrapper {
    margin: 0 auto;
    text-align: center;
  }

  .about-img {
    display: block;
    margin: 0 auto;
  }

  .about-title {
    text-align: center;
  }
}

/*-----Activities main subpages-----*/

h1, h3, h6 {
  color: #683B2B;
  font-family: var(--heading-font);
}

p, label {
  color: #683B2B;
  font-family: var(--body-font);
}

/* --- Activities heading + subtext styling --- */

.activity-title {
  font-size: 2rem;            /* keeps your current large title style */
  font-weight: 700;           /* bold title */
  margin-bottom: 0.25rem;     /* reduce spacing before subtitle */
}

.activity-subtext {
  font-size: 1.2rem;            /* slightly smaller than normal text */
  font-weight: 400 !important;/* not bold */
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Decrease space between image and text */
.activity-image {
  margin-bottom: 0.5rem;
}

.activity-text {
  margin-top: -10px;          /* pulls text upward closer to image */
}

@media (max-width: 768px) {
  .activity-text {
    margin-top: -5px;         /* gentler adjustment on smaller screens */
  }
}


hr {
  color: #683B2B;
  border: solid 2px;
  text-decoration: none;
}

h1 {
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  margin: 10px 0px;
  text-decoration: none;
}

h3 {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin: 10px 0px;
  text-decoration: none;
}

p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  align-content: center !important;
  text-decoration: none;
}

label {
  text-align: left !important;
  font-weight: 200;
  text-decoration: none;
}

.row1 {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

.row2 {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

.activities-col {
  flex-basis: 31%;
  text-decoration: none;
  background-color: white;
  border-color: #683B2B;
  border-radius: 25px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: .5s;
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

.activities-col img {
  display: block;
  margin: auto;
  align-content: center;
  align-items: center;
  flex-basis: 2%;
  border-radius: 1px;
  border-width: 3px;
  margin-bottom: 1px;
  position: relative;
  overflow: hidden;
  width: 90%;
  z-index: 1000;
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

.row-last {
  justify-content: center;
}

.activities-col:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, .2);
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn{
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn{
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


@-ms-keyframes fadeIn{
  0% {opacity:0;}
  100% {opacity:1;}
}

.row1,
.row2,
.row-last {
  flex-wrap: wrap;
  justify-content: space-evenly;
}

/* Phones - 1 activity per row */
@media (max-width: 576px) {
  .activities-col {
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 95% !important;
    margin-bottom: 40px !important;
  }
}

/* iPads - 2 activities per row */
@media (min-width: 577px) and (max-width: 991px) {
  .activities-col {
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 95% !important;
    margin-bottom: 40px !important;
    margin-left: 1%;
    margin-right: 1%;
  }
}

/*-----Individual Activities-----*/

.activities-col {
  max-width: 31%;
  margin: 0 auto;
  background-color: white;
  border: 2px solid #683B2B;
  border-radius: 25px;
  box-sizing: border-box;
  animation: fadeIn 1s ease-in;
  color: #683B2B;
  font-family: var(--body-font);
  text-align: inherit;
  font-size: inherit;
  position: relative;
}

h6 {
  font-weight: bold;
  font-size: inherit;
  text-align: center;
}

p {
  text-align: center;
}

.back-link {
  display: block;
  text-align: center;
  margin: 20px auto;
  font-size: 14px;
  font-family: var(--body-font);
  color: #683B2B;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

a.activity-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

a.activity-link * {
  text-decoration: none !important;
  color: inherit !important;
}

.activities-col a {
  text-decoration: none;
}

a.activity-link:hover .activities-col {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease-in-out;
  text-decoration: none;
}

.dahlia-container {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  z-index: 1;
}

.dahlia-blur-img {
  position: absolute;
  bottom: -525px;
  right: -350px;
  width: 1050px;
  opacity: 0.8;
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
  animation: fadeIn 2s ease;
}

/* Modal overlay container */
.modal-overlay-content {
  width: 95%;
  animation: fadeIn 1s ease-in;
  color: #683B2B;
  font-family: var(--body-font);
  text-align: inherit;
  font-size: 1rem;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.modal-overlay-content h6, 
.modal-overlay-content h3 {
  font-weight: bold;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #683B2B;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
  background: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 34px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.close-button:hover {
  color: #a0522d;
  text-decoration: none;
  background: #f5f5f5;
}

a:target {
  outline: none;
}

a:target h3,
a:target h6,
a:target p {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  #main-image-blur {
    display: none;
  }
}

/*-------------PDF links--------*/

.activities-pdf-link {
  font-family: var(--body-font);
  font-size: 1.0rem;
  color: #683B2B;
  text-align: center;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  text-decoration: none;
}

/*-------------Back to top arrow--------*/

#backToTopArrow {
  position: fixed;
  bottom: 40px;
  right: 5px;
  z-index: 1000;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s ease;
}

#backToTopArrow:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

/*-------------Sub page banners section--------*/

.col-lg-6 img {
  margin-top: 1%;
  border-radius: 25px;
}

.col-lg-6 {
  text-align: left;
}

.col-lg-6 img {
  margin-top: 2%;
  border-radius: 25px;
  border: none;
  display: inline-block;
  text-align: center;
}

.custom-title {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: bold;
  color: #683B2B;
}

@media (max-width: 768px) {
  .customimage .col-lg-6,
  .customimage .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*-------------Featured activities section--------*/

.featured {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

/*-------------About me section--------*/

h2 {
  color: #683B2B;
  font-family: var(--heading-font);
  text-align: center;
  font-weight: 600;
}

.story-text {
  font-family: var(--body-font);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.story-signature {
  font-family: var(--heading-font);
  font-size: 6rem;
  color: #555;
  margin-top: 3rem;
  text-align: center;
  margin-bottom: 5rem;
}

.img-fluid {
  border:#fff solid;
  border-width: 20px;
}

/*-------------Printables page--------*/

/* Printables cards: tighten padding so image can be larger without huge vertical growth */
.printables-featured .activities-col {
  margin-bottom: 10px;
}

/* Larger image, but balanced with less empty space */
.printables-featured .activities-col img {
  width: 60%;
  display: block;
  margin: 0 auto 4px auto;
  margin-top: -50px;
}

/* Title: Verdana heading font */
.printables-card-title {
  font-family: var(--heading-font);
  color: #683B2B;
  font-size: 28px;
  margin-top: -50px;
  margin-bottom: 2px;
  text-align: center;
}

/* Description: Verdana body font */
.printables-card-text {
  font-family: var(--body-font);
  color: #683B2B;
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
  margin-top: 2px;
  margin-bottom: 4px;
}

/*-------------Footer section--------*/

.btn-primary {
  color: #683B2B;
  background-color:rgba(255, 255, 255, .1);
  border: none;
  font-family: var(--body-font);
  font-size: 14px;
}

.mycustomlinks {
  text-decoration: none;
  color: #683B2B;
  font-family: var(--body-font);
  font-size: 14px;
}

.mycustomlinks:hover {
  text-decoration: none;
  color: #683B2B;
}

.btn-primary:hover {
  background-color: #683B2B !important;
}

/* === Footer Text Readability Upgrade === */

footer p,
footer a,
footer h5,
footer small {
  font-family: var(--body-font) !important;
  font-size: 1rem !important;       /* ~16px */
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

/* Footer button update */
footer .btn-primary {
  font-family: var(--body-font) !important;
  font-weight: 600;
  font-size: 1rem;
}

/* Footer links (Gaming2K, Website Terms) */
footer .mycustomlinks {
  font-family: var(--body-font) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
}

/*-------------Website terms--------*/

h6 {
  color: #683B2B;
  font-family: var(--body-font);
  font-weight: 600;
}

.terms-content p,
.terms-content ul li {
  color: #683B2B !important;
  text-align: left !important;
  font-family: var(--body-font) !important;
  font-size: 1rem;   /* Slightly bigger for readability */
  line-height: 1.6;  /* Better spacing */
}

/* keep the ms-4 indent but left-align the block */
.terms-content .ms-4 {
  margin-left: 1.5rem;
}

/* link color */
.terms-content a {
  color: #683B2B !important;
  text-decoration: underline;
}

/* bullet styling */
.terms-content ul {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 1.5rem;
}

/* headings inside terms */
.terms-content h6,
.terms-content h3 {
  text-align: left !important;
  font-family: var(--body-font);
}


/*-------------Seasonal sections for fine motor--------*/

.seasonal-title {
  font-size: 3rem;
  text-align: center;
  color: #fff;
  margin-top: 1rem;
}

.seasonal-subtext {
  font-size: 1.25rem;
  font-family: var(--body-font);
  color: #f0e8e2;
  margin-top: 0.5rem;
  text-align: center;
}

/* Make every seasonal banner span the full browser width */
.seasonal-section {
  background-color: #683B2B;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Spring banner: much less gap above so it sits closer to the <hr> */
.seasonal-section:first-of-type {
  margin-top: 1rem;
  padding-top: 1rem;
}

/* === Card text readability tweaks === */

/* Activity cards (Communication, Fine Motor, etc.) */
.activities-col h3 {
  font-size: 22px;      /* slightly larger title */
  font-weight: 600;
}

.activities-col p {
  font-size: 16px;      /* was 14px */
  font-weight: 500;     /* thicker */
  line-height: 1.6;     /* a bit more breathing room */
}

/* Printables cards text */
.printables-card-text {
  font-size: 19px;      /* was 18px */
  font-weight: 500;     /* a bit thicker */
  line-height: 1.5;
}

/* Optional: make general body paragraphs a touch larger */
.about-text,
.story-text,
.terms-content p,
.terms-content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* === Global body text improvements for index page === */

/* Applies to homepage text blocks */
.hero-subheading,
.hero-text p,
.approach-text,
.app-text,
.printables-text,
.activities-text,
.story-text,
.about-text {
  font-size: 1.05rem;     /* Slight bump: ~16.5px on most browsers */
  font-weight: 500;       /* Thicker, more readable */
  line-height: 1.7;       /* More breathing room */
}
