@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", Montserrat, sans-serif;
    color: #1d1d1f; /* Apple's typical dark gray text color */
    background-color: #ffffff;
    margin: 0;
    padding: 0;
  }

  /* Navigation Bar */
  .navbar {
    background-color: #000; /* Minimal black navbar */
  }
  .navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease-in-out;
  }
  .navbar-brand img {
    height: 24px;
    margin-right: 8px;
  }
  .navbar-nav .nav-link {
    color: #fff !important;
    padding: 0.5rem 0.8rem;
    transition: color 0.2s ease-in-out;
  }
  .navbar-nav .nav-link:hover {
    color: #999 !important;
  }

  /* Hero/Banner Section */
  .banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Main Content */
  main {
    padding: 60px 15px; /* Increase white space around content */
  }
  h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  p {
    line-height: 1.6;
  }
  .section-heading {
    margin: 40px 0 20px 0;
  }

  /* Rounded images, subtle shadow */
  .rounded {
    border-radius: 12px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.06);
  }
  
  /* Skills list in a simple grid rather than a "list-group" */
  .skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0;
    list-style: none;
  }
  .skills-container li {
    background-color: #f9f9f9;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }
  .skills-container li:hover {
    background-color: #e9e9e9;
  }

  .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.card img {
  height: 200px;
  object-fit: cover;  
}

.card-body {
  background-color: #f4f4f4;
}

  /* Projects - consistent sizing & minimal approach */
  .project img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 10px;
  }
  .project h3 {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  /* Footer */
  footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
  }
  footer p {
    margin: 0;
  }
