
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
      background-size: 3px 3px;
      z-index: -1;
    }

    body.overlay-active {
      overflow: hidden;
    }

    main, header, footer {
        transition: filter 0.3s ease-in-out;
    }

    body.overlay-active main, body.overlay-active header, body.overlay-active footer {
        filter: blur(5px);
    }

    header {
      position: relative;
      margin-bottom: 2rem;
      padding: 2rem 1rem;
    }

    .header-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
    }

    .header-text {
      margin-left: 1.5rem;
      background-color: rgba(255, 255, 255, 0.85);
      padding: 1.5rem;
      border-radius: 8px;
    }

    .header-text p {
        margin-top: 0.5rem;
        color: #333;
        font-size: 1.1rem;
        max-width: 800px;
    }

    .profile-picture {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 5px solid #f0f2f5;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-right: 1rem;
      flex-shrink: 0; /* prevent shrinking */
    }

    main {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    section {
      margin-bottom: 3rem;
      background-color: white;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    h1 {
      font-size: 2.5rem;
      color: #333333;
      margin-bottom: 0.5rem;
      text-shadow: none;
    }

    h2 {
      font-size: 1.8rem;
      color: #333333;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #eee;
    }

    .hours-list {
      list-style: none;
    }

    .hours-list li {
      padding: 0.5rem 0;
      border-bottom: 1px solid #f0f2f5;
    }

    .day {
      font-weight: bold;
      display: inline-block;
      width: 100px;
    }

    .posts-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }

    .post {
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.2s;
    }

    .post:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .post-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: center;
    }

    .post-images-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .post-image-thumbnail {
      width: 100%;
      height: 80px;
      object-fit: cover;
      object-position: center;
      border-radius: 4px;
    }

    .post-content {
      padding: 1rem;
    }

    .post-date {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 0.5rem;
    }

    .post-message {
      margin-bottom: 1rem;
    }

    .post-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .post-link {
      display: inline-block;
      color: #333333;
      text-decoration: none;
      font-weight: 500;
    }

    .post-link:hover {
      text-decoration: underline;
    }

    .post-as-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .post-link-indicator {
      display: inline-block;
      margin-top: 1rem;
      font-weight: 500;
      color: #4267B2;
    }

    .post-link-indicator i {
      margin-right: 0.5rem;
    }

    .photos-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }

    .photo {
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.2s;
      cursor: pointer;
    }

    .photo:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .photo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .photo-album-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 0.5rem;
      text-align: center;
      font-size: 0.9rem;
    }

    .read-more-btn {
        color: #4267B2;
        cursor: pointer;
        font-weight: 500;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        z-index: 1010;
        visibility: hidden;
        backdrop-filter: blur(0);
        transition: background-color 0.3s, backdrop-filter 0.3s, visibility 0s 0.3s;
    }

    .overlay.active {
        background-color: rgba(0, 0, 0, 0.5);
        visibility: visible;
        backdrop-filter: blur(5px);
        transition: background-color 0.3s, backdrop-filter 0.3s;
    }

    .overlay-content-wrapper {
        position: absolute;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 60%; /* Desktop width */
        height: 100%;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.5s ease-in-out;
        overflow-y: auto;
    }

    .overlay.active .overlay-content-wrapper {
        right: 0; /* Slide in */
    }

    .overlay-container {
        position: relative;
        width: 100%;
    }

    .overlay-content {
        padding: 0;
    }

    .close-overlay {
        position: fixed;
        top: 20px;
        left: -100px; /* Start off-screen */
        font-size: 1.2rem;
        color: #fff;
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1020;
        transition: left 0.5s ease-in-out;
    }

    .overlay.active .close-overlay {
        left: 20px; /* Slide in */
    }

    .overlay-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .overlay-text-content {
        padding: 2rem;
    }

    .overlay-text p,
    .overlay-text h4 {
        margin-bottom: 1.5rem;
    }

    .overlay-link {
        display: inline-block;
        color: #4267B2;
        text-decoration: none;
        font-weight: 600;
    }

    .overlay-link:hover {
        text-decoration: underline;
    }

    footer {
      text-align: center;
      padding: 2rem;
      margin-top: 3rem;
    }

    footer a {
      color: #333333;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .posts-container,
      .photos-container {
        grid-template-columns: 1fr;
      }

      .header-content {
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
      }

      .profile-picture {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 1rem;
      }

      .header-text {
        margin-left: 0;
      }

      .overlay-content-wrapper {
        width: 100%;
        right: -100%;
      }

      .overlay-container {
        padding: 0;
      }

      .overlay-text-content {
        padding: 1rem;
      }
    }
  