/* ── ASHING PRODUCTIONS CSS ── */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;600&display=swap');

:root {
  --bg-color: #030305;
  --text-color: #f0f0f0;
  --text-muted: #888888;
  
  --accent-cyan: #00f3ff;
  --accent-magenta: #ff0055;
  --accent-purple: #7000ff;

  --font-heading: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 243, 255, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 0, 85, 0.05), transparent 25%);
  cursor: none;
}

body * {
  cursor: none !important;
}

/* Custom Selection */
::selection {
  background: var(--accent-magenta);
  color: #fff;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

p {
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-cyan);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.cursor.active {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 243, 255, 0.1);
}

/* Cursor Ripple Effect */
.ripple {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, rgba(112, 0, 255, 0.05) 50%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  filter: blur(4px);
  mix-blend-mode: screen;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 3rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* Layout Utilities */
section {
  min-height: 100vh;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  scroll-margin-top: 80px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    linear-gradient(180deg, transparent 0%, var(--bg-color) 100%),
    radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.15), transparent 60%);
  /* Placeholder for an actual video background */
}

/* We create some pure CSS "laser" lines */
.laser {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 200%;
  height: 2px;
  background: var(--accent-cyan);
  opacity: 0.3;
  transform: rotate(-15deg);
  box-shadow: 0 0 20px var(--accent-cyan);
  pointer-events: none;
}
.laser-2 {
  background: var(--accent-magenta);
  transform: rotate(25deg);
  box-shadow: 0 0 20px var(--accent-magenta);
  top: 30%;
}

.hero-title-wrapper {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(4rem, 15vw, 15rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
  position: relative;
}

/* Glitch effect on title hover */
.hero-title:hover {
  color: #fff;
  -webkit-text-stroke: 0;
  text-shadow: 
    4px 0 var(--accent-cyan),
    -4px 0 var(--accent-magenta);
  transition: all 0.1s;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-top: 2rem;
  color: var(--accent-cyan);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
}

/* Ethos Section */
.ethos {
  align-items: center;
  text-align: center;
}

.ethos h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 1000px;
  margin-bottom: 2rem;
}

.ethos h2 span {
  color: var(--accent-magenta);
}

/* Services Section */
.services {
  background: #07070a;
}

.services-title {
  font-size: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.4s ease;
}

.service-item:hover {
  padding-left: 2rem;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 243, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.service-item:hover::before {
  transform: translateX(0);
}

.service-name {
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-family: var(--font-body);
  max-width: 400px;
  text-align: right;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-item:hover .service-desc {
  opacity: 1;
  transform: translateX(0);
}

/* Work Section */
.work {
  padding: 0;
  height: 100vh;
  display: block; /* Avoid flexbox overflow shifting */
  overflow: hidden;
}

.work-wrapper {
  display: flex;
  align-items: center; /* Vertically center cards */
  height: 100%;
  gap: 4rem;
  padding: 0 4rem;
  width: max-content;
}

.work-card {
  width: 60vw;
  max-width: 1000px;
  flex-shrink: 0;
  height: 70vh;
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.work-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  width: 100%;
}

.work-info h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  text-align: center;
  background: var(--bg-color);
  justify-content: center;
}

.contact-title {
  font-size: clamp(5rem, 12vw, 12rem);
  color: var(--accent-cyan);
  margin-bottom: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.contact-title:hover {
  color: var(--accent-magenta);
}

.btn-book {
  display: inline-block;
  padding: 1.5rem 4rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent-cyan);
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-book:hover {
  color: #000;
}

.btn-book:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

footer {
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-color);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent-cyan);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* =========================================================================
   NEW SECTIONS: PRODUCTION COMPANY EXPANSION
   ========================================================================= */

/* Marquee */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: var(--accent-cyan);
  color: #000;
  padding: 1.5rem 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee {
  display: inline-block;
  animation: scrollText 30s linear infinite;
  font-family: var(--font-heading);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Showreel Reveal */
.showreel {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.showreel-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showreel-text {
  font-size: clamp(6rem, 15vw, 15rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  z-index: 2;
  transition: color 0.5s ease;
  pointer-events: auto;
}

.showreel-text:hover {
  color: #fff;
  -webkit-text-stroke: 0;
}

.showreel-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60vw;
  height: 60vh;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  pointer-events: none;
}

.showreel-content:hover .showreel-video-wrapper {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.5;
}

.showreel-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Counter */
.stats {
  background: #050508;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--accent-magenta);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* Pipeline (Split Scroll) */
.pipeline {
  display: flex;
  flex-direction: row;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.pipeline-left {
  width: 50%;
  height: 100vh;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-color);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.pipeline-left h2 {
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--text-color);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.pipeline-right {
  width: 50%;
  padding: 50vh 4rem; /* Padding for the scroll start/end */
  background: #020202;
}

.pipeline-step {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.2;
  transition: opacity 0.5s ease;
}

.pipeline-step.active {
  opacity: 1;
}

.pipeline-step h3 {
  font-size: 4rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.pipeline-step h4 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.pipeline-step p {
  font-size: 1.2rem;
}

/* Arsenal Parallax */
.arsenal {
  background: var(--bg-color);
  overflow: hidden;
  position: relative;
  align-items: center;
  min-height: 120vh;
}

.arsenal-title {
  font-size: 8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
}

.arsenal-items {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.arsenal-item {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  color: transparent;
  transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.arsenal-item:hover {
  color: var(--accent-purple);
  -webkit-text-stroke: 0;
}

/* Scatter the arsenal items manually for parallax */
.arsenal-item:nth-child(1) { top: 10%; left: 10%; font-size: 4rem; }
.arsenal-item:nth-child(2) { top: 30%; right: 15%; font-size: 5rem; }
.arsenal-item:nth-child(3) { top: 50%; left: 20%; font-size: 3rem; }
.arsenal-item:nth-child(4) { top: 70%; right: 5%; font-size: 6rem; }
.arsenal-item:nth-child(5) { top: 85%; left: 15%; font-size: 4rem; }
.arsenal-item:nth-child(6) { top: 20%; left: 40%; font-size: 2.5rem; }


/* =========================================================================
   MOBILE RESPONSIVE
   ========================================================================= */

@media (max-width: 768px) {
  nav { padding: 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .work-card { width: 85vw; height: 60vh; }
  .service-name { font-size: 2rem; }
  .service-desc { display: none; }
  .services-title { font-size: 2.5rem; }

  /* New sections mobile overrides */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .stat-number { font-size: 4rem; }
  
  .pipeline { flex-direction: column; height: auto; }
  .pipeline-left { width: 100%; height: auto; padding: 4rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .pipeline-right { width: 100%; height: auto; padding: 4rem 1.5rem; }
  .pipeline-step { height: auto; margin-bottom: 5rem; opacity: 1; }
  
  .arsenal-item { position: relative; top: auto !important; left: auto !important; right: auto !important; margin: 2rem 0; text-align: center; font-size: 2.5rem !important; }
  .arsenal-items { display: flex; flex-direction: column; align-items: center; justify-content: center; }
}
