body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom, #111, #222);
  color: #eee;
}

header.hero {
  text-align: center;
  padding: 60px 20px;
  background: radial-gradient(circle, #333, #111);
}



section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img, .gallery iframe {
  width: 100%;
  border-radius: 8px;
}

.mixes .mix {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platforms a {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 20px;
  background: #444;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}

.icons a {
  margin-right: 15px;
  text-decoration: none;
  color: #fff;
  padding: 10px;
  border-radius: 50px;
  transition: background 0.3s;
}

.icons a.facebook:hover { background: #3b5998; }
.icons a.instagram:hover { background: #e1306c; }
.icons a.tiktok:hover { background: #010101; }

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

form button {
  padding: 10px;
  background: #555;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9em;
}


.navbar {
  background: #000;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: #eee;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #444;
}

html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-gallery {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.embed-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.embed-wrapper h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #ccc;
}

.instagram-feed, .tiktok-feed {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.mix h3 {
  margin-top: 20px;
  font-size: 1.2em;
  color: #ccc;
}

.mix iframe {
  width: 100%;
  height: 600x;
  border-radius: 8px;
}

.mix a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #444;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.mix a:hover {
  background: #666;
}

.mix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin: 30px;  
}

.mix-item {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.mix-item h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #ccc;
}

.mix-item iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.mix-item a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #444;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.mix-item a:hover {
  background: #666;
}


.platforms-embed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.platform h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #ccc;
} 



.about {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
}
.bio-media {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.bio-photo {
  flex: 1 1 300px;
  margin: 0;
}
.bio-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.bio-text {
  flex: 2 1 400px;
}


.bio-row{
  display:flex;
  align-items:center;
  gap:2rem;
  margin:2rem 0;
}
.bio-row:nth-child(even){
  flex-direction:row-reverse;   /* alternates left / right */
}
.bio-row figure{
  flex:1 1 320px;
  margin:0;
}
.bio-row figure img{
  width:100%;
  border-radius:6px;
  box-shadow:0 4px 12px rgba(0,0,0,.35);
}
.bio-row .text{
  flex:1 1 450px;
}
/* mobile stack */
@media (max-width:768px){
  .bio-row,
  .bio-row:nth-child(even){
    flex-direction:column;
  }
}



.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.card iframe {
  width: 100%;
  height: 200px;
  border: 0;
}
.gallery-spot {
  display: flex;
  gap: 4px;
}
.gallery-spot img {
  width: 50%;
  object-fit: cover;
}
.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #ff0080;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}
.button.small {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
}


  .hero-bg{
      position:relative;
      height:100vh;
      overflow:hidden;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
    }
    .hero-bg .slide{
      position:absolute;
      inset:0;
      background-size:cover;
      background-position:center;
      opacity:0;
      animation:fade 16s infinite;
    }
	
	
	
	
/* ---- inline biography images ---- */
.text-img {
  margin: 1.5rem 0;
  text-align: center;
}
.text-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.text-img figcaption {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 0.4rem;
}
@media (min-width: 700px) {
  .text-img.left {
    float: left;
    width: 45%;
    margin: 0 1.5rem 1rem 0;
  }
  .text-img.right {
    float: right;
    width: 45%;
    margin: 0 0 1rem 1.5rem;
  }
  .text-img.full {
    width: 100%;
  }
}

	
/* =====  VERTICAL NAV ON MOBILE  ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 500px) {
  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;          /* tighter spacing */
  }
  .navbar li {
    margin: 0;            /* remove horizontal margin */
  }
  .navbar a {
    display: block;
    padding: 10px 0;      /* full-width click target */
    text-align: center;
  }
}


/* keep cards side-by-side on desktop */
.highlight-grid.duo {
  display: flex;
  gap: 1.5rem;
}
.highlight-grid.duo .card {
  flex: 1 1 400px;          /* equal width */
}

/* stack on mobile */
@media (max-width: 500px) {
  .highlight-grid.duo {
    flex-direction: column;
  }
}

.logo {
  max-width: 500px;
 /*  height: auto;
  display: block;
  margin: 0 auto; */
}
 
.iframe-container {
  position: relative;
  width: 100%;
  max-width: 780px;
  height: 600px;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.rightclick-shield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  pointer-events: auto; /* allow this div to intercept mouse events */
}


@media (max-width: 500px) {
  .board,
  .highlight-grid.duo {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .column,
  .highlight-grid.duo .card {
    width: 100%;
    max-width: 100%;
  }

  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .navbar li {
    margin: 0;
  }
  .navbar a {
    display: block;
    padding: 10px 0;
    text-align: center;
  }
}