.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}

html {
    height: 100%;
}

main {
    flex: 1;
}

.header {
    background-image: url('images/ChatGPT\ Image\ Jun\ 3\,\ 2026\,\ 02_43_27\ PM.png');
    height: 420px;
    margin: 0;
    overflow: hidden;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;

    display: flex;
    
}

.header-content {
    background: rgba(255, 255, 255, 0.882);
    padding: 25px 40px;
    border-radius: 18px;
    align-items: center;
    align-self: center;
}

.header-content h2 {
    margin: 0 0 10px;
    font-size: 2.5rem;
}

.header-content p {
    margin: 0;
    font-size: 1.1rem;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #6b9573;
    margin: 0;
}

body h1 {
    font-family: "Press Start 2P";
}

body h2 {
    font-family: "Press Start 2P";
}

body h3 {
    font-family: "Press Start 2P";
}

.navbar {
  display: flex;
  position: fixed;
  z-index: 1000;
  width: 100%;
  justify-content: center;
  gap: 0px;
  padding: 0px;
  background: #012f19;
}

.navbar a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 16px;
  padding-left: 35px;
  padding-right: 35px;
}

.navbar a:hover {
  color: #000000;
  background-color: #6b9573;
}

.navbar a.active {
  color: #000000;
  font-weight: bold;
  background-color: #6b9573;
}

footer {
    background-color: #307570;
    position: relative;
    margin-top: 100px;

    padding-top: 80px;

}

footer::before {
    content: "";

    position: absolute;
    top: -50px;
    left: 0;

    width: 100%;
    height: 100px;

    background-image: url("images/Untitled design.png");
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 335px;
}

.footer-content {
    padding: 40px;
}

.home-page{
    max-width: 100%;
    margin: 0 auto;
    padding: 0 auto;
}

.bio-section{
    padding: 30px;
}

.bio-section p {
    padding-left: 95px;
    padding-right: 95px;
    padding-bottom: 25px;
    padding-top: 25px;
    line-height: 1.4;
    font-size: large;
    margin-left: 85px;
    margin-right: 85px;
    font-family: "Press Start 2P";
}

.recent-projects{
    padding: 25px;
    background-color: #012f19;
    background-size: cover;
    align-content: center;
    background-attachment: fixed;
}

.recent-projects h2{
    padding: 20px;
    color: white;
}

.projects-grid{
    padding: 20px;
}

.news-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.news-card {
  background: white;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 14px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.news-card:hover {
    transition: transform 0.2s ease-in-out;
    transform: scale(1.05);
}

.news-date {
  font-size: 0.9rem;
  color: #777;
}

.news-card h4 {
  margin-top: 5px;
}

.projects-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  margin-bottom: 5px;
}

.about-page{
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-page h2{
    padding: 35px;
}

.about-person{
    background: white;
    padding: 0;
    margin-bottom: 15px;
    border-radius: 14px;
}

.about-person p{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 75px;
    padding-right: 75px;
    font-size: large;
}

.about-person h3{
    padding-top: 15px;
    padding-bottom: 0;
}

.about-person img{
    width: 100%;
    margin: 0;
    padding: 0;
}

.page-intro {
  margin-bottom: 35px;
}

.page-intro p{
    text-align: center;
}
.projects-page{
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.project-card:hover {
    transition: transform 0.2s ease-in-out;
    transform: scale(1.05);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-content {
  padding: 22px;
}

.project-status {
  font-size: 0.85rem;
  font-weight: bold;
  color: #7a6a9f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-date {
  font-size: 0.9rem;
  color: #777;
}

.project-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 18px;
}

.project-tags span {
    font-size: 0.8rem;
    background: #f0edf7;
    color: #6d5c8d;
    padding: 5px 10px;
    border-radius: 999px;
}

.project-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #222;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.project-button:hover {
    background: #616060;
}

.project-info {
    max-width: 1100px;
    margin: 40px auto;
    margin-top: 100px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.project-socials {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.project-news{
    padding: 25px;
    background-color: #012f19;
    background-size: cover;
    align-content: center;
    background-attachment: fixed;
}

.project-news h2{
    color: white;
}

.news-page{
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.news-grid {
    display: grid;
    gap: 25px;
    margin: 40px auto;
    padding: 30px;
}

.article {
    max-width: 800px;
    margin: 60px auto;
    padding: 50px;
    background: white;
    border-radius: 16px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
    text-align: left;
}


.article h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.article-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 35px;
    font-style: italic;
}

.article p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.all-news-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #222;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.all-news-button:hover {
    background: #616060;
}

.articles-section{
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.article-card:hover {
    transition: transform 0.2s ease-in-out;
    transform: scale(1.05);
}

.article-content {
  padding: 22px;
}

.article-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #222;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.article-button:hover {
    background: #616060;
}

.article-preview {
    position: relative;
    max-height: 95px;
    overflow: hidden;
    line-height: 1.6;
    margin-bottom: 18px;
}

.article-preview::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        white
    );
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.article-tags span {
    font-size: 0.8rem;
    background: #f0edf7;
    color: #6d5c8d;
    padding: 5px 9px;
    border-radius: 999px;
}

.support-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.support-page h1{
    padding-top: 30px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.support-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.social-link {
    display: block;
    padding: 12px 0;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.social-link:hover {
    color: #8a6a9f;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #222;
    color: white;
    cursor: pointer;
}

.contact-form button:hover {
    background: #616060;
}

.support-stats {
    margin-top: 50px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 25px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.stat-card h3 {
    font-size: 2rem;
    margin: 0;
}

@media (max-width: 750px) {
    .support-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}