/**
 * Q-DASH Photography Accessories & Studio Setup Center (Platform V3)
 * Scenes, Interactive Labs, Infographics, Hotspots & Studio Visualizers
 * File: assets/css/photography-gear-platform-v3-scenes.css
 * Strictly Scoped to .gear3
 */

/* Hero Studio Setup Stage */
.gear3-hero-stage {
  background: rgba(18, 30, 54, 0.9);
  border: 1px solid rgba(242, 101, 34, 0.35);
  border-radius: var(--gear-radius-xl);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--gear-shadow-navy), 0 0 35px rgba(242, 101, 34, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.gear3-hero-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 101, 34, 0.2);
  color: #ff9d6c;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(242, 101, 34, 0.4);
  margin-bottom: 18px;
}

.gear3-studio-scene-box {
  background: rgba(6, 12, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--gear-radius-md);
  padding: 20px;
  margin-bottom: 18px;
  position: relative;
}

.gear3-studio-elements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gear3-studio-element-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  font-size: 0.8rem;
  color: #ffffff;
  transition: var(--gear-transition);
}

.gear3-studio-element-pill:hover {
  background: rgba(242, 101, 34, 0.15);
  border-color: var(--gear-orange);
  transform: translateY(-2px);
}

/* Category Explorer Cards (Section 1) */
.gear3-cat-card {
  background: var(--gear-white);
  border-radius: var(--gear-radius-lg);
  border: 1px solid var(--gear-slate-200);
  box-shadow: var(--gear-shadow-soft);
  padding: 26px 20px;
  transition: var(--gear-transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.gear3-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gear-shadow-elevated), 0 0 25px rgba(242, 101, 34, 0.15);
  border-color: var(--gear-orange);
}

.gear3-cat-icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.12) 0%, rgba(212, 175, 55, 0.12) 100%);
  border: 1px solid rgba(242, 101, 34, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

/* 6-Node Build Your Studio Infographic (Section 2) */
.gear3-studio-nodes-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 36px;
  position: relative;
}

.gear3-node-step {
  background: #ffffff;
  border-radius: var(--gear-radius-md);
  border: 1px solid rgba(242, 101, 34, 0.25);
  box-shadow: var(--gear-shadow-soft);
  padding: 22px 16px;
  text-align: center;
  transition: var(--gear-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.gear3-sec-dark .gear3-node-step {
  background: rgba(18, 30, 54, 0.9);
  border-color: rgba(242, 101, 34, 0.35);
  color: #ffffff;
}

.gear3-node-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--gear-shadow-elevated);
  border-color: var(--gear-orange);
}

.gear3-node-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gear-orange) 0%, #ff8548 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Interactive Lighting Lab (Section 3) */
.gear3-lighting-lab {
  background: #0f172a;
  border-radius: var(--gear-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(24px, 4vw, 40px);
  color: #ffffff;
  box-shadow: var(--gear-shadow-navy);
}

.gear3-lighting-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.gear3-lighting-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--gear-transition);
}

.gear3-lighting-btn:hover {
  border-color: var(--gear-orange);
  color: var(--gear-orange);
}

.gear3-lighting-btn.active {
  background: linear-gradient(135deg, var(--gear-orange) 0%, #ff8548 100%);
  border-color: var(--gear-orange);
  box-shadow: 0 4px 18px rgba(242, 101, 34, 0.4);
}

.gear3-lighting-viewport {
  background: #060c18;
  border-radius: var(--gear-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--gear-transition);
}

.gear3-lighting-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: var(--gear-transition);
}

.gear3-lighting-lab[data-light="front"] .gear3-lighting-aura {
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
}

.gear3-lighting-lab[data-light="side"] .gear3-lighting-aura {
  background: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.45) 0%, transparent 60%);
}

.gear3-lighting-lab[data-light="soft"] .gear3-lighting-aura {
  background: radial-gradient(circle at 50% 50%, rgba(255, 230, 200, 0.3) 0%, transparent 70%);
}

.gear3-lighting-lab[data-light="hard"] .gear3-lighting-aura {
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 45%);
}

.gear3-lighting-lab[data-light="warm"] .gear3-lighting-aura {
  background: radial-gradient(circle at 50% 40%, rgba(242, 101, 34, 0.35) 0%, transparent 65%);
}

.gear3-lighting-lab[data-light="cool"] .gear3-lighting-aura {
  background: radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.35) 0%, transparent 65%);
}

/* Interactive Backdrop Studio (Section 4) */
.gear3-backdrop-studio {
  background: #ffffff;
  border-radius: var(--gear-radius-xl);
  border: 1px solid var(--gear-slate-200);
  box-shadow: var(--gear-shadow-elevated);
  padding: clamp(24px, 4vw, 40px);
}

.gear3-backdrop-swatches {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.gear3-backdrop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--gear-transition);
}

.gear3-backdrop-btn[data-bg="white"] {
  background: #ffffff;
  color: #0b1528;
  border-color: #cbd5e1;
}

.gear3-backdrop-btn[data-bg="black"] {
  background: #0b1528;
  color: #ffffff;
  border-color: #334155;
}

.gear3-backdrop-btn[data-bg="gray"] {
  background: #94a3b8;
  color: #ffffff;
}

.gear3-backdrop-btn[data-bg="beige"] {
  background: #e2d9cc;
  color: #0b1528;
}

.gear3-backdrop-btn[data-bg="orange"] {
  background: #f26522;
  color: #ffffff;
}

.gear3-backdrop-btn.active {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.35), 0 6px 18px rgba(0, 0, 0, 0.15);
}

.gear3-backdrop-stage {
  border-radius: var(--gear-radius-lg);
  border: 1.5px solid var(--gear-slate-200);
  padding: 40px 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--gear-transition);
  position: relative;
}

/* Handheld vs Tripod Stability Demo (Section 5) */
.gear3-stability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gear3-stability-box {
  background: #ffffff;
  border-radius: var(--gear-radius-lg);
  border: 1px solid var(--gear-slate-200);
  box-shadow: var(--gear-shadow-soft);
  padding: 24px;
  position: relative;
}

.gear3-stability-box.is-tripod {
  border-color: rgba(242, 101, 34, 0.4);
  box-shadow: 0 14px 35px rgba(242, 101, 34, 0.12);
}

/* Studio Setup Scenes (Section 12) */
.gear3-scene-card {
  background: #ffffff;
  border-radius: var(--gear-radius-lg);
  border: 1px solid var(--gear-slate-200);
  box-shadow: var(--gear-shadow-soft);
  overflow: hidden;
  transition: var(--gear-transition);
  display: flex;
  flex-direction: column;
}

.gear3-scene-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gear-shadow-elevated);
  border-color: var(--gear-orange);
}

.gear3-scene-preview {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 28px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.gear3-scene-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: rgba(242, 101, 34, 0.85);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Interactive Hotspots Blueprint (Section 13) */
.gear3-hotspots-blueprint {
  background: #0b1528;
  border-radius: var(--gear-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(24px, 4vw, 40px);
  color: #ffffff;
  position: relative;
}

.gear3-hotspot-pin {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gear-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(242, 101, 34, 0.35);
  transition: var(--gear-transition);
}

.gear3-hotspot-pin:hover,
.gear3-hotspot-pin.active {
  transform: scale(1.15);
  background: #ff7e3e;
  box-shadow: 0 0 0 10px rgba(242, 101, 34, 0.45);
}

/* 9:16 Video / Reels Showcase (Section 14) */
.gear3-reels-stage {
  max-width: 420px;
  margin: 0 auto;
  background: #0f192c;
  border: 8px solid #233454;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 101, 34, 0.3);
  position: relative;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
}

.gear3-reel-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: #233454;
  border-radius: 12px;
  z-index: 5;
}

.gear3-reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(242, 101, 34, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: var(--gear-transition);
  z-index: 3;
}

.gear3-reel-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gear-orange);
}

/* Creator Kit Builder (Section 8) */
.gear3-kit-builder {
  background: #ffffff;
  border-radius: var(--gear-radius-xl);
  border: 1px solid rgba(242, 101, 34, 0.25);
  box-shadow: var(--gear-shadow-elevated);
  padding: clamp(24px, 4vw, 40px);
}

@media (max-width: 768px) {
  .gear3-stability-grid,
  .gear3-studio-elements-grid {
    grid-template-columns: 1fr;
  }
}
