 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap');

 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /*html, body {
      height: 100%;
    } */

    body {
      font-family: "Playfair Display", serif;
      font-optical-sizing: auto;
      font-weight: <weight>;
      font-style: normal;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      background-color: #edf2f4;
      color: #454545 !important;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "Quicksand", sans-serif;
      font-optical-sizing: auto;
      font-weight: <weight>;
      font-style: normal;
      color: #454545 !important;
    }

    h3 {
      color: #5d576b !important;
    }

    .content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      border: 1px solid rgba(0, 0, 0, 0.05);
      /* border-radius: 8px; */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      background-color: #FAF9F6;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      min-height: 100vh;      /* Fill full viewport height */
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #9bc1bc;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      padding: 1rem 1.5rem;
      color: white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }


/* BLOCKQUOTE STYLES - VERY SPECIFIC & IMPORTANT */
body blockquote, 
body main blockquote, 
body .content blockquote {
  font-style: italic !important;
  border-left: 4px solid #ccc !important;
  padding: 1rem 1.25rem !important;
  margin: 1.5rem 0 !important;
  background-color: #f9f9f9 !important;
  color: #555 !important;
}

body blockquote p,
body main blockquote p,
body .content blockquote p {
  margin: 0 !important;
}





    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .site-title {
      font-size: 1.5rem;
      font-family: "Quicksand", sans-serif;
    }

    .site-title > a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }

    .site-title > a:hover {
      text-decoration: underline dotted;
     /* text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff; */
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: white;
      background-color: transparent;
      font-family: "Quicksand", sans-serif;
      font-size: 0.8em;
      text-decoration: underline dotted;
      text-transform: uppercase;
      /*box-shadow: inset 0 0 0 0 #5c8787;
      padding: 0 .25rem;
      margin: 0 -.25rem;
      transition: color .3s ease-in-out, box-shadow .3s ease-in-out; transition: background 0.3s ease; padding: 0.5rem 1rem; */
      transition: color 0.3s;
    }

    nav a:hover {
      color: #2b6161;
      text-decoration: none;
      /* border-radius: 5px;  background-color: #5c8787; box-shadow: inset 200px 0 0 0 #5c8787; */
    }

    .focus {
      color: #2b6161 !important;
      text-decoration: none !important;
    }

    .focus:hover {
      color: white !important;
      text-decoration: none !important;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 30px;
      height: 24px;
      position: relative;
      z-index: 1100;
    }

    .menu-toggle .bar {
      display: block;
      height: 4px;
      width: 100%;
      background-color: white;
      border-radius: 2px;
      position: absolute;
      left: 0;
      transition: all 0.4s ease;
    }

    .menu-toggle .bar:nth-child(1) {
      top: 0;
    }

    .menu-toggle .bar:nth-child(2) {
      top: 10px;
    }

    .menu-toggle .bar:nth-child(3) {
      top: 20px;
    }

    .menu-toggle.open .bar:nth-child(1) {
      transform: rotate(45deg);
      top: 10px;
    }

    .menu-toggle.open .bar:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3) {
      transform: rotate(-45deg);
      top: 10px;
    }

    .container {
      flex: 1 0 auto;  /* Allow growth */;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
      padding: 1rem;
      background-color: transparent;
    }

    main, aside {
      background-color: #ffffff;
      padding: 1.3rem;
      /* border-radius: 8px; */
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

   /* main:hover, aside:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    } */

    main p {
      margin-bottom: 1.2em;
    }

    main ul {
      margin-left: 2em;
      list-style: square;
    }

    main ul li {
      color: #454545;
    }

    main a {
      color: #ed6a5a;
      text-decoration: underline dotted;
      transition: color 0.3s;
    }

    main a:hover {
      color: #2b6161;
      text-decoration: none;
    }

   .welcome-text {
      font-family: "Quicksand", sans-serif;
      font-size: 1.1em;
      line-height: 1.3em;
    }

    hr {
      border: none;
      border-top: 1px dotted rgba(0, 0, 0, 0.5); /* subtle gray */
      margin: 2rem 0;
    }

    img {
      max-width: 80%;
      margin-top: 0.5em;
      margin-bottom: 0.8em;
      border: 1px solid #454545;
    }

    .round-image {
      border-radius: 50%;
      width: 124px;
      height: 124px;
    }

    aside h3 {
      margin-top: 1rem;
    }

    aside ul {
      list-style-type: none;
      padding-left: 0;
    }

    aside ul li {
      margin: 0.5rem 0;
    }

    aside ul li a {
      color: #ed6a5a;
      text-decoration: underline dotted;
      transition: color 0.3s;
    }

    aside ul li a:hover {
      color: #2b6161;
      text-decoration: none;
    }

    button, .menu-toggle {
    background-color: #9bc1bc;
    color: white;
    }

    /* button:hover {
    background-color: #9bc1bc;
    } */

    footer {
      flex-shrink: 0;
      background-color: #5d576b;
      font-family: "Quicksand", sans-serif;
      color: white;
      text-align: center;
      padding: 1rem 1.5rem;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      border-bottom: none;
    }

    #copyright {
      font-style: italic;
      font-size: 0.9em;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-in-out;
        gap: 1em;
        margin-top: 1em;
      }

      nav.show {
        max-height: 500px;
      }

      .menu-toggle {
        display: block;
      }

      .container {
        grid-template-columns: 1fr;
      }
    }

   /* Halo Effect */

   .halo-container {
      position: relative;
      /* padding: 3rem 5rem; 
      border-radius: 1rem;*/
      z-index: 1;
    }

    .halo-container::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 130%;
      height: 130%;
      background: radial-gradient(
        circle,
         rgba(255, 0, 0, 0.10) 0%,
        rgba(255, 102, 0, 0.08) 10%,
        rgba(255, 204, 0, 0.08) 20%,
        rgba(0, 255, 128, 0.08) 30%,
        rgba(0, 255, 255, 0.08) 40%,
        rgba(0, 128, 255, 0.08) 50%,
        rgba(0, 0, 255, 0.08) 60%,
        rgba(75, 0, 130, 0.08) 70%,
        rgba(148, 0, 211, 0.08) 80%,
        rgba(255, 0, 255, 0.08) 90%,
        rgba(255, 0, 0, 0.10) 100%
      );
      filter: blur(200px);
      z-index: -1;
      animation: halo 10s ease-in-out infinite;
    }

    @keyframes halo {
     0%   { transform: translate(0%, 0%) rotate(0deg); }
      25%  { transform: translate(10%, -5%) rotate(90deg); }
      50%  { transform: translate(-10%, 10%) rotate(180deg); }
      75%  { transform: translate(5%, -10%) rotate(270deg); }
      100% { transform: translate(0%, 0%) rotate(360deg); }
      }
    }

.read-more {
    font-family: "Quicksand", sans-serif;
    font-size: 0.9em;
    font-weight: 600;
}