/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      color: #61666D;
      font-family: 'Roboto', sans-serif;
      font-size: 16px;
      line-height: 1.4;
    }
    
    body {
      margin: 0;
      background-color: #FFFFFF;
    }

/* ==========================================================================
   Color Utility Classes
   ========================================================================== */

.gray-bg { background: #61666D; }
.offwhite-bg { background: #F4F4F4; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;  /* ===========*/
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;  /* ===========*/
}

.sr-only-focusable:focus {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 20px;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #226AB8;
  color: white;
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 0;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.collapsible:focus-visible,
.grid-item:focus-visible {
  outline: 3px solid #478DCD;
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus-visible {
  background-color: #eaf8ff;
  outline: 2px solid #478DCD;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}
/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================================
   Home Page Hero Section
   ========================================================================== */

  .hero-section {
      padding: 3rem 1rem;
      text-align: center;
      background-color: #F4F4F4;
    }
    
    .hero-section h1 {
      max-width: 700px;
      margin: 0 auto 1rem;
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      color: #61666D;
    }
    
    .hero-section p {
      max-width: 500px;
      margin: 0 auto;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.6;
      color: #61666D;
    }

 /* Projects Section */
    .projects-section {
      padding: 1rem 1rem 7rem;
      background-color: #F4F4F4;
    }
    
    .project-list {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    .project-item {
      background: #FFFFFF;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .project-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

	.project-item a {
	  text-decoration: none;
	}
    
    .project-item h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #61666D;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    
    .project-item p {
      font-size: 1rem;
      line-height: 1.5;
      color: #61666D;
      margin-bottom: 1.5rem;
    }
    
    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #61666D;
      font-weight: 500;
      text-decoration: none;
      font-size: .9rem;
    }
    
    .read-more span {
      transition: text-decoration 0.2s;
    }
    
    .read-more:hover span {
      text-decoration: underline;
    }
    
    .read-more i {
      font-size: 0.875rem;
    }

@media (max-width: 768px) {
  .hero-section h1 {
    max-width: 400px;
    margin: 0 auto;
    padding: 15px 15px 5px;
    font-size: 40px;
    font-weight: 800;
    line-height: 45px;
    text-align: center;
  }
}

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 36px;
      }
      
      .hero-section p {
        font-size: 16px;
      }
      
      .project-item {
        padding: 1.5rem;
      }
      
      .project-item h3 {
        font-size: 1.25rem;
      }
      
      .projects-section {
        padding: 2rem 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero-section {
        padding: 2rem 1rem;
      }
      
      .hero-section h1 {
        font-size: 32px;
      }
      
      .project-item {
        padding: 1.25rem;
      }
      
      .project-item h3 {
        font-size: 1.125rem;
      }
      
      .project-item p {
        font-size: 0.9375rem;
      }
    }
