* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
  }
  
  /* Fullscreen Logo Section */
  #landing {
    height: 100vh;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8); /* starts slightly smaller */
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease, opacity 2s ease;
  }
  
  .logo.show {
    transform: translate(-50%, -50%) scale(1); /* scales to full size */
    opacity: 1;
  }
  
  /* #landing button {
    margin-top: 20px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    cursor: pointer;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
  } */

  #about {
    height: 100vh;
    width: 100%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-left {
    flex: 1;
    text-align: center;
  }
  
  .about-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .about-right {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    padding: 0 10px;
  }
  
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-left,
    .about-right {
      width: 100%;
      padding: 0;
    }
  
    .about-left h2 {
      font-size: 2rem;
    }
  
    .about-right {
      padding-top: 20px;
    }
  }
  
  /* Project Section */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .project {
    cursor: pointer;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  /* Centered and animated project titles */
  .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  /* H3 animated fade-up with blur background */
  .image-container h3 {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 20px); /* Start slightly below */
    color: white;
    z-index: 2;
    opacity: 0;
    font-size: 1.5rem;
    text-align: center;
    pointer-events: none;
    transition: 
      transform 0.5s ease 0.15s,
      opacity 0.5s ease 0.15s;
  }
  
  /* On hover: show overlay and animate title */
  .image-container:hover .overlay {
    opacity: 1;
  }
  
  .image-container:hover img {
    transform: scale(1.05);
  }
  
  .image-container:hover h3 {
    opacity: 1;
    transform: translate(-50%, 0); /* slide into place */
  }
  
  /* Footer */
  footer {
    background-color: #111;
    color: white;
    padding: 60px;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 20px;
  }

    footer a {
    color: white;
    text-decoration: none; /* remove underline */
    margin: 0 15px;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #cccccc; /* or any lighter shade you prefer */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .logo {
      object-position: center;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      scale: 1.05;
    }
  }
  
    /* #landing button {
      font-size: 14px;
    } */