/* 
 * Pre-Session Screen Styles
 * 
 * Brand-specific styles only. Bootstrap handles most layout, spacing, and components.
 * Use Bootstrap utilities wherever possible.
 */

/* Pre-session screen background - brand gradient */
.pre-session-screen {
  background: linear-gradient(135deg, #006D8F 0%, #AA00CC 100%);
}

/* Pre-session card - brand-specific backdrop blur */
.pre-session-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.pre-session-title {
  color: white;
  font-weight: 700;
  font-size: 1.75rem;
}

.pre-session-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

/* Progress bar - brand-specific styling */
.pre-session-progress-container {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
}

.pre-session-progress-bar {
  background: linear-gradient(135deg, #ffe29f 0%, #ffa99f 48%, #fa709a 100%);
  transition: width 0.1s linear;
  will-change: width;
  border-radius: 999px;
}

/* Fit check section - brand-specific styling */
.fit-check-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffec8b;
  text-shadow: 0 0 12px rgba(255, 236, 139, 0.6);
}

.fit-check-video-wrapper {
  width: 520px;
  max-width: 100%;
  height: 390px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}

.fit-check-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

/* Audio controls - brand-specific styling */
.audio-toggle-button {
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.audio-toggle-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  color: white;
}

.audio-toggle-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .fit-check-video-wrapper {
    width: 100%;
    height: 280px;
  }
  
  .pre-session-title {
    font-size: 1.5rem;
  }
  
  .pre-session-subtitle {
    font-size: 1.1rem;
  }
}
