html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: Arial, sans-serif;
  background: url('images/jungle background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

header {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  font-family: "Ga Maamli", sans-serif;
}

header h1 a {
  color: #20c24a;
  text-decoration: none;
}

section {
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
}

section h2 {
  margin-top: 0;
  font-size: 2em;
  color: #20c24a;
  font-family: "Source Code Pro", monospace;
}

/* Hero */
#welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#welcome .hero-text h1 {
  font-size: 3em;
  font-family: "Ga Maamli", sans-serif;
  margin: 0 0 20px;
  color: #20c24a;
}

#welcome .hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  margin: 20px 0;
  cursor: pointer;
  object-fit: cover;
}

#welcome .hero-text h2 {
  font-size: 1.5em;
  font-family: "Source Code Pro", monospace;
  margin: 20px 0;
}

.cta-button {
  background-color: #20c24a;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #17a63b;
}




/* Bio */
#bio {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
  color: #fff;
}

.bio-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: nowrap;
}

.bio-image img {
  max-width: 300px;
  max-height: 300px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.bio-text {
  max-width: 600px;
  text-align: left;
}

/* Music Section */
.music-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.music-block {
  flex: 1 1 28%;
  max-width: 320px;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.music-emoji {
  font-size: 2.5em;
  margin-bottom: 10px;
  cursor: default;
}

.hiphop-icon img {
  width: 60px;
  height: 60px;
}

.song-title {
  font-size: 1em;
  font-weight: bold;
  margin: 10px 0 5px;
}

.artist-name {
  font-style: italic;
  font-size: 0.9em;
  margin: 0 0 5px;
}

#contact p a[href^="mailto:"] {
  color: #89CFF0;
  text-decoration: underline;
}

/* Contact CTA buttons */
.contact-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.contact-ctas .cta-button {
  background-color: #20c24a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #000;
  color: #fff;
}

/* Enlarged Image */
.enlarged {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enlarged img {
  max-width: 90%;
  max-height: 90%;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Stacking */
@media (max-width: 480px) {
  .bio-content {
    flex-direction: column;
    text-align: center;
  }

  .bio-text {
    text-align: center;
  }

  .contact-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .contact-ctas .cta-button {
    display: block;
    width: 260px;          /* don’t stretch full width */
    padding: 10px 0;    /* slightly tighter padding */
    font-size: 0.95em;    /* smaller text */
    margin: 0 auto;       /* keep centered */
    text-align: center;
  }
}

/* Music Carousel */
@media (max-width: 768px) {
  .music-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
  }

  .music-grid {
    flex-direction: row;
    width: 100%;
    gap: 0;
  }

  .music-block {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    border-radius: 0;
  }
}
/* Instagram Embed Styling */
.instagram-media {
  margin: 0 auto !important;
  max-width: 600px !important;
}

.instagram-media * {
  font-family: "Source Code Pro", monospace !important;
  text-align: center !important;
  font-size: 1em !important;
  line-height: 1.6 !important;
  color: #fff !important;
}
/* Force Collabs & Listen headings to match h1 styling */
#collabs h1, #listen h1,
#collabs h2, #listen h2 {
  font-size: 2.5rem; /* match your main h1 size */
  font-weight: bold;
  font-family: "Source Code Pro", monospace;
  text-align: center;
  margin: 1rem 0;
}
/* Genre labels - show only on small screens */
.genre-label {
  display: none;
  font-size: 1.25em;
  color: #20c24a;
  font-family: "Source Code Pro", monospace;
  margin: 0.25em 0;
}

@media (max-width: 768px) {
  .genre-label {
    display: block;
  }
}

/* Force consistent styling for Listen & Collabs h1 */
#music h1, #collabs h1 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Ga Maamli", sans-serif;
  text-align: center;
  margin-bottom: 1rem;
    color: #20c24a; /* green accent */

}

/* Improve Instagram embed alignment */
.instagram-media {
  margin: 0 auto !important;
  max-width: 600px !important;
}

/* Instagram embed container */
.instagram-media {
  background-color: transparent !important; /* Remove white background */
  border: none !important;
  box-shadow: none !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  color: #fff !important; /* White text */
  font-family: "Source Code Pro", monospace !important;
  text-align: center !important;
}

/* Attempt to override iframe background */
.instagram-media iframe {
  background-color: transparent !important;
}

/* Instagram captions and text inside embed */
.instagram-media * {
  color: #fff !important;
  background: transparent !important;
}


