/* =============================================
   ROOT VARIABLES
   ============================================= */
:root {
  --phoenix-dark-bg-start: #0a111a;
  --phoenix-dark-bg-end: #0f2027;
  --phoenix-card-bg: #1a2933;
  --phoenix-accent-blue: #00bcd4;
  --phoenix-light-text: #fff;
  --phoenix-muted-text: #a0a8b4;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000100;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.preloader-logo {
  width: 80px;
  height: auto;
}

/* =============================================
   BACKGROUND & PAGE EFFECTS
   ============================================= */
#hoverParticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

@media (max-width: 768px) {
  #hoverParticles {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  #hoverParticles {
    width: 100%;
    height: 100%;
  }
}

/* =============================================
   UTILITY & ANIMATION CLASSES
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  transform: translateX(-50px);
}

.slide-right {
  transform: translateX(50px);
}

.slide-up {
  transform: translateY(50px);
}

.slide-down {
  transform: translateY(-50px);
}

.show.slide-left,
.show.slide-right,
.show.slide-up,
.show.slide-down {
  transform: translate(0, 0);
  opacity: 1;
}

.welcome-bg {
  background-color: #252525 !important;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.text-primary {
  color: var(--phoenix-accent-blue) !important;
}

.no-bullets {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.logo-header {
  padding-top: 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  padding: 10px 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background-color: #000 !important;
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .navbar-brand-custom img {
  height: 70px;
  transition: height 0.3s ease;
}

.navbar-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-brand-custom img {
  height: 80px;
  width: auto;
  transition: height 0.3s ease;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  padding: 5px 10px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link.active,
.nav-link.active:hover {
  color: #f18120;
}

.nav-link.active::after {
  opacity: 1;
  left: -15px;
}

.nav-link:hover {
  color: #0ae6ff;
}

.nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 15px;
  height: 15px;
  background-color: #0ae6ff;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
  opacity: 1;
  left: -15px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 9px 10px;
  cursor: pointer;
}

.icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  margin: 4px 0;
}

@media (max-width: 991px) {

  .nav-link.active,
  .nav-link.active:hover {
    background-color: rgba(241, 129, 32, 0.2);
    color: #f18120;
  }

  .nav-link.active::after {
    opacity: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .nav-links-wrapper.is-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }

  .nav-link {
    color: #fff;
    padding: 6px;
    display: block;
  }

  .nav-link:hover::after {
    opacity: 0;
  }

  /* --------------new ========= */
  .hero {
    min-height: 82vh !important;
  }

  .hero-cutout {
    left: 20% !important;
    width: 450px !important;
  }

  .slide-text .line1 {
    font-size: 30px !important;
  }

  .video-block {
    height: 300px !important;
  }

  .page-footer__form {
    margin-bottom: -8px !important;
    ;
  }

  .page-footer p {
    font-size: 15px !important;
    ;
  }
}

.hero {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero-cutout {
  position: absolute;
  bottom: 0;
  left: -7%;
  width: 700px;
  height: auto;
  opacity: 0.9;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 1;
}

/* Overlay for better text contrast */
.hero-slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.7));
}

/* Slide text styling - perfectly centered */
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Centers both directions */
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  animation: fadeInText 1s ease forwards;
}

.slide-text h2,
.slide-text h3 {
  margin: 0;
  line-height: 1.2;
}

.slide-text .line1 {
  font-weight: 600;
  line-height: 1.1;
  overflow: hidden;
  /* padding-bottom: 40px; */
  font-size: clamp(2rem, 9vw, 6rem);
  /* MODIFIED: Better clamp range */
  background-image: linear-gradient(-45deg, #ee7752, #ffffff, #23a6d5, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientMove 5s ease infinite;
}

.hero__header-text-fill {
  display: inline-block;
  background-image: linear-gradient(-45deg, #ee7752, #ffffff, #23a6d5, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientMove 5s ease infinite;
}

.hero__header {
  font-weight: 600;
  line-height: 1.1;
  overflow: hidden;
  padding-bottom: 40px;
  font-size: clamp(2rem, 9vw, 6rem);
  /* MODIFIED: Better clamp range */
  background-image: linear-gradient(-45deg, #ee7752, #ffffff, #23a6d5, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientMove 5s ease infinite;
}

/* Soft fade + slight rise animation */
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 30%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
  left: 1.5rem;
}

.slider-btn.next {
  right: 1.5rem;
}

@media (max-width: 480px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slide-text .line1 {
    font-size: 1.8rem;
  }

  .slide-text .line2 {
    font-size: 1rem;
  }
}

/* =============================================
   VIDEO BANNER (INNER PAGES)
   ============================================= */
.video-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(40%) blur(2px);
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(0, 255, 255, 0.15),
      rgba(0, 0, 0, 0.9));
  animation: glow 6s ease-in-out infinite alternate;
}

.banner-content {
  position: relative;
  text-align: center;
  z-index: 2;
  justify-content: center;
  animation: fadeUp 1.2s ease-in-out;
}

.banner-title {
  font-size: 5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #09eaff, #16919cff, #ffffff);
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200%;
  animation: gradientMove 5s linear infinite;
}

.banner-subtitle {
  font-size: 2rem;
  color: #b7b7b7;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* =============================================
   ABOUT SECTION (GENERAL)
   ============================================= */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.layout-dark__greeting-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.about-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}

/* =============================================
   ABOUT SECTION (CREATIVE V2)
   ============================================= */
.about-creative--v2 {
  background: linear-gradient(160deg,
      var(--phoenix-dark-bg-start) 0%,
      var(--phoenix-dark-bg-end) 100%);
  color: var(--phoenix-light-text);
  position: relative;
  z-index: 1;
}

.about-creative--v2 .about-creative__content-wrapper {
  background-color: var(--phoenix-card-bg);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 188, 212, 0.15);
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.about-creative--v2 .about-creative__content-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 188, 212, 0.25);
}

.about-creative--v2 .about-creative__image-wrapper img {
  width: 95%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
  .about-creative--v2 .about-creative__content-wrapper {
    margin-left: -80px;
    padding-left: 60px;
  }
}

.about-creative--v2 .about-creative__eyebrow {
  color: var(--phoenix-accent-blue) !important;
  letter-spacing: 2px;
  font-size: 0.9em;
}

.about-creative--v2 .about-creative__headline {
  color: var(--phoenix-light-text);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 10px;
  line-height: 1.2;
}

.about-creative--v2 .about-creative__description {
  color: var(--phoenix-light-text);
  font-size: 1.2rem;
  line-height: 1.6;
}

.about-creative--v2 .stat-item__number {
  color: var(--phoenix-accent-blue) !important;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.about-creative--v2 .stat-item__label {
  color: var(--phoenix-muted-text);
  letter-spacing: 1px;
  font-size: 0.85em;
  text-transform: uppercase;
}

.about-creative--v2 .about-creative__tagline {
  color: var(--phoenix-light-text);
  border-color: var(--phoenix-accent-blue) !important;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  margin-top: 2rem !important;
}

@media (max-width: 768px) {
  .about-creative--v2 .about-creative__description {
    font-size: 1rem;
  }

  .about-creative--v2 .about-creative__content-wrapper {
    padding: 1.5rem !important;
  }
}

.layout-dark {
  padding: 40px;
}

/* =============================================
   ACCREDITATION / CLIENTS
   ============================================= */

/* ADDED: Responsive text for accreditation section */
@media (max-width: 768px) {
  .bg-body-tertiary p.fs-4 {
    font-size: 1.1rem !important;
    /* Bootstrap fs-4 is too large for mobile */
  }
}

.presentation__image-block img {
  transition: all 0.3s ease-in-out;
}

.presentation__image-block:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.15);
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #000;
  padding: 40px 0;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  align-items: center;
}

.clients-track img {
  width: 100px;
  margin: 0 40px;
  object-fit: contain;
  flex-shrink: 0;
}

/* =============================================
   NEW: VIDEO BLOCK (HIGHLIGHTS)
   ============================================= */

.video-block__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.video-block__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-block__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 2rem;
  z-index: 10;
  cursor: pointer;
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}

.video-block__poster:hover {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0px);
}

.video-block__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.video-block__text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e0e0e0;
  max-width: 700px;
  margin-bottom: 0.5rem;
}

.video-block__subheading {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--phoenix-accent-blue);
  font-style: italic;
  margin-bottom: 2rem;
}

.video-block__play {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.video-block__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #ffffff;
  transform: translate(-40%, -50%);
}

.video-block__poster:hover .video-block__play {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

/* =============================================
   NEW: VIDEO MODAL
   ============================================= */
.video-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 1100px;
}

.video-modal-close {
  position: absolute;
  top: -30px;
  right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.video-modal-close:hover {
  color: #ccc;
}

#popupVideo {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -35px;
    right: 5px;
    font-size: 35px;
  }
}

/* =============================================
   VISION / MISSION SECTION
   ============================================= */
.vision-mission-section {
  position: relative;
  background: radial-gradient(circle at top left, #0f0f0f, #000);
  color: #fff;
  padding: 100px 40px;
  overflow: hidden;
  z-index: 1;
}

.bubbles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bubbles-bg::before,
.bubbles-bg::after {
  content: "";
  position: absolute;
  background-image: radial-gradient(circle at 10% 20%,
      rgba(0, 255, 255, 0.6) 2px,
      transparent 3px),
    radial-gradient(circle at 80% 30%,
      rgba(0, 255, 255, 0.7) 3px,
      transparent 4px),
    radial-gradient(circle at 15% 70%,
      rgba(0, 255, 255, 0.5) 3px,
      transparent 4px),
    radial-gradient(circle at 85% 65%,
      rgba(0, 255, 255, 0.4) 2px,
      transparent 3px),
    radial-gradient(circle at 50% 15%,
      rgba(139, 92, 246, 0.5) 3px,
      transparent 4px),
    radial-gradient(circle at 60% 55%,
      rgba(139, 92, 246, 0.6) 2px,
      transparent 3px),
    radial-gradient(circle at 40% 90%,
      rgba(139, 92, 246, 0.7) 3px,
      transparent 4px),
    radial-gradient(circle at 30% 45%,
      rgba(255, 255, 255, 0.4) 2px,
      transparent 3px),
    radial-gradient(circle at 75% 80%,
      rgba(255, 255, 255, 0.3) 2px,
      transparent 3px),
    radial-gradient(circle at 20% 30%,
      rgba(0, 255, 255, 0.2) 4px,
      transparent 5px),
    radial-gradient(circle at 70% 40%,
      rgba(139, 92, 246, 0.1) 5px,
      transparent 6px);
  background-size: 300px 300px;
  animation: float-particle-dots 40s linear infinite;
  width: 60%;
  height: 60%;
}

.bubbles-bg::before {
  top: 0;
  left: 0;
  /* mask-image: radial-gradient(circle at top left, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at top left,
      black 10%,
      transparent 70%); */
}

.bubbles-bg::after {
  bottom: 0;
  right: 0;
  /* mask-image: radial-gradient(circle at bottom right,
      black 10%,
      transparent 70%);
  -webkit-mask-image: radial-gradient(circle at bottom right,
      black 10%,
      transparent 70%); */
}
.bubbles-bg {
  background: transparent !important;
}

.vision-mission-section::before,
.vision-mission-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.25;
  z-index: 0;
  animation: drift 25s infinite alternate ease-in-out;
}

.vision-mission-section::before {
  top: -100px;
  left: -100px;
  background: rgba(0, 255, 255, 0.4);
}

.vision-mission-section::after {
  bottom: -100px;
  right: -100px;
  background: rgba(139, 92, 246, 0.4);
}

.section-heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff, #b3a0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 2;
}

.vision-icon,
.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.vision-icon,
.mission-icon {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00ffff, #1d6fc9);
  margin-top: 10px;
  border-radius: 2px;
  transition: width 0.5s ease, background 0.5s ease;
}

.vision-text,
.mission-text {
  /* MODIFIED: Fixed the broken clamp() function */
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: #c8c8c8;
  z-index: 2;
  position: relative;
}

.mission-text strong {
  color: #b3a0ff;
  font-weight: 700;
}

.highlight {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-top: 25px !important;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1),
    inset 0 0 10px rgba(139, 92, 246, 0.1);
  animation: pulseGlow 3s infinite alternate;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.vision-box,
.mission-box {
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-image 0.5s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 20px solid transparent;
  border-image: url("../images/bg-ticket-frame.png") 30 stretch;
}

.vision-box:hover {
  transform: translateY(-12px) scale(1.03) rotateY(-4deg);
  box-shadow: 0 10px 50px rgba(0, 255, 255, 0.3);
}

.mission-box:hover {
  transform: translateY(-12px) scale(1.03) rotateY(4deg);
  box-shadow: 0 10px 50px rgba(181, 108, 255, 0.3);
}

.vision-box:hover .underline {
  width: 130px;
  background: linear-gradient(90deg, #00ffff, #00b4f5);
}

.mission-box:hover .underline {
  width: 130px;
  background: linear-gradient(90deg, #b56cff, #8b5cf6);
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding: 60px 20px;
  }

  .vision-box,
  .mission-box {
    padding: 25px;
    perspective: none;
  }

  .vision-box:hover,
  .mission-box:hover {
    transform: translateY(-8px) scale(1.02);
  }

  .layout-dark {
    padding: 0px;
  }
}

/* =============================================
   ARTIST FEATURE SECTION
   ============================================= */
.artist-feature__layout {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 1rem;
}

.artist-feature__text-container {
  flex: 1 1 30%;
  position: relative;
  min-width: 0;
}

.artist-feature__image-container {
  flex: 1 1 70%;
  position: relative;
  min-width: 0;
  z-index: 5;
}

.artist-feature__layout--text-left .artist-feature__text-container {
  z-index: 10;
  margin-right: -75px;
  text-align: right;
  padding-right: 20px;
}

.artist-feature__layout--text-right .artist-feature__text-container {
  z-index: 10;
  margin-left: -75px;
  text-align: left;
  padding-left: 20px;
}

.artist-feature__image-container {
  z-index: 5;
}

.artist-feature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-feature__title {
  /* MODIFIED: Replaced multiple media queries with a single clamp() */
  font-size: clamp(2.5rem, 10vw, 6rem);
  font-weight: 900;
  background-image: linear-gradient(-45deg, #ee7752, #ffffff, #23a6d5, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientMove 5s ease infinite;
}

@media (max-width: 1024px) {

  .artist-feature__layout--text-left .artist-feature__text-container,
  .artist-feature__layout--text-right .artist-feature__text-container {
    margin: 0;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 2rem;
  }

  .artist-feature__layout {
    flex-direction: column;
    text-align: center;
  }

  .artist-feature__text-container,
  .artist-feature__image-container {
    flex: 1 1 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .artist-feature__title {
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    font-size: 2.5rem;
  }

  .artist-feature__layout {
    flex-direction: column;
  }

  .artist-feature__text-container {
    order: 1;
    visibility: visible;
    position: relative;
    top: 55px;
  }

  .artist-feature__image-container {
    order: 2;
    width: 100%;
    z-index: 5;
  }

  .artist-feature__image {
    height: auto;
    display: block;
  }
}

@media (max-width: 480px) {

  /* REMOVED font-size and margin-bottom hacks */
  .artist-feature__text-container {
    padding-top: 15px;
  }
}

/* =============================================
   VIDEO / IMAGE GALLERY
   ============================================= */
.video-gallery {
  background-color: #0b151d;
  padding: 8dvh 20px;
  position: relative;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.video-card {
  background: #111;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-card:hover {
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
  transform: scale(1.03);
}

.video-card video {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.video-card:hover .video-controls {
  opacity: 1;
}

.video-card:fullscreen video,
.video-card:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.video-card:fullscreen .video-controls,
.video-card:-webkit-full-screen .video-controls {
  bottom: 20px;
}

.control-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.control-btn:hover {
  transform: scale(1.2);
  color: #00ffe5;
}

.progress-bar {
  width: 120px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.progress {
  height: 5px;
  background: #00ffe5;
  border-radius: 5px;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
}

.volume-slider {
  width: 70px;
  accent-color: #00ffe5;
  cursor: pointer;
}

.time {
  font-size: 0.9rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .video-controls {
    opacity: 1;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }
}

.image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  color: #00ffe5;
  font-size: 1.2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-card:hover .image-overlay {
  opacity: 1;
}

/* =============================================
   MISC CONTENT & TYPOGRAPHY
   ============================================= */
.singer-heading {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.singer-heading span {
  display: block;
  font-size: 50px;
  font-weight: 900;
  line-height: 0.5;
}

/* =============================================
   FOOTER
   ============================================= */
.page-footer__contacts i {
  color: #d8e2e4;
  font-size: 15px;
  background: #076379;
  padding: 7px;
  border-radius: 50px;
}

.page-footer__contacts a,
.page-footer__contacts p {
  color: #c8c8c8;
  font-size: 15px;
  line-height: 1.6;
}

/* =============================================
   KEYFRAMES
   ============================================= */
/* MODIFIED: Consolidated to the one definition that was being used */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes red-warning-pulse {
  0% {
    transform: scale(1);
    /* Red color at 70% opacity */
    box-shadow: 0 0 0 0 rgb(11, 202, 255);
  }

  70% {
    transform: scale(1.08);
    /* Fades out to transparent red */
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

@keyframes float-particle-dots {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 900px;
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(80px, 60px) scale(1.1);
    opacity: 0.4;
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes pulseGlow {
  from {
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1),
      inset 0 0 10px rgba(139, 92, 246, 0.1);
  }

  to {
    border-color: rgba(179, 160, 255, 0.4);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3),
      inset 0 0 15px rgba(139, 92, 246, 0.2);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes kenBurns {
  from {
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes glow {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================= */
/* ARTISTS SECTION STYLES   */
/* ======================= */

.artists-section {
  width: 100%;
  padding: 4rem 1rem;
  background-color: #080808;
  box-sizing: border-box;
  overflow: hidden;
}

.artists-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.artist-card {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  cursor: grab;
}

.artist-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-card:hover img {
  transform: scale(1.1);
}

.artist-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 100%);
  box-sizing: border-box;
}

.artist-card-content h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  background: #03c6fe4f;
  padding: 14px;
}

.artist-slider {
  padding: 0 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

.artist-slider .swiper-button-next,
.artist-slider .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.artist-slider .swiper-button-next:hover,
.artist-slider .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
}

.artist-slider .swiper-button-next::after,
.artist-slider .swiper-button-prev::after {
  font-size: 1.5rem;
}

@media (max-width: 768px) {

  .artist-slider .swiper-button-next,
  .artist-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .artist-slider .swiper-button-next::after,
  .artist-slider .swiper-button-prev::after {
    font-size: 1.2rem;
  }
}

/* ======================= */
/* PROJECTS GRID SECTION    */
/* ======================= */

.projects-section-grid {
  width: 100%;
  padding: 4rem 2rem;
  /* More side padding */
  background-color: #050a15;
  box-sizing: border-box;
}


/* --- The CSS Grid --- */
.project-grid-container {
  display: grid;
  /* Auto-fit columns, min 300px, max 1fr */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  /* Base height for rows */

  grid-auto-flow: dense;

  gap: 1.25rem;
  max-width: 1600px;
  margin: 0 auto;
}

.project-card-grid {
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;

  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card-grid:hover {
  transform: translateY(-10px) scale(1.03) rotate(1deg);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.project-card-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* --- Make image zoom slightly on hover too --- */
.project-card-grid:hover img {
  transform: scale(1.1);
}

/* --- Card Content Overlay --- */
.project-card-grid-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 100%);
  box-sizing: border-box;
}

.project-card-grid-content h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto;
  background: #050a1575;
  padding: 14px;
  text-align: center;
}

.card-wide {
  grid-column: span 2;
}

.card-tall {
  grid-row: span 2;
}


@media (max-width: 768px) {
  .project-grid-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 350px;
  }

  .card-wide,
  .card-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .projects-section-grid {
    padding: 3rem 1rem;
  }
}

.custom-slider-width {
  margin: 3px !important;
}

.audio-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

.custom-map {
  border-bottom: 3px solid #0e1e25;
  border-top: 4px solid #0e1e25;
}

.custom-txt {
  font-size: 28px;
  padding-top: 30px;
}





.fade-text.fade-down {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-dual {
  opacity: 0;
  transform: translateY(20px);
}

.parallax-item {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.parallax-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
}

.artist-feature__image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.parallax-section {
    position: relative;
    width: 100%;
    height: 66vh;      
    overflow: hidden;
    background-color: #003645; 
}

.parallax-image {
      position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
