/* ==========================================================================
   Create New Event Stylesheet
   ========================================================================== */

.create-hero {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%),
              url('/images/hero-bg.jpg') center/cover no-repeat;
  padding: 8rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0.5rem 0 1rem;
}

.hero-description {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Process Explanation Banner */
.process-banner {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(229, 35, 41, 0.3);
  border-left: 5px solid var(--primary-red);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.process-icon {
  font-size: 2.25rem;
  color: var(--primary-red);
  background: rgba(229, 35, 41, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.process-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.process-highlight {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 500;
}

/* Submission Form Card */
.form-card {
  background: #141414;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.required-star {
  color: var(--primary-red);
  font-weight: 700;
}

.optional-tag {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
}

/* Form Sections */
.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.section-badge {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Grids & Inputs */
.form-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.form-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #d1d5db;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background-color: #1f1f1f;
  border: 1px solid #333333;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(229, 35, 41, 0.2);
  background-color: #252525;
}

.form-control::placeholder {
  color: #6b7280;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

/* File Upload Boxes */
.file-upload-box {
  position: relative;
  background: #1f1f1f;
  border: 2px dashed #333333;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-box:hover {
  border-color: var(--primary-red);
  background: rgba(229, 35, 41, 0.05);
}

.file-upload-box i {
  font-size: 1.75rem;
  color: var(--primary-red);
}

.file-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  word-break: break-all;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Actions & Response Messages */
.form-actions {
  margin-top: 2rem;
}

.submission-response {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  animation: fadeIn 0.4s ease;
}

.submission-response.hidden {
  display: none;
}

.submission-response.success-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.submission-response.error-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.response-icon {
  font-size: 1.75rem;
}

.response-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.meta-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .form-grid.two-col,
  .form-grid.three-col {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.75rem;
  }

  .process-banner {
    flex-direction: column;
  }
}
