h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    font-weight: normal; 
    letter-spacing: 1px; 
  }


  body {
    margin: 0;
    padding: 40px 0;
    min-height: 100vh;
    background-color: #c4e4ff;
    position: relative;
    overflow-x: hidden;
    font-family: sans-serif;
  }

  body::before {
    content: "";
    position: fixed;
    top: -50%; left: -50%; width: 200%; height: 200%;
    z-index: -2;
    background-image: conic-gradient(
      from 0deg,
      #9fd2ff 90deg,
      transparent 90deg 180deg,
      #9fd2ff 180deg 270deg,
      transparent 270deg
    );
    background-size: 70px 70px;
    transform: rotate(-15deg);
  }

  body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(90, 140, 255, 0.25) 100%);
    pointer-events: none;
  }


  .site-container {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto; 
    display: flex;   
    gap: 20px;     
    align-items: flex-start; 
  }


  .sidebar {
    width: 360px;
    flex-shrink: 0;
    
    background-color: #ffffff;
    border: 6px solid rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    
    padding: 15px;
    box-sizing: border-box;
  }


  .sidebar-charm {
    width: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;
    margin-bottom: 20px;    
  }

  .sidebar-charm img {
    max-width: 110px; 
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.2s ease-in-out;
  }

  .sidebar-charm img:hover {
    transform: translateY(-4px) rotate(5deg);
  }

  .button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 8px;
  }

  .nav-button {
    display: block;
    transition: transform 0.1s ease;
  }

  .nav-button img {
    width: 100%;
    max-width: 106px; 
    height: auto;
    display: block;
  }

  .nav-button:active {
    transform: translateY(2px);
  }
  
  .nav-button:hover img {
    filter: brightness(1.1);
  }


  .main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }


  .top-banner {
    width: 100%;
    height: 180px; 
    
    position: relative;
    overflow: hidden;
    
    background-color: #ffffff;
    border: 6px solid rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box; 
  }

  .top-banner::before {
    content: "";
    position: absolute;
    top: -5%; left: -5%; width: 110%; height: 110%;
    
    background-image: url('/images/header2.png'); 
    
    background-size: cover;
    background-position: center;
    
    transform: rotate(-2deg);
    z-index: 0;
    pointer-events: none;
  }

  .banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  } 

  .banner-logo {
    max-width: 90%; 
    max-height: 130px;
    height: auto;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.3));
  }

.info-area {
    width: 100%;
    min-height: 1000px; 
    position: relative; 
    z-index: 1;
    overflow: hidden; 
    
    background-color: #ffffff;
    border: 6px solid rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box; 
  }

  .info-area::before {
    content: "";
    position: absolute;
    top: -5%; left: -5%; width: 110%; height: 110%;
    
    background-image: url('/images/halftone.svg'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-position: top center;
    
    transform: rotate(3deg) translateZ(0); 
    
    will-change: transform; 
    
    z-index: -1; 
    pointer-events: none; 
    opacity: 0.3; 
  }
.info-content {
    position: relative; 
    z-index: 10; 
    padding: 20px;
  }

  .info-content h1 {
    margin-top: 0;
    color: #005bb5; 
    font-size: 28px;
    border-bottom: 2px dashed #9fd2ff; 
    padding-bottom: 10px;
    margin-bottom: 20px;
  }


.info-content h2 {
    color: #005bb5;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    

    display: flex;
    align-items: center;
    gap: 12px;
  }

  .info-content img.header-icon {
    width: 45px; 
    height: auto;
    margin: 0;
    border: none;
    box-shadow: none;
    display: inline-block;
  }


.info-content p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6; 
    color: #1a1a1a;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.9); 
  }


.info-content img {
    max-width: 100%; 
    height: auto;
    border-radius: 4px;
    border: 3px solid #fff; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 20px auto; 
  }

  .img-left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    max-width: 40%;
  }

  .img-right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
    max-width: 40%;
  }

  .clear {
    clear: both;
  }

  .info-content em {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
  }
  .info-content h2 {
    margin-top: 0;
  }

  .sticky-note {
    width: 220px;
    height: 220px;
    margin: 60px auto 20px auto;
    padding: 30px;
    box-sizing: border-box;
    background-color: #ffeb7a; 
    background-image: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%); /* Subtle paper glare */
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: #4a4a4a;
    line-height: 1.3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .masonry-grid {
    column-count: 3;
    column-gap: 15px;
    padding: 10px 0;
  }

  .masonry-item {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    break-inside: avoid;
    
  
    border-radius: 4px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
  }

  .masonry-item:hover {
    transform: scale(1.02) rotate(1deg);
    z-index: 2;
    position: relative;
  }

  .social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 342px;
    height: 111px;
    
    background-color: #d71616;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(150, 0, 0, 0.15) 10px,
      rgba(150, 0, 0, 0.15) 20px
    );
    
    border: 3px solid #a80b0b;
    border-radius: 12px;
    
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.15);

    font-family: 'Fredoka One', cursive;
    font-size: 42px;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    
    text-shadow: 
      2px 2px 0 #a80b0b,
      -2px -2px 0 #a80b0b,
      2px -2px 0 #a80b0b,
      -2px 2px 0 #a80b0b,
      0px 4px 4px rgba(0, 0, 0, 0.3);
      
    transition: transform 0.1s ease, filter 0.2s ease;
    margin-bottom: 20px;
  }

  .social-btn:hover {
    filter: brightness(1.1);
  }

  .social-btn:active {
    transform: translateY(3px);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.3),
                0 1px 3px rgba(0, 0, 0, 0.15);
  }

  .log-feed {
    margin-top: 30px;
    border-left: 3px dashed #9fd2ff;
    padding-left: 20px;
    margin-left: 10px;
  }

  .log-entry {
    margin-bottom: 40px;
    position: relative;
  }

  /* The Date Pill */
  .log-date {
    display: inline-block;
    background-color: #005bb5;
    color: white;
    font-family: 'Fredoka One', cursive;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    left: -32px; 
  }

  .log-body {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #c4e4ff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .log-body p:last-child {
    margin-bottom: 0;
  }