/* ----------------- NAV BAR ----------------- */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');

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

.body {
  background-color: #F0F4F0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 52px;
}

.website-name {
  font-weight: bold;
  color: black;
  font-size: 1rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Albert Sans', sans-serif;
  background-color: #c0d7bbff;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-ul a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-ul a:hover {
  background-color: rgb(100, 141, 124);
  color: white;
}

/* ----------------- FOOTER ----------------- */
.footer {
  background-color: black;
  color: #FFFFFF;
  padding: 2rem 1rem;
  font-family: 'Albert Sans', sans-serif;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #c0d7bbff;
}

.footer-right a {
  color: #c0d7bbff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* ----------------- MY WORK PAGE ----------------- */
/* Add class="work-page" to <body> on your My Work page */

.work-page {
    background-color: #F0F4F0;
    font-family: 'Albert Sans', sans-serif;
    padding-top: 100px; /* extra space so cards don't overlap fixed nav */
  }
  
  /* container for the grid */
  .work-page .projects-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
  }
  
  /* header section for My Work */
  .work-page .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 1rem;
  }
  
  .work-page .projects-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #222;
  }
  
  .work-page .projects-header p {
    margin: 0;
    color: #444;
    font-size: 1rem;
  }
  
  .work-page .projects-header .small-muted {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
  }
  
  /* grid layout */
  .work-page .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  /* card styling */
  .work-page .project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 20px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  }
  
  .work-page .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    background-color: #e7efe7;
  }
  
  .work-page .project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .work-page .project-tag {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
  }
  
  .work-page .project-desc {
    font-size: 0.95rem;
    color: #444;
  }
  
  .work-page .card-thumb {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
  }
 /* Ensure page takes full height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  /* Main content grows to fill space */
  main {
    flex: 1;
  }
  
  /* Footer stays at the bottom */
  footer {
    margin-top: auto;
  }
   