/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body, html {
  width: 100%;
  height: 100%;
  font-family: "Changa One", sans-serif;
  font-weight: bold;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}
.header-container {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
.logo h1 {
  color: #e0e0e0;
  font-size: 32px;
  /* Subtle drop shadow for accentuation */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

#bio h2 {
  color: #ffffff;
  text-align: center;
}


/* Navigation */
#nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
#nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
#nav-menu ul li {
  margin: 0 15px;
}
#nav-menu ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 22px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Social Icons */
.social-icons.header-social {
  display: flex;
  gap: 10px;
}
.social-icons.header-social a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}

/* Section styles */
section {
  position: relative;
  min-height: auto;
  padding: 20px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  scroll-margin-top: 100px;
}
.parallax {
  background-attachment: fixed;
}

/* Home Section - Gradient Background */
#home {
  background: linear-gradient(135deg, #5403d1 0%, #2a0166 50%, #1a0044 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Titles in sections */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  color: #fff;
}

/* Home Section Content (desktop) */
.home-content {
  margin: 0 auto;
  max-width: 600px;
  width: 90%;
  padding-top: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: none;
}
.home-content > * {
  margin-bottom: 20px;
}
.home-content > *:last-child {
  margin-bottom: 0;
}

/* EP Release */
.ep-release {
  background: rgb(84, 3, 209);
  color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}
.ep-release a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: block;
}
.ep-release a h2,
.ep-release a p {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.ep-release a:hover {
  transform: scale(1.05);
  background: #5403d1;
  color: #fff;
  border: 1px solid #5403d1;
  border-radius: 5px;
}
.ep-release a:hover h2,
.ep-release a:hover p {
  color: #fff;
}
.ep-release h1,h2,h3,h4 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}


/* Welcome Message */
.welcome-message {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
}

/* Spotify Embed */
.spotify-embed {
  width: 100%;
}
.spotify-embed iframe {
  border: none;
  border-radius: 12px;
}
.spotify-follow {
  margin-top: 15px;
}
.spotify-follow .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #5403d1;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 30px;
  transition: background 0.3s;
}
.spotify-follow .btn:hover {
  background: #5403d1;
}



/* Restyled Newsletter Embed (Substack) */
.newsletter-embed {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: rgb(84, 3, 209);
  padding: 20px;
  border: 2px solid #5403d1;
  border-radius: 10px;
  text-align: center;
}
.newsletter-embed h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}
.newsletter-embed iframe {
  border: none;
  width: 100%;
  height: auto;
}

/* Email Signup */
.email-signup {
  background: rgb(84, 3, 209);
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-align: center;
  width: 100%;
}
.email-signup a {
  color: #fff;
  text-decoration: underline;
}

/* Shared container for Live, Media, Shop, and Contact sections */
#live .content,
#media .content,
#shop .content,
.contact-container {
  position: relative;
  max-width: 800px;
  width: 95%;
  margin: 10px auto;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border: 2px solid #000;
  border-radius: 10px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Bio Section Specifics */
#bio .content {
  max-width: 800px;
  width: 95%;
  margin: 10px auto;
  padding: 20px;
}


.fractals-bio {
  border: 1px solid #5403d1;
  border-radius: 12px;
  padding: 20px;
  background-color: #ffffff; /* Optional: dark background */
  color: #020004;            /* Optional: light text for contrast */
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  max-width: 800px;
  text-shadow: none;
}

.fractals-bio p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.julius, a {
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(209, 208, 208)
}

.contact-h{
  text-align: center;
  color: black;
}

/* Shop Section Specific */
#shop .content p {
  color: #fff;
}

/* Contact Section Specifics */

.contact-container {
  background-color: #5403d1;
}

.contact-section {
  margin: 10px auto;
}
.contact-container h2,
.contact-container p {
  color: #fff;
}
.contact-container a {
  color: #fff;
  text-decoration: underline;
}

/* Shop Image */
.shop-image {
  margin-top: 20px;
}
.shop-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 2px solid #000;
  border-radius: 5px;
}

h2 {
  text-shadow: none;
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.footer-social {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer-social a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

/* Back-to-Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 200;
}
#back-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* YouTube Playlists - Responsive Embed */
.youtube-playlists {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.playlist {
  width: 120%;
  margin: 0 -10%;
  aspect-ratio: 16/9;
  position: relative;
}
.playlist iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
#bio .content {
  font-size: 18px;
  line-height: 1.6;
  font-weight: normal;
  text-shadow: none;
}

/* Press Section (New) */
.press-section .content {
  max-width: 800px;
  width: 95%;
  margin: 10px auto;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border: 2px solid #000;
  border-radius: 10px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.press-section h2,
.press-section p {
  color: #fff;
}


/* Bandsintown Widget Font Override */
.bit-widget * {
  font-family: 'Changa One', sans-serif !important;
  font-size: 1.1rem;
  font-weight: bold !important;
  color: #fff !important;
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);*/
  background: rgb(2, 0, 4);
}
/* ——— YouTube Gallery ——— */
.youtube-gallery {
  padding: 4rem 2rem;
  background-color: #5403d1;
}

.youtube-gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.youtube-gallery {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.youtube-gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.youtube-gallery .videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.youtube-gallery .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background: #000;
}

.youtube-gallery .video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.bit-button {
  background-color: #ffffff !important;
  border: none !important;
  text-shadow: none !important;
}
.bit-details.bit-event-buttons {
  background-color: #020004 !important;
  color: white !important;
  border: none !important;
  text-shadow: none !important;

}


.bit-details.bit-event-buttons {
  background-color: #020004 !important;
  color: white !important;
  border: none !important;
  text-shadow: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.bit-details.bit-event-buttons * {
  text-shadow: none !important;
}
.event-info {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  background: rgb(84, 3, 209);
  text-shadow: black 1px 1px 4px;
  border-radius: 8px;
  padding: 12px 16px;
  display: inline-block;
}
.event-info p {
  margin: 4px 0;
}
.event-info p:first-of-type { font-size: 16px; }
.event-info p:last-of-type  { font-size: 20px; }
.event-info .btn {
  padding: 8px 24px;
  font-size: 16px;
  margin-top: 8px;
}



@media screen and (max-width: 768px) {
  #bio .content {
    font-size: 16px;
  }
}

.wp-block-navigation,
.wp-block-navigation__responsive-container {
  display: none !important;
}


@media screen and (min-width: 1024px) {
  #bio .content {
    font-size: 19px;
  }
}

/* Responsive adjustments for mobile devices */
@media only screen and (max-width: 768px) {
  /* Header reordering: logo (left), social icons (middle), hamburger (right) */
  .header-container {
    display: flex;
    align-items: center;
  }
  .logo {
    order: 1;
    margin-right: auto;
  }
  .social-icons.header-social {
    order: 2;
    margin-right: 10px;
  }
  .hamburger {
    order: 3;
    display: flex;
  }
  /* Nav menu remains absolute */
  #nav-menu {
    display: none; /* toggled by JS */
    position: absolute;
    top: 60px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    overflow: hidden;
    min-width: 150px;
    flex-direction: column;
  }
  #nav-menu ul {
    flex-direction: column;
    text-align: left;
    padding: 0;
    margin: 0;
  }
  #nav-menu ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  #nav-menu ul li a {
    display: block;
    padding: 10px 15px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 22px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  #nav-menu ul li:last-child {
    border-bottom: none;
  }
  /* Mobile home section adjustments */
  #home {
    background: linear-gradient(135deg, #5403d1 0%, #2a0166 50%, #1a0044 100%);
    background-attachment: scroll; /* Changed from fixed for mobile compatibility */
    position: relative;
    padding: 0;
    margin-top: 60px; /* Pushes the content down so the header doesn't cover it */
    min-height: calc(100vh - 60px);
  }
  /* Home content starts immediately with proper spacing */
  .home-content {
    padding-top: 40px; /* Reduced from 75vh for mobile */
  }
  section {
    padding: 20px 0;
  }
}