/* ==========================================================================
   LA! (Lakendra Ford) Luxury Sub-page Module Styles - Multi-World Version
   ========================================================================== */

/* --- Custom Textures & Atmospheric Backgrounds --- */

/* Artist Stage Lighting Backdrop */
.artist-stage-bg {
  position: relative;
  background: 
    radial-gradient(circle at 20% 30%, rgba(122, 38, 193, 0.08) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 80% 70%, rgba(75, 11, 127, 0.08) 0%, rgba(255, 255, 255, 0) 50%),
    #ffffff;
}

.artist-stage-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(122, 38, 193, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}

/* Writer Paper Textured Backdrop */
.writer-paper-bg {
  position: relative;
  background: 
    radial-gradient(circle at 10% 80%, rgba(255, 20, 147, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 90% 20%, rgba(199, 21, 133, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
    #fcfbf9; /* Soft cream paper tone */
}

.writer-paper-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

/* Host Studio Broadcast Backdrop */
.host-broadcast-bg {
  position: relative;
  background: 
    radial-gradient(circle at 50% 10%, rgba(0, 191, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 30% 90%, rgba(0, 0, 205, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
    #fafcfd;
}

.host-broadcast-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, rgba(0, 191, 255, 0.02) 0px, rgba(0, 191, 255, 0.02) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}

/* --- Global Editorial Biography (Magazine style with Drop Caps) --- */
.editorial-article {
  max-width: 680px;
}

.drop-cap::first-letter {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  margin-right: 0.8rem;
  margin-top: 0.3rem;
  color: var(--theme-primary);
}

.biography-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-dark);
  margin: 2.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* --- Netflix-style video posters (artist.html) --- */
.netflix-grid {
  margin-top: 2rem;
}

.netflix-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  background-color: #000;
  height: 380px;
}

.netflix-card .video-preview-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.8;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.netflix-card:hover .video-preview-element {
  transform: scale(1.05);
  opacity: 0.65;
}

.netflix-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--color-white);
  transition: background 0.3s;
}

.netflix-card:hover .netflix-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
}

.netflix-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.netflix-duration {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  background-color: var(--theme-primary);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.netflix-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  padding-left: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.netflix-card:hover .netflix-play-btn {
  opacity: 1;
  transform: scale(1);
}

.netflix-play-btn:hover {
  background-color: var(--theme-primary);
  color: var(--color-white);
}

.netflix-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 0.4rem;
}

.netflix-category {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Blockbuster Movie-Style Centerpiece (artist.html / writer.html) --- */
.blockbuster-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
  background-color: #000;
  color: var(--color-white);
  margin-top: 3rem;
}

.blockbuster-img-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
}

.blockbuster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
  transition: transform 0.8s ease;
}

.blockbuster-banner:hover .blockbuster-img {
  transform: scale(1.02);
}

.blockbuster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  padding: 4rem;
}

.blockbuster-content {
  max-width: 520px;
  z-index: 2;
}

.blockbuster-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.blockbuster-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
  line-height: 1.7;
}

.blockbuster-cta-group {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
}

/* --- Connected Matrix Panels (writer.html) --- */
.matrix-interactive-grid {
  margin-top: 3rem;
}

.matrix-panel-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.matrix-panel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.4s;
}

.matrix-panel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-pink);
}

.matrix-panel-card:hover::before {
  border-color: var(--color-writer-primary);
}

.matrix-panel-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-writer-primary);
  display: block;
  margin-bottom: 1rem;
}

.matrix-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.matrix-panel-desc {
  font-size: 0.95rem;
  color: var(--color-dark-muted);
  line-height: 1.6;
}

.matrix-panel-cta {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-writer-primary);
}

/* --- Asymmetrical Photobook Gallery with location hovers --- */
.asymmetric-photobook {
  margin-top: 3rem;
}

.photobook-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
  background-color: var(--color-white);
  display: block;
}

.photobook-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.photobook-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photobook-card:hover .photobook-img {
  transform: scale(1.03);
}

.photobook-hover-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.photobook-card:hover .photobook-hover-info {
  opacity: 1;
}

.pb-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
}

.pb-location {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
}

.pb-meta {
  font-size: 0.8rem;
  color: var(--theme-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.2rem;
  display: block;
}

.pb-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.pb-zoom-icon {
  font-size: 1.3rem;
  align-self: flex-end;
}

/* --- Flexible Content Lists (Future Scalability grids) --- */
.expandable-grid {
  margin-top: 2rem;
}

.expandable-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s;
  height: 100%;
}

.expandable-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-primary);
}

.expandable-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--theme-primary);
  text-transform: uppercase;
}

.expandable-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.expandable-meta {
  font-size: 0.8rem;
  color: var(--color-dark-muted);
  margin-top: 0.2rem;
}

/* --- Cinematic Teaser Chapter Transition Gateways --- */
.transition-gateway {
  position: relative;
  width: 100%;
  padding: 10rem 0;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-white);
}

.transition-gateway-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gateway-bg-gradient);
  opacity: 0.08;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.transition-gateway:hover .transition-gateway-bg {
  opacity: 0.15;
}

.transition-gateway-content {
  position: relative;
  z-index: 2;
}

.gateway-chapter-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-dark-muted);
}

.gateway-chapter-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-top: 1rem;
  line-height: 1.1;
}

.gateway-chapter-desc {
  font-size: 1.15rem;
  color: var(--color-dark-muted);
  margin-top: 1.2rem;
}

.gateway-btn {
  margin-top: 2.5rem;
}

/* --- Custom Waveform Player Adjustments --- */
.player-waveform-adjust span {
  background-color: var(--color-artist-primary) !important;
}

/* --- Custom podcast Carousel artwork controls --- */
.podcast-episodes-carousel {
  margin-top: 3rem;
}

/* Dynamic glow adjustments */
.purple-accent-border { border-left-color: var(--color-artist-primary) !important; }
.pink-accent-border { border-left-color: var(--color-writer-primary) !important; }
.blue-accent-border { border-left-color: var(--color-host-primary) !important; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .blockbuster-overlay {
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.3) 100%);
    align-items: flex-end;
  }
  .blockbuster-img-wrapper {
    height: 520px;
  }
  .blockbuster-title {
    font-size: 2.4rem;
  }
  .gateway-chapter-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 575.98px) {
  .netflix-card {
    height: 340px;
  }
  .blockbuster-overlay {
    padding: 1.5rem;
  }
  .blockbuster-title {
    font-size: 2rem;
  }
  .matrix-panel-card {
    padding: 2rem 1.5rem;
  }
  .transition-gateway {
    padding: 6rem 0;
  }
  .gateway-chapter-title {
    font-size: 2.2rem;
  }
}

/* --- Interactive Project Timeline (writer.html) --- */
.interactive-timeline {
  position: relative;
  padding: 3rem 0;
  margin-top: 3rem;
}

.timeline-track-line {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: var(--color-border);
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-border);
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-step-item:hover .timeline-dot,
.timeline-step-item.active .timeline-dot {
  background-color: var(--color-writer-primary);
  border-color: var(--color-writer-primary);
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.4);
}

.timeline-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  transition: all 0.3s;
}

.timeline-step-item:hover .timeline-dot-inner,
.timeline-step-item.active .timeline-dot-inner {
  background-color: var(--color-white);
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
}

.timeline-step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-dark-muted);
  letter-spacing: 1px;
}

.timeline-step-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
  margin-top: 3rem;
}

.timeline-step-panel.active {
  display: block;
}

/* --- Floating Form Labels (booking.html) --- */
.form-group-floating {
  position: relative;
  margin-bottom: 2rem;
}

.form-group-floating label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.9rem;
  color: var(--color-dark-muted);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group-floating input:focus ~ label,
.form-group-floating input:not(:placeholder-shown) ~ label,
.form-group-floating textarea:focus ~ label,
.form-group-floating textarea:not(:placeholder-shown) ~ label,
.form-group-floating select:focus ~ label,
.form-group-floating select:not([value=""]):valid ~ label {
  top: -0.65rem;
  left: 0.75rem;
  font-size: 0.75rem;
  background-color: var(--color-white);
  padding: 0 0.5rem;
  color: var(--theme-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.form-group-floating input,
.form-group-floating textarea,
.form-group-floating select {
  width: 100%;
  padding: 1rem;
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-dark);
  font-family: var(--font-body);
  transition: all 0.3s;
}

.form-group-floating input:focus,
.form-group-floating textarea:focus,
.form-group-floating select:focus {
  border-color: var(--theme-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 38, 193, 0.05);
}

/* --- Equalizer & Convergent gradient logo effects (index.html) --- */
.logo-convergence-container {
  position: relative;
  display: inline-block;
}

.logo-convergence-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: radial-gradient(circle, rgba(122, 38, 193, 0.3) 0%, rgba(255, 20, 147, 0.3) 35%, rgba(0, 191, 255, 0.3) 70%, rgba(255,255,255,0) 100%);
  filter: blur(25px);
  opacity: 0;
  transition: opacity 1s, transform 1s;
  pointer-events: none;
  z-index: -1;
}

.logo-convergence-container:hover .logo-convergence-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.equalizer-wave {
  display: inline-flex;
  align-items: flex-end;
  height: 16px;
  margin-left: 0.5rem;
}

.equalizer-bar {
  width: 2px;
  height: 3px;
  background-color: var(--color-host-primary);
  margin: 0 1.5px;
  animation: eq-bounce 0.8s ease infinite alternate;
}

.equalizer-bar:nth-child(2) { animation-delay: 0.2s; }
.equalizer-bar:nth-child(3) { animation-delay: 0.4s; }
.equalizer-bar:nth-child(4) { animation-delay: 0.1s; }

@keyframes eq-bounce {
  0% { height: 3px; }
  100% { height: 16px; }
}

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

@media (max-width: 767.98px) {
  .timeline-track-line {
    display: none;
  }
  .timeline-step-item {
    margin-bottom: 2rem;
  }
}

