* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #3a3a3a;
    color: #4a4a4a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('paper.jpg');
    background-size: cover; /* or specify size if you want, e.g., 50px 50px */
    background-repeat: no-repeat; /* optional, prevents tiling */
    z-index: -1;
    pointer-events: none;
}


.tape {
    position: absolute;
    width: 150px;
    height: 40px;
    background-color: rgba(200, 200, 180, 0.6);
    pointer-events: none;
}

.tape-top {
    top: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 1;
}

.tape-bottom {
    bottom: 100px;
    right: 10%;
    transform: rotate(8deg);
    z-index: 1;
}

.container {
    display: flex;
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.sidebar {
    background-color: #a89ba8;
    padding: 40px 30px;
    min-width: 200px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar h1 {
    font-size: 22px;
    font-weight: normal;
    color: #5a4a5a;
    margin-bottom: 30px;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

nav a {
    color: #6a5a6a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

nav a:hover {
    color: #4a3a4a;
}

.sidebar hr {
    border: none;
    border-top: 1px solid #8a7a8a;
    margin: 20px 0;
}

.secondary-nav {
    margin-top: 20px;
}

.content-card {
    background-color: #f5f0e8;
    padding: 50px 60px;
    max-width: 1000px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.content-card header h1 {
    font-size: 32px;
    color: #5a4a5a;
    margin-bottom: 15px;
    font-weight: normal;
}

.content-card header p {
    color: #7a6a6a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-card header h2 {
    font-size: 24px;
    color: #6a5a6a;
    margin-bottom: 30px;
    font-weight: normal;
    font-style: italic;
}

.text-box h2 {
    font-size: 24px;
    color: #5a4a5a;
    margin: 30px 0 20px 0;
    font-weight: normal;
}

.text-box h2:first-child {
    margin-top: 0;
}

.text-box h3 {
    font-size: 20px;
    color: #6a5a6a;
    margin: 25px 0 15px 0;
    font-weight: normal;
    border-bottom: 2px solid #a89ba8;
    padding-bottom: 5px;
}

.text-box p {
    color: #6a5a5a;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 15px;
}

.text-box a {
    color: #7a6a7a;
    text-decoration: none;
    border-bottom: 1px solid #a89ba8;
    transition: color 0.2s, border-color 0.2s;
}

.text-box a:hover {
    color: #5a4a5a;
    border-bottom-color: #5a4a5a;
}

.footer {
    background-color: #a89ba8;
    padding: 20px 30px;
    margin-top: auto;
    width: 100%;
    color: #5a4a5a;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.copyright {
    color: #5a4a5a;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons a {
    color: #5a4a5a;
    background-color: #f5f0e8;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.social-icons a:hover {
    background-color: #e5e0d8;
    transform: translateY(-1px);
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.15);
}

.header-section {
    position: relative;
    margin-bottom: 30px;
}

.site-title {
    position: absolute;
    top: -10px;
    right: 0;
    background-color: #a89ba8;
    padding: 15px 40px;
    font-size: 28px;
    font-weight: normal;
    color: #5a4a5a;
    transform: rotate(2deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.bird-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.welcome-text {
    margin: 30px 0;
    color: #7a6a6a;
    line-height: 1.6;
}

.welcome-text p {
    margin-bottom: 8px;
}

.divider {
    border: none;
    border-top: 2px solid #4a4a4a;
    margin: 30px 0;
}

.notes-section h3 {
    font-style: italic;
    font-weight: normal;
    color: #7a6a6a;
    margin-bottom: 15px;
    font-size: 18px;
}

.notes-section ul {
    list-style-position: inside;
    color: #6a5a5a;
}

.notes-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    body {
        padding: 20px 10px;
    }

    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

    .content-card {
        padding: 30px 25px;
        max-height: none;
    }
    
    .tape {
        display: none;
    }
}

/* Add these to your existing style3.css */

.project-section {
    margin: 30px 0;
}

.project-section h2 {
    font-size: 28px;
    color: #5a4a5a;
    margin-bottom: 20px;
    font-weight: normal;
}

.project-section p {
    color: #6a5a5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.button-container {
    margin: 30px 0;
    text-align: center;
}

.special-button {
    background-color: #a89ba8;
    color: #5a4a5a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.special-button:hover {
    background-color: #988a98;
    transform: translateY(-2px);
    box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.3);
}

.special-button:active {
    transform: translateY(0);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Georgia, 'Times New Roman', serif;
      background-color: #3a3a3a;
      color: #4a4a4a;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      position: relative;
    }

    .grid-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: 0;
    }

    .tape {
      position: absolute;
      width: 150px;
      height: 40px;
      background-color: rgba(200, 200, 180, 0.6);
      z-index: 10;
    }

    .tape-top {
      top: 60px;
      left: 50%;
      transform: translateX(-50%) rotate(-5deg);
    }

    .tape-bottom {
      bottom: 100px;
      right: 10%;
      transform: rotate(8deg);
    }

    .container {
      display: flex;
      max-width: 1200px;
      position: relative;
      z-index: 5;
    }

    .sidebar {
      background-color: #a89ba8;
      padding: 40px 30px;
      min-width: 200px;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .sidebar h1 {
      font-size: 22px;
      font-weight: normal;
      color: #5a4a5a;
      margin-bottom: 30px;
    }

    nav {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    nav a {
      color: #6a5a6a;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.2s;
    }

    nav a:hover {
      color: #4a3a4a;
    }

    .content-card {
      background-color: #f5f0e8;
      padding: 50px 60px;
      max-width: 800px;
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
      max-height: 80vh;
      overflow-y: auto;
    }

    .content-card header h1 {
      font-size: 32px;
      color: #5a4a5a;
      margin-bottom: 15px;
      font-weight: normal;
    }

    .content-card header p {
      color: #7a6a6a;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .content-card header h2 {
      font-size: 24px;
      color: #6a5a6a;
      margin-bottom: 30px;
      font-weight: normal;
      font-style: italic;
    }

    .text-box h2 {
      font-size: 24px;
      color: #5a4a5a;
      margin: 30px 0 20px 0;
      font-weight: normal;
    }

    .text-box h2:first-child {
      margin-top: 0;
    }

    .text-box h3 {
      font-size: 20px;
      color: #6a5a6a;
      margin: 25px 0 15px 0;
      font-weight: normal;
      border-bottom: 2px solid #a89ba8;
      padding-bottom: 5px;
    }

    .text-box p {
      color: #6a5a5a;
      line-height: 1.6;
      margin-bottom: 12px;
      padding-left: 15px;
    }

    .text-box a {
      color: #7a6a7a;
      text-decoration: none;
      border-bottom: 1px solid #a89ba8;
      transition: color 0.2s, border-color 0.2s;
    }

    .text-box a:hover {
      color: #5a4a5a;
      border-bottom-color: #5a4a5a;
    }

    .footer {
      background-color: #a89ba8;
      padding: 20px 30px;
      margin-top: auto;
      width: 100%;
      color: #5a4a5a;
      font-size: 14px;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      align-items: center;
    }

    .social-icons a {
      color: #6a5a6a;
      text-decoration: none;
      transition: color 0.2s;
    }

    .social-icons a:hover {
      color: #4a3a4a;
    }

    @media (max-width: 900px) {
      body {
        padding: 20px 10px;
      }

      .container {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
        margin-bottom: 20px;
      }

      .content-card {
        padding: 30px 25px;
        max-height: none;
      }

      .tape {
        display: none;
      }
    }
    
    
    .kitten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.kitten-card {
    text-align: center;
}

.kitten-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.kitten-card p {
    margin-top: 0.5em;
    font-weight: bold;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    margin: 2em 0;
    justify-content: center;
}

.filter-btn {
    padding: 0.5em 1em;
    border: 2px solid #333;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #333;
    color: #fff;
}

.filter-btn.active {
    background: #333;
    color: #fff;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5em;
    margin: 2em 0;
}

.org-card {
    border: 2px solid #333;
    padding: 1.5em;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.org-card h4 {
    margin-top: 0;
    margin-bottom: 1em;
}

.org-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.org-links a {
    padding: 0.3em 0.6em;
    border: 1px solid #666;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.org-links a:hover {
    background: #333;
    color: #fff;
}
