/* ============================================================
   CrowdCut Improvements - Round 2 Styles
   - Profile pages (artist/venue)
   - QR code display
   - Email notification form
   - Social share buttons
   - Verified badge
   ============================================================ */

/* ── Profile Pages (Artist/Venue) ─────────────────────── */
.profile-page {
  min-height: 100vh;
}

.profile-hero {
  padding: 120px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,1) 100%);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.profile-hero-content {
  max-width: 700px;
}

.profile-name {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ff2d78;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  vertical-align: middle;
  margin-left: 8px;
}

.profile-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #8b8b9e;
  font-size: 14px;
  flex-wrap: wrap;
}

.profile-tag {
  background: rgba(255, 45, 120, 0.15);
  color: #ff2d78;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

.profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.profile-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #ff2d78;
}

.profile-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b8b9e;
}

.profile-events {
  padding: 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
}

.profile-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.profile-event-card {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: #f0f0f5;
  transition: background 0.2s, border-color 0.2s;
}

.profile-event-card:hover {
  background: rgba(255, 45, 120, 0.05);
  border-color: rgba(255, 45, 120, 0.2);
}

.profile-event-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.profile-event-info {
  flex: 1;
  min-width: 0;
}

.profile-event-name {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.profile-event-meta {
  font-size: 13px;
  color: #8b8b9e;
}

/* ── Event Enhancements Section ─────────────────────────── */
.event-enhancements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.enh-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #f0f0f5;
}

.enh-desc {
  font-size: 13px;
  color: #8b8b9e;
  margin: 0 0 16px;
  line-height: 1.4;
}

/* ── QR Code ────────────────────────────────────────────── */
.event-qr-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px;
}

.qr-display {
  text-align: center;
  margin-bottom: 14px;
}

.qr-image {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  border: 2px solid rgba(255, 45, 120, 0.3);
}

.qr-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* ── Email Notification ─────────────────────────────────── */
.event-notify-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px;
}

.notify-form {
  display: flex;
  gap: 8px;
}

.notify-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #f0f0f5;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.notify-input:focus {
  border-color: #ff2d78;
}

.notify-input::placeholder {
  color: #5a5a6e;
}

.notify-status {
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}

/* ── Social Share ───────────────────────────────────────── */
.event-share-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f0f0f5;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.share-btn:hover {
  background: rgba(255, 45, 120, 0.1);
  border-color: rgba(255, 45, 120, 0.3);
  color: #ff2d78;
}

.share-x:hover { color: #f0f0f5; background: rgba(255,255,255,0.1); }
.share-fb:hover { color: #1877f2; }

/* ── Venue Mini Map ─────────────────────────────────────── */
.venue-map-mini {
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* ── Mobile Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .profile-name {
    font-size: 28px;
  }
  
  .profile-stats-row {
    gap: 24px;
  }
  
  .profile-stat-num {
    font-size: 22px;
  }
  
  .profile-events-grid {
    grid-template-columns: 1fr;
  }
  
  .event-enhancements {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  
  .profile-hero {
    padding: 80px 16px 40px;
    min-height: 220px;
  }
  
  .verified-badge {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
}
