    * {
      box-sizing: border-box;
    }

    body, html {
      margin: 0;
      padding: 0;
      font-family: "Inter", sans-serif;
      background-color: #0d0d0d;
      color: #f0f0f0;
      scroll-behavior: smooth;
    }

       /* NAVIGATION */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: center;
      padding: 1rem 0;
      z-index: 1000;
    }

  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
    }

    nav a:hover {
      color: #ccc;
    }

    /* HERO SECTION */
    header {
      height: 100vh;
      background: url("https://john-cohen.com/images/JC_NRW_Studios1.jpg") center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      color: #fff;
    }

    header::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    header h1 {
      font-size: clamp(2.5rem, 6vw, 5rem);
      margin: 0;
      position: relative;
      z-index: 1;
      letter-spacing: 2px;
    }

    header p {
      position: relative;
      z-index: 1;
      margin-top: 1rem;
      font-weight: 300;
      letter-spacing: 1px;
      opacity: 0.9;
    }

    /* ABOUT SECTION */
    section {
      padding: 5rem 1rem;
      max-width: 900px;
      margin: auto;
    }

    section h2 {
      text-align: center;
      margin-bottom: 2rem;
      letter-spacing: 2px;
      font-weight: 600;
    }

    #about {
  max-width: 700px;
  margin: auto;
  padding: 5rem 1rem;
  text-align: justify; /* makes longer text look more structured */
  line-height: 1.8;
  color: #ccc;
}

#about h2 {
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #fff;
}

#about p {
  margin-bottom: 1.2rem;
  text-align: justify;
  text-justify: inter-word; /* improves justification spacing */
}

#about strong, 
#about b {
  color: #fff;
  font-weight: 600;
}

#about a {
  color: #9fd4ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

#about a:hover {
  border-color: #9fd4ff;
}

#about-img {
  display: block;
  margin: 3rem auto;
  width: 220px;
  border-radius: 50%;
  border: 3px solid #333;
  opacity: 0.95;
}

@media (max-width: 768px) {
  #about {
    text-align: left;
    padding: 3rem 1rem;
  }
}


    /* FOOTER */
    footer {
      background: #111;
      text-align: center;
      padding: 2rem 1rem;
      color: #777;
      font-size: 0.9rem;
    }

    /* SMALL SCREEN NAV FIX */
    @media (max-width: 600px) {
      nav {
    flex-wrap: nowrap; /* Forces links onto one line */
    justify-content: space-between; /* Use all available space */
    padding: 1rem 0.1rem; /* Ensure padding doesn't restrict space */
    width: 100%; /* Ensure nav container is full width */
  }

  nav a {

    margin: 0; 
    padding: 0 0.2rem;
    white-space: nowrap;
  }
    }