/* Upload Page Specific Styles */

/* Style buttons background images */
.style-btn.style-1 {
  background-image: url('/static/img/placeholder.png');
  background-size: cover;
  background-position: center;
}
.style-btn.style-2 {
  background-image: url('/static/img/pixar.png');
  background-size: cover;
  background-position: center;
}
.style-btn.style-3 {
  background-image: url('/static/img/cartoon.png');
  background-size: cover;
  background-position: center;
}
.style-btn.style-4 {
  background-image: url('/static/img/anime.png');
  background-size: cover;
  background-position: center;
}

/* How It Works Section */
.how-it-works {
  max-width: 900px;
  margin: 4em auto 2em;
  padding: 2.5em 1.5em;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.how-it-works h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #333;
}
.how-it-works-subtitle {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 2.5em;
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-bottom: 3em;
}
.step {
  padding: 1.5em;
}
.step-icon {
  font-size: 3em;
  margin-bottom: 0.5em;
}
.step h3 {
  font-size: 1.3em;
  margin: 0.5em 0;
  color: #333;
}
.step p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95em;
}

/* Use Cases Section */
.use-cases {
  max-width: 1000px;
  margin: 3em auto 4em;
  padding: 0 1.5em;
  text-align: center;
}
.use-cases h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #333;
}
.use-cases-subtitle {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 2.5em;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
}
.use-case {
  background: #fff;
  padding: 2em 1.5em;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.use-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.use-case-icon {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
.use-case h3 {
  font-size: 1.2em;
  margin: 0.5em 0;
  color: #333;
}
.use-case p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95em;
}
