
#main-content {
  display: block;
}

/* EPK Page Styles - Complementing main site design */
/* Media subsection styling */
.media-subsection {
  margin-bottom: 40px;
  width: 100%;
}

.media-subsection:last-child {
  margin-bottom: 0;
}
.subsection-header {
  font-size: 20px;
  font-style: italic;
  /* margin-bottom: 25px; */
  color: #d7b38e;
  text-align: center;
  font-weight: 600;
}

/* Keep the first subsection header closer to the main header */
.media-subsection:first-child .subsection-header {
  margin-top: 0;
}

/* Target the "From Our Live Shows" header specifically */
.subsection-header[data-translate="subsection-live-shows"] {
  margin-top: 10px; /* More space on desktop */
}


.epk-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px; /* Widened container to fit two images per row */
  box-sizing: border-box;
  margin: 0 auto;
  color: white;
  padding-bottom: 40vh; /* Adds space at bottom of container */
}

.epk-container .text-container {
  width: 80%;
  margin: 10px auto;
}

/* Image layout styles */
.image-row {
  display: block;
  justify-content: space-between;
  margin: 10px auto;
  /* gap: 20px; */
  width: 70%;
}

.image-container {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.landscape {
  width: 100%;
  height: auto;
  /* aspect-ratio: 16/9; */
  object-fit: cover;
  display: block;
  margin: 10px auto;
}

.square {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* Files section styles */
.files-section {
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  
  width: 70vw; /* 70% of viewport width */
  max-width: 700px;
  margin: 30px auto 0 auto;
  
  box-sizing: border-box;
}

.logo-section {
  background-color: rgba(147, 147, 147, 0.5);
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0; /* optional: override padding from .files-section if needed */
}

.logo-section img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.logo-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  gap: 20px;
  max-width: 800px; /*optional: keeps content from stretching too wide */
  margin: 0 auto;
}

.files-section h2 {
  font-size: 25px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  color: #d0a585;
}

.file-item:last-child {
  border-bottom: none;
}

.file-icon {
  font-size: 24px;
  margin-right: 15px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* separator */
  padding: 6px 0;
  gap: 12px;
  width: 100%;
}

.icon-box {
  width: 30px;
  min-width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box a:hover,
.icon-box button:hover {
  filter: brightness(3);
}

.icon-box.clicked a {
  color: #d0a585; /* or any color you prefer */
  filter: none; /* optionally disable the hover filter */
}

.file-name {
  flex-grow: 1;
  text-align: left;
  font-size: 18px;
}

.file-actions {
  display: flex;
  gap: 15px;
  min-width: fit-content;
}

.no-hover {
  pointer-events: none;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-trigger {
  all: unset; /* This resets all inherited/default styles */
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-tooltip {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  bottom: 125%; /* Position above the icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}

.tooltip-trigger:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
}

.icon-box:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
  transition: opacity 0s ease, visibility 0s;
}

.file-header {
  display: flex;
  align-items: center; /* vertical alignment */
  gap: 10px; /* optional spacing between icon and text */
}

.btn {
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.btn-preview {
  background-color: #d0a585; /* Yellow background for preview */
}

.btn-download {
  background-color: #4d2617; /* Red background for download */
}

.btn:hover {
  opacity: 0.85;
}

.icon-box a,
.icon-box button {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 30px;
  height: 30px;

  background-color: #4d2617;
  color: white;
  border-radius: 4px;
  text-decoration: none;
}

.material-symbols-outlined,
.icon-box a i {
  font-size: 20px;
  line-height: 1;
}

.youtube-icon {
  font-size: 22px;
}

.spull-logo-epk {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Language Selector Styles - DESKTOP HIDDEN */
.language-selector {
  display: none; /* Hide desktop language selector completely */
}
.language-selector-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.language-menu-item {
  text-align: center;
  margin: 10px 0;
}

.lang-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.lang-link:hover {
  color: #d7b38e;
}

.lang-link.active {
  color: #d7b38e;
  font-weight: 600;
}

.lang-divider {
  color: white;
  margin: 0 8px;
  font-size: 16px;
}
/* Desktop/Mobile visibility controls */
.desktop-only {
  display: none; /* Hide desktop language selector */
}

.mobile-only {
  display: block; /* No longer needed, but keeping for other elements */
}

/* Update mobile media query */
@media screen and (max-width: 600px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
  
  /* Language selector styling remains the same on mobile */
  .language-menu-item {
    text-align: center;
    margin: 10px 0;
  }
  
  .language-selector-mobile .lang-link {
    font-size: 16px;
    padding: 8px 12px;
  }
  
  .language-selector-mobile .lang-divider {
    font-size: 16px;
    margin: 0 8px;
  }
}

.epk-section {
  margin-bottom: 60px;
  scroll-margin-top: 0px;
}
.epk-section h2 {
  color: #d7b38e;
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

/* Mobile responsiveness */
@media screen and (max-width: 600px) {
  /* Hide desktop language selector on mobile */
  .desktop-only {
    display: none;
  }
  
  .material-symbols-outlined,
  .icon-box a i {
    font-size: 15px;
  }

  /* Show mobile language selector */
  .mobile-only {
    display: block;
  }
  
  .language-menu-item {
    text-align: center;
    margin: 10px 0;
  }
  
  .language-selector-mobile .lang-link {
    font-size: 16px;
    padding: 8px 12px;
  }
  
  .language-selector-mobile .lang-divider {
    font-size: 16px;
    margin: 0 8px;
  }

  .epk-section {
    margin-bottom: 0px;
  }

  .image-row {
    flex-direction: column;
    width: 100%;
  }

  .logo-wrapper {
    grid-template-columns: 1fr; /* stack on mobile */
  }

  .logo-section {
    width: 70vw; /* viewport width: scales with screen */
    height: 70vw; /* maintain square shape */
  }

  .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-desc {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
  }

  .pic-wrapper {
    grid-template-columns: 1fr;
  }

  .image-container {
    margin-bottom: 15px;
  }

  #tagline {
    margin-bottom: 0 !important; /* or whatever value you want */
}
  .files-section {
    /* width: calc(100% - 5px); */
    /* max-width: 120%; */
    padding: 20px 15px;
    margin: 30px auto 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 85vw;
  }

  .file-item {
    display: flex;
    grid-template-rows: auto auto auto; /* 3 rows */
    justify-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 12px;
    /* margin-bottom: 12px; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .file-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* File name (row 2) */
  .file-name {
    margin-bottom: 0px;
    text-align: center;
    font-size: 14px;

  }

  /* File actions (row 3) */
  .file-actions {
    display: flex;
    gap: 5px;
    justify-content: center;
  }

  .icon-box span:not(.icon-box a span):not(.icon-box button span) {
    font-size: 35px;
    line-height: 1;
  }

  .youtube-icon {
    font-size: 34px;
    line-height: 1;
  }

  .icon-box img {
    width: 30px;
    height: 30px;
  }
  .icon-box .spull-logo-epk {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .epk-container {
    padding: 0 10px;
  }
}
.poc {
  text-align: center;
  padding: 10px 0 15px 0; /* Reduced top padding, slightly more bottom */
}

.poc .file-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Default gap between lines */
}

.poc-name,
.poc-role,
.poc-tel,
.poc-email {
  font-size: 18px; /* Same font size for all elements */
  line-height: 1.4;
}

/* Specific gap control - smaller gap between name and role */
.poc-name {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: -6px;/* Reduces gap with next element */
  /* color: #d7b38e; */ /* Uncomment to change color */
}

.poc-role {
  /* font-style: italic; */
  font-size: 14px;
  color: #d4d4d4;
}
/* Video styling to match about-image */
.video-container {
  margin: 10px auto;
  width: 100%;
  max-width: 100%;
}

.video-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* Standard video aspect ratio */
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  border: none;
}

/* Ensure video element matches image styling */
video.about-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 10px auto;
}

/* Carousel Styles - UPDATED VERSION */
.carousel-container {
  margin-bottom: 10px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.carousel-container.carousel-about {
  width: inherit;
  max-width: 700px;
  margin-bottom: 0px;
}

.carousel-title {
  color: #d7b38e;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.carousel {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 8px;
  background: #000; /* Black background for letterboxing/pillarboxing */
}

.carousel-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  display: flex;
  opacity: 1;
}

.carousel-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.carousel-video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

/* Arrow Navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #333;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-arrow-prev {
  left: 15px;
}

.carousel-arrow-next {
  right: 15px;
}

/* Counter styling */
.carousel-counter {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Hide old dot navigation */
.carousel-dots {
  display: none;
}

/* Mobile adjustments for carousel */
@media screen and (max-width: 768px) {
  .carousel {
    padding-bottom: 66.67%; /* 3:2 ratio on tablets */
  }
  
  .carousel-arrow {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .text-container.bio-text {
    font-size: inherit;
  }
  .carousel-arrow-prev {
    left: 12px;
  }
  
  .carousel-arrow-next {
    right: 12px;
  }

  .carousel-container, .carousel-container.carousel-about {
    width: 95%;
    /* margin-bottom: 10px; */
  }
  
  .carousel-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .carousel {
    padding-bottom: 75%; /* 4:3 ratio on mobile */
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .carousel-arrow-prev {
    left: 10px;
  }
  
  .carousel-arrow-next {
    right: 10px;
  }
  
  .carousel-counter {
    bottom: 12px;
    padding: 5px 12px;
    font-size: 13px;
  }
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .video-container iframe {
    border-radius: 8px; /* Slightly smaller radius on mobile */
  }
  
  video.about-image {
    border-radius: 8px;
  }
}

/* Tagline text styling - customize as needed */
.tagline-text {
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  /* font-style: italic; */
  color: white;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);

}





/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .tagline-text {
    font-size: 16px; /* Adjust size for mobile */
    margin-top: 15px;
    padding: 0 10px;
  }

.epk-section .inspired-by {
  font-size: 14px;
}

  .subsection-header {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .subsection-header[data-translate="subsection-live-shows"] {
    margin-top: 40px; /* Less space on mobile */
  }

  .about-page .epk-section .photocredit {
    margin-right: 15px;
  }
  
  /* Or the more targeted approach */
  .about-page .media-subsection .text-container {
    width: 100%; /* Match the main site's text-container behavior */
  }

/* Mobile adjustments */


  .carousel-container {
    width: 95%;
    /* margin-bottom: 30px; */
  }
  
  .carousel-track {
    height: 250px;
  }
  
  .carousel-title {
    font-size: 16px;
  }
  
  .subsection-header {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .media-subsection {
    margin-bottom: 50px; /* Slightly less spacing on mobile */
  }
}


/* Video Section Styles */
.video-section {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
}

.video-item {
  margin-bottom: 30px; /* Space between videos */
}

.video-item:last-child {
  margin-bottom: 0; /* Remove margin from last video */
}

/* Video frame - same dimensions as photo carousel */
.video-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio - same as photo carousel */
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}
.landscape-video {
  width: 100%;
  height: 400px; /* Adjust as needed */
  border-radius: 8px;
}

/* Ensure iframe behaves like video */
iframe.landscape-video {
  aspect-ratio: 16/9; /* Maintain video aspect ratio */
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .video-section {
    width: 95%;
  }
  
  .video-frame {
    padding-bottom: 66.67%; /* 3:2 ratio on tablets */
  }
  
  .video-item {
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .video-frame {
    padding-bottom: 75%; /* 4:3 ratio on mobile */
  }
  
  .video-item {
    margin-bottom: 20px;
  }
}

/* Portrait Video Section Styles */
.portrait-video-section {
  width: 80%;
  max-width: 600px;
  margin: 10px auto 0 auto; /* Top margin to separate from landscape videos */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.portrait-video-item {
  flex: 1;
  min-width: 250px; /* Minimum width before wrapping */
  max-width: 280px; /* Maximum width to ensure 2 fit side by side */
}

/* Portrait video frame - 9:16 aspect ratio for portrait */
.portrait-video-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%; /* 9:16 aspect ratio (16/9 = 1.7778) */
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.portrait-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .portrait-video-section {
    width: 95%;
    flex-direction: column; /* Stack vertically on tablets and below */
    align-items: center;
  }
  
  .portrait-video-item {
    max-width: 300px; /* Allow slightly larger on mobile since they stack */
  }
  
  .portrait-video-frame {
    padding-bottom: 150%; /* Slightly less tall ratio on mobile */
  }
}

@media (max-width: 480px) {
  .portrait-video-section {
    gap: 15px;
  }
  
  .portrait-video-item {
    max-width: 250px;
  }
  
  .portrait-video-frame {
    padding-bottom: 133.33%; /* 3:4 ratio on small mobile */
  }
}


/* EPK Page-specific style overrides */
/* These styles only apply when body has 'epk-page' class */

/* Navigation menu background */
.epk-page .nav-menu {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* Files section background and shadow */
.epk-page .files-section {
  background-color: rgba(30, 30, 30, 0.8);
  box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Carousel container */
.epk-page .carousel {
  background: rgba(15, 15, 15, 0.9);
  box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
}

/* Image shadows */
.epk-page .about-image {
  box-shadow: 0px 6px 20px rgba(255, 255, 255, 0.15);
}

/* Video container shadows */
.epk-page .video-container iframe,
.epk-page video.about-image {
  box-shadow: 0px 6px 20px rgba(255, 255, 255, 0.1);
}

/* Burger menu icon (if needed) */
.epk-page .burger-icon .bar {
  background-color: #f0f0f0;
}

/* Language selector background */
.epk-page .language-selector {
  background: rgba(20, 20, 20, 0.8);
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}


/* Tooltips */
.epk-page .custom-tooltip {
  background-color: rgba(20, 20, 20, 0.95);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

/* Icon boxes */
.epk-page .icon-box a,
.epk-page .icon-box button {
  background-color: #2a2a2a;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

.epk-page .icon-box a:hover,
.epk-page .icon-box button:hover {
  background-color: #3a3a3a;
  filter: brightness(1.2);
}
