/* Index Page Styles (index.css) */

/* ===== Base ===== */
html {
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background-color: #0d0d0d;
  color: #dddddd;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.para {
  color: #dddddd;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bullet {
  color: #dddddd;
}

.about-section,
.license-section,
.contact-section {
  margin: 2rem 0;
}

.text-center {
  text-align: center;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

/* ===== Header ===== */
header {
  text-align: center;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Center on desktop */
  background-color: #0d0d0d;
  border-bottom: 1px solid rgba(228, 179, 67, 0.2);
  padding: 0.75rem 1rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.site-title {
  color: #e4b343;
  font-size: 1.5rem;
  font-variant: small-caps;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.hamburger-menu {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 21px;
  justify-content: space-between;
  padding: 0;
  width: 30px;
  position: relative;
  z-index: 10;
}
.hamburger-line {
  background-color: #e4b343;
  height: 3px;
  transition: all 0.3s ease;
  width: 100%;
}

.pgn-nav {
  align-items: center;
  display: inline-flex;
  gap: 1rem;
  justify-content: center;
}
.pgn-link,
.pgn-toggle,
.pgn-menu li a {
  all: unset;
  color: #e4b343;
  cursor: pointer;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-variant: small-caps;
  padding: 0.25rem 0.75rem;
  transition: background-color 0.3s, color 0.3s;
}
.pgn-menu {
  background-color: #0d0d0d;
  border: 1px solid #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: none;
  list-style: none;
  margin: 0;
  min-width: 180px;
  padding: 0;
  position: absolute;
  z-index: 100;
}
.pgn-dropdown:hover .pgn-menu {
  display: block;
}

.section-title {
  color: #e4b343;
  font-variant: small-caps;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;

}

.bullet {
  color: #dddddd;
  font-size: 1rem;
  margin-left: 1.5rem;
  line-height: 1.5;
}

.contact-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.bullet li::marker {
  color: #e4b343; /* optional: gold bullets */
}

.contact-button {
  display: inline-block;
  background-color: #e4b343;
  color: #0d0d0d;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  font-variant: small-caps;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #ffcc66;
  color: #0d0d0d;
}

/* ===== Dropdown Highlight ===== */
/* when you hover or keyboard‐focus a dropdown item */
.pgn-menu li a:hover,
.pgn-menu li a:focus {
  background-color: rgba(228, 179, 67, 0.9); /* gold */
  color: #0d0d0d;                              /* dark text */
}

/* if you want to mark the currently selected page */
.pgn-menu li a.active {
  background-color: #ffcc66; /* brighter gold */
  color: #0d0d0d;
}


/* ===== Banner ===== */
.full-width-banner {
  display: block;
  margin: 0 auto;
  max-width: 1800px; /* Set max-width to 1800px */
  width: 100%;
}
.full-width-banner img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  box-sizing: border-box;
}

/* ===== Latest Release Section ===== */
.latest-release-section {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 20px;
}

.latest-release-title {
  color: #e4b343;
  font-size: 2.5rem;
  font-variant: small-caps;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* Latest Release Highlight Box */
.latest-release-section .album-header {
  background: linear-gradient(135deg, rgba(228, 179, 67, 0.15) 0%, rgba(228, 179, 67, 0.08) 100%);
  border: 2px solid rgba(228, 179, 67, 0.4);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(228, 179, 67, 0.15);
  position: relative;
  transition: all 0.3s ease;
  gap: 40px;
}

.latest-release-section .album-header:hover {
  background: linear-gradient(135deg, rgba(228, 179, 67, 0.2) 0%, rgba(228, 179, 67, 0.12) 100%);
  border-color: rgba(228, 179, 67, 0.6);
  box-shadow: 0 12px 48px rgba(228, 179, 67, 0.25);
  transform: translateY(-2px);
}

.latest-release-section .album-header::before {
  content: "NEW";
  position: absolute;
  top: -12px;
  right: 30px;
  background: linear-gradient(45deg, #e4b343, #ffcc66);
  color: #0d0d0d;
  font-size: 0.8rem;
  font-weight: bold;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Make Latest Release Album Cover Bigger */
.latest-release-section .album-cover {
  flex: 0 0 400px;
}

.latest-release-section .album-cover img {
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.latest-release-section .album-cover img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

/* Enhanced Typography for Latest Release */
.latest-release-section .album-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.latest-release-section .album-composer {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.latest-release-section .album-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.latest-release-section .album-metadata {
  margin-bottom: 25px;
}

.latest-release-section .metadata-label {
  font-size: 1.1rem;
}

.latest-release-section .metadata-value {
  font-size: 1.1rem;
}

/* Title and Share Container */
.title-share-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.share-buttons-inline {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 8px;
}

.share-button-inline {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-button-inline:hover {
  transform: translateY(-1px);
}

.share-button-inline img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.share-button-inline:hover img {
  opacity: 1;
}

/* Platform Buttons Inline */
.platform-buttons-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.platform-button-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.platform-button-inline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.platform-button-inline.bandcamp:hover {
  border-color: #4C9EBF;
  box-shadow: 0 2px 8px rgba(76, 158, 191, 0.3);
}

.platform-button-inline.spotify:hover {
  border-color: #1DB954;
  box-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
}

.platform-button-inline.youtube:hover {
  border-color: #FF0000;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

/* ===== Heading ===== */
.genre-title {
  color: #e4b343;
  font-size: 2.5rem;
  font-variant: small-caps;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
  text-align: center;
}

/* ===== Showcase Grid ===== */
.index-showcase-grid {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  margin-bottom: 0;
  margin-top: 0;
  gap: 20px;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
.index-showcase-grid > * {
  margin-bottom: 0;
  margin-right: 0;
}

/* ===== Tile & Hover ===== */
.showcase-tile {
  background-color: transparent;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.showcase-tile::after {
  background: radial-gradient(circle, rgba(228,179,67,0) 30%, rgba(13,13,13,0.6) 100%);
  border-radius: 2px;
  content: '';
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.showcase-tile:hover::after {
  opacity: 0.8;
}
.showcase-tile:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transform: scale(1.005);
  z-index: 2;
}
.showcase-tile img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s ease;
  width: 100%;
  z-index: 0;
}
.showcase-tile:hover img {
  filter: brightness(0.8);
  transform: scale(1.01);
}
.showcase-tile p {
  background: rgba(13,13,13,0.5);
  border: 1px solid rgba(228,179,67,0.3);
  border-radius: 4px;
  bottom: 50%;
  color: #e4b343;
  font-size: 2rem;
  font-variant: small-caps;
  font-weight: bold;
  left: 50%;
  letter-spacing: 0.05em;
  margin: 0;
  opacity: 0;
  padding: 8px 16px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,1), 0 0 20px rgba(0,0,0,0.8);
  transform: translate(-50%, 50%);
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 80%;
  z-index: 2;
}
.showcase-tile:hover p {
  opacity: 1;
  transform: translate(-50%, 50%) scale(1.05);
}

/* ===== Footer ===== */
.footer-container {
  background-color: #0d0d0d;
  color: #e4b343;
  font-variant: small-caps;
  text-align: center;
  font-size: 0.85rem;
  padding: 20px 10px;
}
.ct-social-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
.ct-social-box::-webkit-scrollbar {
  display: none;
}
.social-icon {
  align-items: center;
  color: #e4b343; /* Default gold color, overridden by brand-specific classes */
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: bold;
  gap: 6px;
  padding: 5px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* SVG Icon Styling - CRITICAL for icon visibility */
.social-icon svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  fill: currentColor; /* This makes icons inherit the parent color */
}

.social-icon.bandcamp { color: #4C9EBF; }
.social-icon.discord  { color: #5865F2; }
.social-icon.kick     { color: #00FF41 !important; }  /* FIXED: Added Kick with proper green */
.social-icon.instagram{ color: #E4405F; }
.social-icon.patreon { color: #E85B46; }
.social-icon.spotify { color: #1DB954; }
.social-icon.tiktok  { color: #FF0050 !important; }  /* FIXED: Was black/invisible, now proper TikTok pink */
.social-icon.twitch  { color: #9146FF; }
.social-icon.twitter { color: #1DA1F2; }
.social-icon.youtube { color: #FF0000; }
.social-icon.email   { color: #6E6E6E; }



/* ===== Responsive Styles: Tablet (<=1024px) ===== */
@media (max-width: 1024px) and (min-width: 768px) {
  .index-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .ct-social-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
  }

  .ct-social-box .social-icon {
    flex: 0 1 auto;
    font-size: 0.9rem;
    padding: 6px;
    min-width: unset;
  }

  .ct-social-box .ct-label {
    display: inline;
  }

  .ct-social-box .social-icon svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
}

/* ===== Explore All Button ===== */
.explore-all-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.explore-all-button {
  background-color: #e4b343;
  border: none;
  border-radius: 4px;
  color: #0d0d0d;
  cursor: pointer;
  font-size: 1.2rem;
  font-variant: small-caps;
  font-weight: bold;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-all-button:hover {
  background-color: #ffcc66;
  box-shadow: 0 4px 8px rgba(228, 179, 67, 0.3);
  transform: translateY(-2px);
}

/* Prevent body scrolling when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ===== Responsive Styles: Tablet (768px - 1024px) ===== */
@media (max-width: 1024px) and (min-width: 768px) {
  .latest-release-section .album-header {
    gap: 30px;
    padding: 2rem;
  }
  
  .latest-release-section .album-cover {
    flex: 0 0 320px;
  }
  
  .latest-release-section .album-title {
    font-size: 2.5rem;
  }
  
  .latest-release-section .album-composer {
    font-size: 1.2rem;
  }
  
  .latest-release-section .album-description {
    font-size: 1.1rem;
  }
}

/* ===== Responsive Styles: Mobile (<=767px) ===== */
@media (max-width: 767px) {
  body {
    padding: 0; /* Remove all body padding on mobile */
    margin: 0;
    overflow-x: hidden; /* Ensure no horizontal scroll */
    width: 100%;
    max-width: 100vw;
  }
  
  .full-width-banner {
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0 0; /* Add top margin to prevent overlap with header */
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .full-width-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
  }
  
  header .nav-container {
    justify-content: center !important;
    padding: 0.5rem 60px 0.5rem 10px; /* Leave space for hamburger on left */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
    position: relative;
    z-index: 100;
    background-color: #0d0d0d;
  }
  
  .logo-nav {
    margin: 0;
  }

  .hamburger-menu {
    display: flex;
    position: fixed;
    left: 10px;
    top: 10px;
    background-color: #0d0d0d;
    border: 2px solid #e4b343;
    border-radius: 4px;
    padding: 8px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  
  .hamburger-line {
    background-color: #e4b343;
    height: 3px;
    margin: 3px 0;
    transition: all 0.3s ease;
    width: 25px;
    border-radius: 1px;
  }
  
  .hamburger-menu.active {
    background-color: #0d0d0d;
    border-color: #e4b343;
  }
  
  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .site-title {
    display: block;
  }

  .pgn-nav {
    align-items: flex-start;
    background-color: #0d0d0d;
    border-right: 2px solid #e4b343;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    overflow-y: auto;
    padding: 4rem 0 1rem;
    transition: left 0.3s ease;
    width: 80%; /* Width for small screens */
    max-width: 280px; /* Maximum width */
    z-index: 1000;
  }

  .pgn-nav.nav-active {
    left: 0;
  }
  
  /* Style for active links in mobile navigation */
  .pgn-nav .pgn-link.active,
  .pgn-nav .pgn-dropdown.parent-active .pgn-toggle {
    background-color: rgba(228, 179, 67, 0.2);
    border-left: 3px solid #e4b343;
    color: #e4b343;
    font-weight: bold;
  }
  
  /* Improve dropdown menu in mobile view */
  .pgn-nav .pgn-dropdown {
    width: 100%;
  }
  
  .pgn-nav .pgn-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(228, 179, 67, 0.2);
    background-color: rgba(228, 179, 67, 0.05);
  }
  
  .pgn-nav .pgn-toggle:focus {
    outline: none;
  }
  
  .pgn-nav .pgn-menu {
    position: static;
    display: none;
    width: 100%;
    padding-left: 1rem;
  }
  
  .pgn-nav .pgn-dropdown.active .pgn-menu {
    display: block;
  }
  
  .pgn-nav .pgn-menu li {
    width: 100%;
  }
  
  .pgn-nav .pgn-menu .pgn-link {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  /* Latest Release responsive adjustments */
  .latest-release-section .album-header {
    flex-direction: column;
    gap: 25px;
    padding: 1.5rem;
  }
  
  .latest-release-section .album-header::before {
    right: 20px;
    top: -10px;
  }
  
  .latest-release-section .album-cover {
    flex: none;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .latest-release-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .latest-release-section .album-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .latest-release-section .album-composer {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .latest-release-section .album-metadata {
    justify-content: center;
  }
  
  .title-share-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .share-buttons-inline {
    justify-content: center;
  }
  
  .platform-buttons-inline {
    justify-content: center;
  }

  .index-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  @media (max-width: 480px) {
    body {
      padding: 0; /* No padding on very small screens */
      margin: 0;
    }
    
    .index-showcase-grid {
      grid-template-columns: 1fr;
    }
    
    .latest-release-section .album-cover {
      max-width: 250px;
    }
    
    .latest-release-section .album-title {
      font-size: 1.8rem;
    }
    
    .latest-release-section .album-header {
      padding: 1rem;
    }
    
    .title-share-container {
      gap: 10px;
    }
    
    .share-buttons-inline {
      gap: 6px;
    }
    
    .share-button-inline {
      padding: 4px;
    }
    
    .share-button-inline img {
      width: 20px;
      height: 20px;
    }
    
    .platform-buttons-inline {
      gap: 8px;
      flex-direction: column;
      align-items: center;
    }
    
    .platform-button-inline {
      font-size: 0.8rem;
      padding: 6px 10px;
    }
    
    .platform-button-inline svg {
      width: 16px;
      height: 16px;
    }
  }

   .ct-social-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 8px 10px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .ct-social-box .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    text-align: center;
    width: 100%;
  }

  .ct-social-box .ct-label {
    display: none;
  }

  .ct-social-box .social-icon svg {
    width: 24px;
    height: 24px;
    margin: 0 auto;
  }
}