
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    background-color: black;
    color: white;
    font-family: 'MyCustomFont', sans-serif;
    font-size: 23px;
    line-height: 1.3;
    
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  /* LEFT FIXED PANEL */
  .left-panel {
    width: 30%;
    background-color: black;
    display: flex;
    flex-direction: column;
    border-right: 1px solid gray;
    font-family: 'MyCustomFont', serif;
  }
  
  .left-header {
    display: flex;
    justify-content: space-between; /* pushes them apart */
    align-items: center;
    padding: 22px;
    font-size: 20px;
    border-bottom: 1px solid gray;
    gap: 10px; /* optional spacing */
    flex-wrap: wrap; /* allows them to stack on small screens instead of overlap */
    font-family: 'MyCustomFont', serif;
  }
   .left-header a{
    text-decoration: none;
    color: #fff;
    font-family: 'MyCustomFont', serif;
  }
  .mobile-navbar a{
    text-decoration: none;
    color: #fff;
    font-family: 'MyCustomFont', serif;
  }

  .left-body {
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'MyCustomFont', serif;
  }
  
  /* RIGHT SCROLLABLE PANEL */
  .right-panel {
    width: 70%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'MyCustomFont', serif;
  }
  
  .right-body {
    overflow-y: auto;
    flex-grow: 1;
    padding: 20px;
    overflow-x: hidden;
    font-family: 'MyCustomFont', serif;
  }
  
  /* Sticky Header */
  .right-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    border-bottom: 1px solid gray;
    background-color: rgba(0, 0, 0, 1); /* solid black initially */
    position: sticky;
    top: 0;
    z-index: 10;
    transition: background-color 0.3s ease;
    font-family: 'MyCustomFont', serif;
  }
  
  .right-header.scrolled {
    background-color: rgba(0, 0, 0, 0); /* no color while scrolling */
    border-bottom: none;           /* optional: remove border too */
  }
  
  /* Mobile Nav (only visible on small screens) */
.mobile-nav {
  display: none;
}

/* Hide mobile nav by default */
.mobile-nav {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .left-panel {
    display: none; /* hide left side on mobile */
  }

  .right-panel {
    width: 100%;
  }

  .mobile-nav {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    font-size: 18px;
    background-color: black;
    border-bottom: 1px solid gray;
    position: sticky;
    top: 0;
    z-index: 20;
  }

  .right-header {
    display: none; /* hide original header in mobile */
  }
}
/* Default: hide on desktop */
.mobile-navbar {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    background-color: black;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid gray;
  }

  .left-panel {
    display: none;
  }

  .right-panel {
    width: 100%;
  }

  .right-header {
    display: none;
  }
}



.note-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.note-item p {
  flex: 1;
  margin: 0;
}

.note-meta {
  min-width: 150px;
  font-weight: bold;
  color: #ccc;
  text-align: right;
}
.two-image{
  display: flex;
  gap: 10px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.overview {
  display: flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  font-size: 18px;
  font-weight: 500;
}
.team-notes {
  display: flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  font-size: 18px;
  font-weight: 500;
}

.overview {
  display: flex;
  align-items: center;
}

.overview a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 8px;
  padding: 8px;
  cursor: pointer;
}

.overview svg {
  display: block;
}
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px;
}

.image-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.image-item img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.name {
  margin-top: 8px;
  font-size: 14px;
  color: #ccc;
  text-align: center;
  font-family: monospace;
}
.team-notes{
  cursor: pointer;
}