html,body {
  font-family: 'Courier New', Courier, monospace;
  background: black;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
  padding-top: 60px;
  padding-bottom: auto;
  overflow: auto; /* or scroll */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.right-side {
  overflow: auto; /* or scroll */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

nav {
  background: #1f1f1f;
  padding: 20px 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* or any high number */
}

nav ul {
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  gap: 0; /* We'll control spacing via padding + separators */
}

nav ul li {
  position: relative;
  padding: 0 1em;
}

nav ul li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 0.9em;
}

nav ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00ffff;
  text-decoration: underline;
}

nav ul li a.active {
  font-weight: bold;
  color: #ffd700;
}

h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.about-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  flex-wrap: nowrap; /* Force side-by-side */
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px 8px black inset;
  opacity: 90%;
}

.producing-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 40px;
  flex-wrap: nowrap; /* Force side-by-side */
}

.producing-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px 8px black inset;
  opacity: 90%;
}

.bio {
  font-family: 'Courier New', Courier, monospace;
  width: 100%;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  max-width: 600px;
  background-color: black;
  margin-top: 0;
  margin-bottom: auto;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 8px 8px black inset;
  border-radius: 10px;
  line-height: 1.6;
}

.bio h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.8em;
  margin-bottom: 0.5em;
}

.education-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "wide narrow";
  gap: 1rem;
  padding: 20px;
  margin: auto;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 500px) {
  .education-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "wide"
      "narrow";
  }
}

.education-content { grid-area: wide; }


/* LEFT COLUMN */
.software {
  grid-area: narrow; 
  margin-left: auto;
  margin-right: auto;
}

.software h3 {
  margin-bottom: 0.5rem;
}

.software-list {
  list-style-type: disc;
  padding-left: 20px; 
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  font-family: 'Courier New', Courier, monospace;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.8em;
}

/* RIGHT COLUMN */
.education-content h2 {
  margin-top: 0;
}

.education-content p {
  font-family: 'Courier New', Courier, monospace;
  background-color: black;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  color: white;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 8px 8px black inset;
  border-radius: 10px;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  margin-right: 10px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); /* Force exactly 2 columns */
  gap: 2em;
  padding: 2em;
  justify-items: center;
  position: relative;
}
.project {
  position: relative;
  width: 100%;
  max-width: 80%;
}

.project-title {
  font-size: 1.5em;
  color: #fff;
  text-align: center;
}

.project-image {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s ease;
}

.project-image:hover {
  transform: scale(1.02);
}

/* Make the details box float over the image (accordion style) */
.project-details {
  position: absolute;
  top: 100%; /* show below the image */
  left: 0;
  font-size: clamp(0.9rem, 1.05vw, 1.1rem);
  width: 100%;
  background: black;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  z-index: 1;
}

.project-details.visible {
  opacity: 1;
  max-height: 600px;
}

.media-links {
  display: inline-flex;
  align-items: center;  /* vertically center all children */
  gap: 0.8em;
  margin-top: 0.5em;
}

.media-links audio {
  vertical-align: middle;
  height: 32px; /* adjust as needed */
}

.social-icons a {
  display: inline-flex;  /* use inline-flex, not block/flex */
  align-items: center;
  vertical-align: middle;
  font-size: 1.5em;
  color: #E1306C;
  transition: color 0.3s ease, transform 0.2s ease;
  padding-bottom: 45px;
}

.social-icons a:hover {
  color: #ff4da6;
  transform: scale(1.1);
}

.hero h1 {
  font-family: 'Courier New', Courier, monospace;
  display: block;
  letter-spacing: 0.5px;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: xx-large;
  padding-top: 20px;
  max-width: 300px;  /* Scale down to desired size */
  width: 100%;       /* Makes it responsive */
  height: auto;      /* Maintain aspect ratio */
}

.hero img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  max-width: 600px;  /* Scale down to desired size */
  width: 100%;       /* Makes it responsive */
  height: auto;      /* Maintain aspect ratio */
  box-shadow: 0 0 8px 8px black inset;
  opacity: 80%;
}

.hero p {
  font-family: 'Courier New', Courier, monospace;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  max-width: 400px;  /* Scale down to desired size */
  width: 100%;       /* Makes it responsive */
  height: auto;      /* Maintain aspect ratio */
  padding: 20px;
}
.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 videos per row */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.videos h1 {
  grid-column: 1 / -1; /* Make main heading span both columns */
  font-family: 'Courier New', Courier, monospace;
  font-size: 2rem;
  margin-bottom: 20px;
}

.videos article {
  background: #000000;
  padding: 10px;
  border-radius: 8px;
}

.videos article h1 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.videos iframe {
  width: 100%;
  height: 315px;
  border: none;
}

.project-details.visible {
  display: block;
}


.releases-container {
  max-width: 700px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  margin-bottom: 0em;
  font-size: 2.5em;
  font-family: 'Georgia', serif;
  color: #fff;
}


.releases-list {
  max-height: 1100px;
  overflow-y: auto;
  padding-right: 10px; /* keep space for scrollbar */
  
  /* Hide scrollbar for WebKit browsers */
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.releases-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.release-item {
  display: flex;
  background: #111;
  border-radius: 10px;
  padding: 1em;
  margin-bottom: 1.5em;
  box-shadow: 0 0 10px #444;
  transition: background-color 0.3s ease;
  align-items: center;
}

.release-item:hover {
  background-color: #222;
}

.release-artwork {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  margin-right: 1.5em;
  box-shadow: 0 0 8px #222;
}

.release-info {
  flex: 1;
}

.release-title {
  font-size: 1.8em;
  margin: 0 0 0.3em 0;
  font-family: 'Georgia', serif;
  color: #fff;
}

.artist-name,
.release-type,
.release-date,
.roles {
  margin: 0.2em 0;
  font-size: 1em;
}

.role-tag {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 2px 8px;
  margin-left: 0.5em;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: bold;
  font-family: 'Courier New', monospace;
}

.producecontainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* left 2/3, right 1/3 */
  gap: 0;
  height: 100vh;
}
.mixcontainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* left 2/3, right 1/3 */
  gap: 0;
  height: 100vh;
}

.left-side {
  display: flex;
  flex-direction: column;
  padding: 10px;
  height: 100vh;
}

.producing-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px; /* space between image and text */
}

.producing-image {
  flex: 1; /* 1/3 vertical space approx */
  display: flex;
  justify-content: center;
  align-items: center;
}

.producing-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 8px #000;
}

.producing-text {
  flex: 2;
  background-color: black;
  color: white;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  font-family: 'Courier New', Courier, monospace;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 0 8px black;
  line-height: 1.6;
  text-align: center;
  overflow-y: auto;
  white-space: normal;
}

.right-side {
  height: 100vh;
  padding: 20px;
  margin-right: 50px;
  overflow-y: auto;
  background: black;
  color: white;
}

.right-side h1 {
  font-size: xx-large;
  padding-top: 40px;
  padding-bottom: 20px;
}

.left-side h1 {
  font-size: xx-large;
  padding-top: 40px;
  padding-bottom: 20px;
}

.release-item {
  display: flex;
  background: #111;
  border-radius: 10px;
  padding: 1em;
  margin-bottom: 1.5em;
  box-shadow: 0 0 10px #444;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.release-item:hover {
  background-color: #222;
  transform: scale(1.02);
}

.release-item.playing {
  background-color: #fff;
  color: #000;
}

.release-item.playing .role-tag {
  background-color: #000;
  color: #fff;
}

.release-artwork {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  margin-right: 1.5em;
  box-shadow: 0 0 8px #222;
}

.release-item.playing .release-title {
  color: #000;
}

.contact {
  font-family: 'Courier New', Courier, monospace;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
  color: #fff;
  background-color: #000;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact p {
  margin-bottom: 20px;
  text-align: center;
}

.contact a {
  color: #fff;
  text-decoration: underline;
}

.education-content a {
  color: #fff;
  text-decoration: underline;
}



.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-size: 1rem;
  color: #ccc;
}

input, textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #111;
  color: #fff;
  resize: vertical;
}

input:focus, textarea:focus {
  border-color: #fff;
  outline: none;
}

button {
  padding: 12px;
  font-size: 1rem;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ddd;
}

.social-icons {
  margin-top: 40px;
  text-align: center;
}

.social-icons a {
  color: #fff;
  font-size: 2rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ccc;
}

.producetitle {
  padding-top: 5px;
  padding-bottom: 0px;
}

