@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --primary: #000000; /* Deep Black for high contrast */
  --bg-dark: #fcfcfc; /* Pure white/light grey canvas */
  --text-main: #111111; /* Near black */
  --text-muted: #555555; /* Dark grey for secondary text */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth; /* Essential for SPA navigation */
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- CINEMATIC BACKGROUNDS --- */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -3;
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  z-index: -2;
  opacity: 0.8;
}

.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: radial-gradient(circle, transparent 40%, rgba(255,255,255,0.7) 120%);
  z-index: -1;
}

/* --- NAVIGATION --- */
header.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem clamp(2rem, 5vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
}

.brand-icon {
  display: none; /* No longer used in navbar */
}

.brand-nametag {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo a:hover .brand-nametag {
  transform: scale(1.05) translateY(-2px);
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary); /* Ganti jadi oren untuk aktif/hover */
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Nav - No Hamburger, Just Flex-wrap */
@media screen and (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    justify-content: space-between;
  }
  .brand-nametag {
    height: 35px; /* Small logo */
  }
  .nav-links ul {
    gap: 0.6rem;
    flex-wrap: nowrap;
  }
  .nav-links a {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
}

/* --- SECTIONS (SCENES) --- */
.scene {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 10vw, 8rem) clamp(1.5rem, 5vw, 6rem);
  position: relative;
  scroll-margin-top: 140px;
}

.content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Glass Box for Sections like About, Discography, Contact */
.glass-box {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 5rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d; /* Apple 3D Effect */
  perspective: 1000px;
}

/* Inner elements pop out in 3D when hovering */
.glass-box > * {
  transform: translateZ(40px);
}

/* --- HOME SECTION --- */
.intro-content {
  text-align: left; /* Shift from center to left for a more cinematic poster look */
}

.intro-content h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.intro-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--text-main);
  letter-spacing: -2px;
  text-shadow: 0 0 35px rgba(255, 255, 255, 1), 0 0 15px rgba(255, 255, 255, 0.8);
}

.intro-content .accent {
  color: var(--primary);
  /* Removed italic based on user request */
}

.manifesto {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-main);
  font-weight: 500;
  max-width: 700px;
  line-height: 1.8;
  border-left: 2px solid var(--primary);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
  text-align: justify;
}

.social {
  display: flex;
  gap: 1.5rem;
}

.social a {
  font-size: 1.5rem;
  color: var(--text-muted);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social a img {
  filter: invert(1); /* Invert white social icons to black */
}

.social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(249, 83, 45, 0.4);
  transform: translateY(-3px);
}

/* --- ABOUT SECTION --- */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--text-main);
  margin-bottom: 2rem;
  display: inline-block;
  letter-spacing: -1px;
}

.section-title::after {
  content: '.';
  color: var(--primary);
}

.bio-text p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.9;
  text-align: justify;
}

.bio-text strong {
  color: var(--text-main);
}

.bio-text em {
  color: var(--primary);
  font-style: italic;
}

.signature {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin-top: 3rem;
  font-style: italic;
}

.read-more-btn {
  background: transparent;
  border: 1px solid rgba(249, 83, 45, 0.5);
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: rgba(249, 83, 45, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(249, 83, 45, 0.3);
  transform: translateY(-2px);
}

/* --- DISCOGRAPHY SECTION --- */
.sub-title {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

.album-showcase {
  margin-bottom: 4rem;
}

.embed-wrapper iframe, .singles-grid iframe {
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.embed-wrapper iframe:hover, .singles-grid iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(249, 83, 45, 0.15);
}

.timeline-year {
  margin-bottom: 4rem;
  padding-left: 2rem;
  padding-top: 2rem;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.year-marker {
  position: absolute;
  top: -15px;
  left: -25px;
  background: var(--bg-dark);
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 5px 15px;
  letter-spacing: 2px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.single-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transform-style: preserve-3d;
}

.song-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
}

.song-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.song-year {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  background: rgba(249, 83, 45, 0.1);
  border-radius: 12px;
}

/* --- CONTACT SECTION --- */
.contact-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-box p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-align: justify;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary);
  box-shadow: 0 0 30px rgba(249, 83, 45, 0.4);
  transform: translateY(-3px);
}

/* --- ANIMATIONS & INTERACTIONS --- */
.magnetic, .magnetic-card {
  transition: transform 0.1s ease, box-shadow 0.3s ease;
}

/* Continuous Live Animations (Super Cinematic) */
.live-float {
  animation: floatAnim 6s ease-in-out infinite;
}

.live-float-slow {
  animation: floatAnimSlow 10s ease-in-out infinite;
}

.live-float-fast {
  animation: floatAnimFast 4s ease-in-out infinite;
}

.live-pulse {
  animation: pulseGlow 4s infinite alternate;
}

.live-glow-text {
  animation: textGlow 4s ease-in-out infinite alternate;
}

.live-breathe {
  animation: breatheScale 20s ease-in-out infinite alternate;
}

.live-tilt {
  animation: tiltRotate 15s ease-in-out infinite alternate;
}

.live-film-flicker {
  animation: filmFlicker 0.15s infinite;
}

.live-lens-pulse {
  animation: lensPulse 8s ease-in-out infinite alternate;
}

/* Light Leak Overlay */
.light-leak {
  position: fixed;
  top: 0;
  left: -20%;
  width: 150vw;
  height: 150vh;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  animation: lightLeakMove 25s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes floatAnimSlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes floatAnimFast {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 10px rgba(255, 255, 255, 0.1); }
  100% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 35px rgba(255, 255, 255, 0.5); }
}

@keyframes textGlow {
  0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.4); }
  100% { text-shadow: 0 0 25px rgba(255, 255, 255, 1); }
}

@keyframes breatheScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes tiltRotate {
  0% { transform: perspective(1000px) rotateX(1deg) rotateY(-1deg); }
  100% { transform: perspective(1000px) rotateX(-1deg) rotateY(1deg); }
}

@keyframes filmFlicker {
  0% { opacity: 0.8; }
  50% { opacity: 0.75; }
  100% { opacity: 0.8; }
}

@keyframes lensPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.05); opacity: 1; }
}

@keyframes lightLeakMove {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, -5%) scale(1.1); }
  100% { transform: translate(-5%, 5%) scale(1); }
}

/* Custom Cursor */
.cursor, .cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
}

.cursor {
  width: 10px;
  height: 10px;
  background: #000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}

.cursor-trail {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  backdrop-filter: blur(3px);
}

/* --- FLOATING MUSIC NOTES (REMNANTS CANVAS) --- */
.floating-notes-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.floating-note {
  position: absolute;
  top: 0;
  opacity: 0.6;
  filter: grayscale(100%) contrast(1.2);
  transition: transform 0.1s ease-out;
  will-change: transform;
}
