/* ===== WORK WITH US PAGE ===== */

/* Hero */
.wwu-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.wwu-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center 30%/cover no-repeat;
}
.wwu-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.6) 40%, var(--black) 100%),
    radial-gradient(ellipse at center, rgba(255,20,147,0.06) 0%, transparent 60%);
}

.wwu-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 3rem;
}

.wwu-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 1.2rem 0 1.5rem;
}

.wwu-hero-sub {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Intro strip */
.wwu-intro {
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wwu-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wwu-intro-item {
  text-align: center;
  padding: 1.5rem;
}

.wwu-intro-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.8rem;
}

.wwu-intro-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.wwu-intro-item p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
}

/* Section */
.wwu-section {
  padding: 4rem 3rem 6rem;
  position: relative;
}
.wwu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,20,147,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.wwu-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  position: relative;
}

/* Form — reuses shared form classes from contact.css */
.wwu-form {
  position: relative;
}

.form-group-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.form-group-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
  opacity: 0.6;
}

.form-group-header h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.form-group-header p {
  font-size: 0.8rem;
  color: var(--grey);
}

.form-divider {
  width: 60px;
  height: 1px;
  background: var(--pink);
  opacity: 0.3;
  margin: 2.5rem 0;
}

/* Form Fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
}

.form-field .required {
  color: var(--pink);
}

.photo-hint {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--grey-dark);
  font-size: 0.65rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pink);
  background: rgba(255,20,147,0.04);
  box-shadow: 0 0 0 1px rgba(255,20,147,0.1);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(255,255,255,0.2);
}

.form-field input.field-error,
.form-field select.field-error,
.form-field textarea.field-error {
  border-color: #ff4444;
  background: rgba(255,68,68,0.04);
}

/* Input with @ prefix (social handles) */
.input-with-prefix {
  position: relative;
  display: flex;
  align-items: stretch;
}

.input-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  user-select: none;
}

.input-with-prefix input {
  border-left: none;
  flex: 1;
}

.input-with-prefix input:focus {
  border-left: none;
}

.input-with-prefix:focus-within .input-prefix {
  border-color: var(--pink);
  background: rgba(255,20,147,0.06);
}

/* Select wrapper */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 0.8rem;
  pointer-events: none;
}

.select-wrap select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field select option {
  background: #1a1a1a;
  color: var(--white);
  padding: 0.5rem;
}

/* Textarea */
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ===== File Upload ===== */
.file-upload-area {
  position: relative;
  border: 2px dashed rgba(255,255,255,0.12);
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
}

.file-upload-area:hover {
  border-color: rgba(255,20,147,0.3);
  background: rgba(255,20,147,0.03);
}

.file-upload-area.drag-over {
  border-color: var(--pink);
  background: rgba(255,20,147,0.06);
}

.file-upload-area.files-maxed {
  opacity: 0.5;
  pointer-events: none;
}

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

.file-upload-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.file-upload-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}

.file-upload-browse {
  color: var(--pink);
  text-decoration: underline;
  cursor: pointer;
}

.file-upload-hint {
  font-size: 0.7rem;
  color: var(--grey-dark);
}

/* File Previews */
.file-preview-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.file-preview-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s ease;
}

.file-preview-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.file-thumb {
  width: 48px;
  height: 48px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.file-name {
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size {
  font-size: 0.65rem;
  color: var(--grey-dark);
}

.file-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,68,68,0.1);
  border: 1px solid rgba(255,68,68,0.2);
  color: #ff6666;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}

.file-remove:hover {
  background: rgba(255,68,68,0.2);
  border-color: rgba(255,68,68,0.4);
  color: #ff4444;
}

/* Submit */
.form-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.btn-submit {
  min-width: 280px;
  position: relative;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-note {
  font-size: 0.75rem;
  color: var(--grey-dark);
  margin-top: 1rem;
}

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 3rem 2rem;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--pink);
  margin: 0 auto 2rem;
  animation: confirmPop 0.5s ease-out;
}

@keyframes confirmPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.confirmation h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.confirmation > p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.confirmation-details {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  max-width: 450px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row span:first-child {
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.detail-row span:last-child {
  color: var(--white);
  font-weight: 500;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* Sidebar */
.wwu-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.sidebar-card.highlight {
  background: rgba(255,20,147,0.04);
  border-color: rgba(255,20,147,0.15);
}

.sidebar-card.highlight h3 {
  color: var(--pink);
}

.sidebar-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-perks li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

.sidebar-perks li:last-child {
  border-bottom: none;
}

.sidebar-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.sidebar-venue {
  margin-bottom: 1rem;
}

.sidebar-venue:last-child {
  margin-bottom: 0;
}

.sidebar-venue strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.sidebar-venue p {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
}

.hours {
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 0.4rem;
}

/* Social links in sidebar */
.sidebar-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-social-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-social-link:last-child {
  border-bottom: none;
}

.sidebar-social-link span:first-child {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.social-handle {
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 500;
}

.sidebar-social-link:hover .social-handle {
  color: #ff3da6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .wwu-container {
    grid-template-columns: 1fr;
  }

  .wwu-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .wwu-section {
    padding: 2rem 1.5rem 4rem;
  }

  .wwu-intro-inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .wwu-intro-item {
    padding: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wwu-sidebar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wwu-hero-content {
    padding: 7rem 1.5rem 2rem;
  }

  .wwu-hero-content h1 {
    font-size: 2rem;
  }

  .btn-submit {
    width: 100%;
  }

  .confirmation-actions {
    flex-direction: column;
    align-items: center;
  }

  .file-upload-area {
    padding: 1.5rem 1rem;
  }
}
