/* Web-specific styles for Flippi.ai branding */
/* These styles only apply on web browsers */

body, html {
  min-height: 100vh;
  background: linear-gradient(135deg, #4A5A5F 0%, #23292C 100%);
  margin: 0;
  padding: 0;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
  background: none;
}

.card-panel {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44, 104, 208, 0.10), 0 1.5px 6px rgba(35,41,44,0.08);
  padding: 48px 32px 32px 32px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.card-panel:hover {
  box-shadow: 0 12px 40px rgba(44, 104, 208, 0.16), 0 2px 8px rgba(35,41,44,0.10);
}

h1, .headline {
  font-size: 2.8rem;
  font-weight: 700;
  color: #23292C;
  margin-bottom: 0.5em;
  letter-spacing: -1px;
  text-align: center;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: #4A5A5F;
  margin-bottom: 1.5em;
  text-align: center;
}

.brand-button-primary, .brand-button-secondary {
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 16px 36px;
  box-shadow: 0 2px 8px rgba(52,120,246,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.brand-button-primary {
  background: #000000; /* Black for primary CTAs */
  color: #FFFFFF; /* White text */
  border: none;
  font-weight: 600;
}

.brand-button-primary:hover {
  background: #111827; /* Subtle darkening on hover */
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: translateY(-2px) scale(1.03);
}

.brand-button-secondary {
  background: #000000; /* Black for secondary actions too */
  color: #fff;
  border: none;
}

.brand-button-secondary:hover {
  background: #111827; /* Subtle darkening on hover */
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: translateY(-2px) scale(1.03);
}

.upload-area, .results-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35,41,44,0.08);
  border: none;
  padding: 32px 24px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
}

.upload-area:hover, .results-card:hover {
  box-shadow: 0 6px 24px rgba(52,120,246,0.10);
}

.upload-icon {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.upload-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #23292C;
  margin-bottom: 0.2em;
}

.upload-hint {
  font-size: 1rem;
  color: #4A5A5F;
  margin-bottom: 1.2em;
}

.analyzing {
  font-size: 1.1rem;
  color: #000000; /* Black for analyzing state */
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Web-specific font loading - using system fonts for better performance */
/* Removed Google Fonts import to use native system fonts */

/* Ensure proper font stack and smoothing on web */
* {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Web-specific layout improvements */
@media (min-width: 768px) {
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .upload-area {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .upload-buttons {
    gap: 16px;
  }
}

/* Web-specific scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F5F6F7;
}

::-webkit-scrollbar-thumb {
  background: #1F2937; /* Slate for scrollbar */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4A5A5F;
}

/* Web-specific focus states for accessibility */
.brand-button:focus,
.upload-area:focus {
  outline: 2px solid #000000; /* Black focus outline */
  outline-offset: 2px;
}

/* Web-specific loading animations */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Web-specific image preview improvements */
.image-preview {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.image-preview:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Web-specific results card improvements */
.results-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.results-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Web-specific score badges */
.score-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.score-badge.high {
  background-color: rgba(29, 92, 90, 0.1);
  color: #1D5C5A;
}

.score-badge.medium {
  background-color: rgba(153, 107, 61, 0.1);
  color: #996B3D;
}

.score-badge.low {
  background-color: rgba(138, 138, 138, 0.1);
  color: #8A8A8A;
} 