:root {
  --primary-dark: #121212;
  --secondary-dark: #1e1e1e;
  --highlight-color: #E7D060;
  --text-light: #ffffff;
  --accent-blue: #00bcd4;
  --gold-soft: rgba(231,208,96,0.15);
  --gold-strong: rgba(231,208,96,0.6);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--highlight-color);
}

/**/
.panchiTitle {
  height: 120px;
}

/* TRANSPARENT HEADER - MATCHING PRESS FOOTER THEME */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: transparent; /* Made transparent */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(image.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(0.4) contrast(1.1);
  z-index: -1;
  animation: bgFadeIn 2s ease-out forwards;
}

.hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 20px 30px;
  background: rgba(30, 30, 30, 0.7); /* Updated to match press container */
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.08); /* Softer border */
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.1;
}

.hero-content img {
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: 500;
  color: var(--accent-blue);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-strong) 100%);
  color: var(--primary-dark);
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--highlight-color);
  box-shadow: 
    0 5px 20px rgba(231,208,96,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--gold-strong) 0%, var(--highlight-color) 100%);
  transform: translateY(-8px);
  box-shadow: 
    0 15px 35px rgba(231,208,96,0.5),
    0 8px 25px rgba(0,0,0,0.3);
  color: #000;
  letter-spacing: 2px;
}

/*release section*/
.release-section {
  position: relative;
  padding: 100px 20px;
  background-color: var(--secondary-dark);
  text-align: center;
  overflow: hidden;
}

.release-section * {
  position: relative;
  z-index: 1;
}

.release-section h2 {
  font-size: 3.5em;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  color: #E7D060;
  position: relative;

 
  text-shadow: 
    2px 2px 0 #1e1e1e,
    3px 3px 0 rgba(0, 188, 212, 0.6),
    5px 5px 0 rgba(231, 208, 96, 0.5),
    0 0 20px rgba(231, 208, 96, 0.8),
    0 0 35px rgba(0, 188, 212, 0.6);

  animation: neonPulseCinematic 2s ease-in-out infinite alternate, textPop 3s ease-in-out infinite alternate;
  transform-origin: center;
}


@keyframes neonPulseCinematic {
  0% {
    text-shadow: 
      2px 2px 0 #1e1e1e,
      3px 3px 0 rgba(0, 188, 212, 0.4),
      5px 5px 0 rgba(231, 208, 96, 0.3),
      0 0 18px rgba(231, 208, 96, 0.6),
      0 0 30px rgba(0, 188, 212, 0.4);
  }
  50% {
    text-shadow: 
      2px 2px 0 #1e1e1e,
      3px 3px 0 rgba(0, 188, 212, 0.5),
      5px 5px 0 rgba(231, 208, 96, 0.45),
      0 0 22px rgba(231, 208, 96, 0.75),
      0 0 40px rgba(0, 188, 212, 0.5);
  }
  100% {
    text-shadow: 
      2px 2px 0 #1e1e1e,
      3px 3px 0 rgba(0, 188, 212, 0.7),
      5px 5px 0 rgba(231, 208, 96, 0.6),
      0 0 28px rgba(231, 208, 96, 0.9),
      0 0 50px rgba(0, 188, 212, 0.6);
  }
}


@keyframes textPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.05) rotate(-1deg); }
  100% { transform: scale(1) rotate(1deg); }
}

.release-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.album-art {
  width: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--highlight-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.album-art img {
  width: 100%;
  height: auto;
  display: block;
}

.track-info {
  flex-grow: 1;
  text-align: left;
  max-width: 500px;
  position: relative;
}

.track-info h3 {
  font-size: 3em;
  margin: 0 0 5px 0;
  color: var(--highlight-color);
}

.track-info .credits {
  font-size: 1.1em;
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 4px solid var(--accent-blue);
}

.track-info .credits strong {
  display: block;
  color: var(--text-light);
  margin-top: 5px;
}

.track-info p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ccc;
}

.streaming-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
/* plartform buttons */
.platform-button {
  width: 50px;
  height: 50px;
  background-color: var(--accent-blue);
  color: var(--primary-dark);
  border-radius: 50%;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.platform-button:hover {
  background-color: var(--highlight-color);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.press-button {
  position: absolute;
  border-radius: 10px;
  top: 24px;
  right: -174px;
  background-color: #E7D060;
  color: #121212;
  font-weight: 600;
  padding: 0px 70px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px var(--highlight-color);
}

.press-button:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--accent-blue);
}

/* whtasapp section */
.whatsapp-container {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

.whatsapp-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("sonia majeed for whatsapp section.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(0.3) contrast(1.1);
  z-index: -1;
}

.whatsapp-heading {
  font-size: 2.2em;
  font-weight: 800;
  color: var(--highlight-color);
  padding-top: 40px;
  margin-bottom: 35px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8), 0 0 10px var(--accent-blue);
}

.whatsappQr {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--highlight-color);
  border-radius: 15px;
  padding: 40px;
  margin: 20px;
}

.qr-code-text {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-light);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.whatsapp-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 100px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  background-color: #25D366;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-link-button:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px);
}

.whatsapp-link-button i {
  font-size: 1.5rem;
}

/*footer - UPDATED TO MATCH PRESS FOOTER */
footer {
  background: transparent;
  color: var(--text-light);
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
  opacity: 0.5;
}

footer p {
  margin: 25px 0 0;
  color: var(--text-light);
  opacity: 0.7;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Social Section - UPDATED TO MATCH PRESS FOOTER */
.social-section {
  text-align: center;
  margin: 25px 0 20px;
}

.social-section p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1rem;
  opacity: 0.9;
}

.social-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-section .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--highlight-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-section .social-icons a:hover {
  background: var(--highlight-color);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 208, 96, 0.4);
}

.social-section .social-icons a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(47%) saturate(648%) hue-rotate(8deg) brightness(97%) contrast(89%);
  transition: all 0.3s ease;
}

.social-section .social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}


/*corner credit symbol*/
.corner-credit {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.9em;
  color: var(--highlight-color);
  text-align: right;
  line-height: 1.3;
  z-index: 1000;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  pointer-events: none;
  opacity: 0;
  animation: fadeSlideIn 2s ease-out forwards;
}

.corner-credit img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

/*Responsivness*/
@media (max-width: 1024px) {
    
  .release-details {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .track-info {
    text-align: center;
    max-width: 80%;
  }
  .press-button {
    position: relative;
    top: 10;
    right:0;
    padding: 10px 70px;
    margin: 0 auto 30px auto;
    display: inline-flex;
  }
}

@media (max-width: 768px) {
    .album-art {
        width: 100vw;
    }
.album-art img {
    width: 100%;
}
  .release-section h2 { font-size: 2.5em; }
  .album-art { width: 300px; }
  .track-info h3 { font-size: 2.5em; }
  .hero-content {
    padding: 15px 20px;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {

  .album-art { width: 90vw; }
  .whatsappQr { width: 90vw; padding: 30px 10px; }
  .cta-button { padding: 12px 25px; font-size: 1em; }
  .whatsapp-heading { font-size: 1.4em; }
  .hero-content p { font-size: 1.4em; }
}

/*page animations*/
@keyframes bgFadeIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-section,
.release-section,
.release-section h2,
.whatsapp-container,
footer,
.corner-credit {
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards;
}

.hero-section { animation-delay: 0.1s; }
.release-section { animation-delay: 0.3s; }
.release-section h2 { animation-delay: 0.5s; }
.whatsapp-container { animation-delay: 0.7s; }
footer { animation-delay: 0.9s; }
.corner-credit { animation-delay: 1.1s; }

/**/
.release-section { position: relative; z-index: 1; }
.release-section * { position: relative; z-index: 3; }

.imrana-overlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%; /* Constraints it to the section height */
  width: 50%;
  pointer-events: none;
  z-index: 1; /* Sits behind the text content */
  overflow: hidden;
}

.imrana-overlay img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 90%; /* "Shortened" so it doesn't hit the top */
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  
  /* Artistic Effects */
  filter: grayscale(40%) brightness(0.8);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%),
              linear-gradient(to top, rgba(0,0,0,1) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%),
                      linear-gradient(to top, rgba(0,0,0,1) 80%, transparent 100%);
}

.release-section:hover .imrana-overlay img {
  opacity: 0.55;
  transform: scale(1.03);
  box-shadow: 
    -6px -6px 12px rgba(255,255,255,0.3),
    6px 6px 12px rgba(0,0,0,0.7);
}

.imrana-credit {
  position: absolute;
  bottom: 20px;
  right: 8%;
  text-align: right;
  font-size: 1.1em;
  line-height: 1.4em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  z-index: 2;
  opacity: 0.9;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.imrana-credit span {
  font-weight: 600;
  color: #E7D060;
}

@media (max-width: 1080px) {
  .imrana-overlay {
    width: 100%;
    height: 100%; /* Keep it within the section */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .imrana-overlay img {
    position: relative;
    height: 600px; /* Fixed height so it stays "short" */
    max-height: 80vh; 
    width: 100%;
    object-fit: contain; /* Prevents stretching */
    opacity: 0.25; /* Faded more to keep text readable */
    bottom: 0;
    right: 0;
    
    /* Fade edges so it looks like a glow behind the credits */
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 20%, transparent 80%);
  }
  
  /* Ensure credits stay on top */
  .track-info {
    z-index: 10;
    position: relative;
  }
}

@media (max-width: 768px) { .imrana-overlay img { opacity: 0.25; } 
  .imrana-overlay {
    width: 100%;
    height: 70vh;
    top: auto;
    bottom: 0px;
  }
  .imrana-overlay img {
    right: 0;
.imrana-overlay img {
    height: 100px;
    opacity: 0.2;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 60%, transparent 100%);
  }
}
 /* press release  */
.footer-press {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.press-footer-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(231, 208, 96, 0.15);
  border: 1px solid rgba(231, 208, 96, 0.6);
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  color: #E7D060;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(231, 208, 96, 0.4);
  transition: 0.3s ease;
}

.press-footer-btn:hover {
  background: rgba(231, 208, 96, 0.25);
  box-shadow: 0 0 18px rgba(231, 208, 96, 0.7);
  transform: translateY(-3px) scale(1.03);
}

.press-footer-btn img {
  width: 34px;
  height: auto;
  filter: brightness(1.3); 
}
/*  */
