/* Spoken Photos — minimal splash styles */
/* Theme matches Flutter app (mobile_app/lib/core/theme.dart) */

:root {
  --color-primary: #C67D5E;
  --color-background: #FAF8F5;
  --color-on-surface: #3A3632;
  --color-on-surface-variant: rgba(58, 54, 50, 0.7);
  --color-success: #7CAF7C;
  --color-error: #D96E6E;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
}

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

html, body {
  height: 100%;
}

body.splash-body {
  font-family: var(--font-body);
  color: var(--color-on-surface);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

.splash {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  flex: 1;
  justify-content: center;
}

.splash-logo {
  margin-bottom: var(--spacing-lg);
}

.splash-state {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-state[hidden] {
  display: none;
}

.splash-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-on-surface);
  margin-bottom: var(--spacing-md);
}

.splash-tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-on-surface-variant);
}

.confirm-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.confirm-check.error {
  background: var(--color-error);
}

.confirm-check svg {
  width: 36px;
  height: 36px;
}

.splash-footer {
  padding-top: var(--spacing-lg);
  color: var(--color-on-surface-variant);
  font-size: 0.8125rem;
}
