
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.brand-value {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #FFE0E0;
}

.brand-value h2 {
  color: #FF6B6B;
  font-weight: 600;
  margin: 0 0 8px 0;
  font-size: 28px;
}

.brand-value p {
  color: #666;
  margin: 0;
  font-size: 18px;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background-color: white;
}

select:focus {
  outline: none;
  border-color: #FF9472;
  box-shadow: 0 0 0 2px rgba(255, 148, 114, 0.1);
}

.pitch-button {
  background-color: #FF6B6B;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
  transition: all 0.2s ease;
}

.pitch-button:hover {
  background-color: #FF5252;
  transform: translateY(-1px);
}

.pitch-output {
  margin-top: 25px;
  padding: 20px;
  border: none;
  border-radius: 8px;
  min-height: 100px;
  background-color: #FFF5E1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
}

.pitch-output p {
  margin: 12px 0;
}

.pitch-output p:last-child {
  margin-top: 20px;
  color: #666;
}

.copy-button {
  background-color: #6C5CE7;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.2);
  transition: all 0.2s ease;
}

.copy-button:hover {
  background-color: #5D4FD6;
  transform: translateY(-1px);
}

.order-button {
  display: inline-block;
  background-color: #FF6B6B;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
  transition: all 0.2s ease;
}

.order-button:hover {
  background-color: #FF5252;
  transform: translateY(-1px);
}

.cta-button {
  display: inline-block;
  background-color: #FF6B6B;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #FF5252;
  transform: translateY(-1px);
}
