/* ========== 📦 Reusable Layout Rules ========== */

.epk {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 768px) {
  .epk {
    display: block;
    height: auto;
  }
}

/* Outer box (desktop only) */
.content-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  height: 100%;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

/* Inner scrollable and padded content */
.content-inner {
  height: 90%;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  overflow-y: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.content-inner::-webkit-scrollbar {
  display: none;
}

/* Typography */
.content-inner h2 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: white;
}

.content-inner p {
  color: #eaeaea;
  text-align: center;
  margin-bottom: 0;
}

/* 🔽 MOBILE LAYOUT ADJUSTMENTS */
@media (max-width: 768px) {
  .bg-overlay {
    display: block;
  }

  .content-wrapper {
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .content-inner {
    width: 100% !important;
    height: auto !important;
    overflow-y: visible !important;
  }

  .embed-wrapper {
    min-width: 0;
    width: 100%;
  }
}

/* ========== 🎵 epk Nav/Subnav ========== */

.epk-nav {
  position: sticky;
  top: 100px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  z-index: 50;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.epk-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
}

.epk-nav a:hover {
  color: #9e42f5;
}

.epk-nav a.active {
  color: #9e42f5;
  font-weight: 600;
  border-bottom: 2px solid #9e42f5;
}

.epk-submenu {
  position: sticky;
  top: 120px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  display: flex;
  gap: 10px;
  font-size: 14px;
  justify-content: center;
  z-index: 20;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.epk-submenu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: color 0.3s ease;
  border-bottom: none;
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .epk-submenu a:hover,
  .epk-submenu a:focus {
    border-bottom: 2px solid #9e42f5;
  }
}

.epk-submenu a.active {
  border-bottom: 2px solid #9e42f5;
}


/* ========== 🎵 epk Section Layout ========== */

.e-section {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
}

.epk-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.epk-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #9e42f5;
  margin: 10px auto 0;
  border-radius: 1px;
}

.epk-entry {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
  width: 100%;
}

.epk-entry h3 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 10px 0 10px;
  text-align: center;
}

.epk-entry p {
  color: #ccc;
  font-size: 14px;
  text-align: left;
  margin: 0 0 15px;
}


/* ========== 📺 Embeds ========== */

.embed-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 20px 0 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  border-radius: 12px;
}

.empty-message {
  text-align: center;
  color: #ccc;
  font-style: italic;
  margin: 20px 0 40px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .epk-section {
    min-height: auto;
  }
}


/* ========== 📁 Media Section Grid ========== */

.epk-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.media-block {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.media-block h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
  text-align: center;
}

.media-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.media-block ul li {
  margin-bottom: 8px;
}

.media-block a {
  color: #9e42f5;
  text-decoration: none;
  font-weight: 500;
}

.media-block a:hover {
  text-decoration: underline;
}


/* ========== 📸 Fixed Aspect Ratio Thumbnails ========== */

.photo-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.photo-thumb:hover {
  border-color: rgba(158, 66, 245, 0.6);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 6px 0;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.epk-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}


/* ========== 🎤 Gigs Section ========== */

.gig-list {
  list-style: none;
  padding: 0;
  margin: 15px auto;
  max-width: 400px;
  color: #ccc;
  font-size: 15px;
  text-align: center;
}

.gig-list li {
  margin-bottom: 8px;
}

.gig-list strong {
  color: white;
  font-weight: 600;
}

.venue-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.venue-cloud span {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #e0e0e0;
  white-space: nowrap;
}

/* ========== 📩 Booking & Download Buttons ========== */

.booking-buttons,
.download-all {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0 40px;
}

.booking-buttons a,
.download-all a,
#contact-form button {
  padding: 12px 20px;
  font-size: 1rem;
  background-color: #9e42f5;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.booking-buttons a:hover,
.download-all a:hover,
#contact-form button:hover {
  background-color: #7d2fd1;
  text-decoration: none;
}

.download-list {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  text-align: center;
}

.download-list li {
  margin: 10px 0;
}

.download-list a {
  color: #9e42f5;
  text-decoration: underline;
  font-weight: 500;
}

.download-list a:hover {
  color: #fff;
}

.download-all {
  margin: 25px 0 40px;
  text-align: center;
}

.epk-placeholder {
  font-style: italic;
  color: #ccc;
  margin: 10px 0 30px;
  text-align: center;
}
.epk-subheading {
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0 20px;
  color: #ccc;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-thumb {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box;
}

.logo-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-label {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
  font-weight: 500;
}

.gig-rows li {
  margin: 10px 0;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
}

.gig-main {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.gig-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gig-links a {
  color: #fff;
  font-size: 1rem;
  filter: brightness(0) invert(1); /* make them white by default */
  transition: filter 0.2s ease;
}

.gig-links a:hover {
  filter: brightness(0) saturate(100%) invert(34%) sepia(82%) saturate(747%) hue-rotate(237deg) brightness(92%) contrast(98%);
}

.links-label {
  font-weight: 600;
  margin-right: 4px;
  color: #aaa;
}

@media (min-width: 768px) {
  .gig-rows li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .gig-main {
    flex: 1;
  }
  .gig-links .links-label {
    display: none; /* hide on desktop */
  }
}

/* NEW: Mobile-only override to show "Links:" */
@media (max-width: 768px) {
  .gig-rows li {
    flex-direction: column;
    align-items: flex-start;
  }
  .gig-links {
    /* margin-top: 6px; */
    justify-content: flex-start;
  }
  .gig-links .links-label {
    display: inline;
    font-weight: 600;
    margin-right: 16px;
    color: #ccc;
  }
}

.gig-btn {
  /* padding: 2px 12px; */
  font-size: 0.85rem;
  /* background: rgba(128, 128, 128, 0.3); */
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.1;
  pointer-events: none;
}

.gig-btn:hover {
  /* background-color: rgba(128, 128, 128, 0.3); */
  color: #9e42f5;
}

.gig-day {
  display: inline-block;
  min-width: 65px;
  text-align: left;
  font-weight: 600;
}

.gig-month {
  display: inline-block;
  background: #9e42f5;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 4px 12px;
  margin: 1.5em 0 0.8em;
}

.gig-location,
.gig-type {
  color: #aaa;
  font-size: 0.85rem;
}

.gig-djs {
  margin-top: 5px;
}

.icon-ra {
  width: 24px;
  display: inline-block;
}

.gig-links a img.icon-ra {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.gig-links a:hover img.icon-ra {
  filter: brightness(0) saturate(100%) invert(34%) sepia(82%) saturate(747%) hue-rotate(237deg) brightness(92%) contrast(98%);
}

/* 🔥 Highlights Grid */
.epk-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.highlight-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.highlight-meta {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 12px;
}

.highlight-flyer img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  /* margin-bottom: 12px; */
}

.highlight-card .gig-links {
  margin-top: auto;
}

.epk-entry .phigh {
	text-align: center;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.tech-list li {
  margin: 8px 0;
  color: #eaeaea;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-list i {
  color: #9e42f5;
  font-size: 1.1rem;
}
.rider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.rider-block {
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.rider-block h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #9e42f5; /* purple accent */
}

.rider-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rider-block li {
  margin-bottom: 8px;
  color: #eaeaea;
  font-size: 0.95rem;
}

.hosp-message {
  text-align: left;
}
