@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg-gradient: linear-gradient(135deg, #1b0a07 0%, #2c1209 40%, #150604 100%);
  --card-bg: rgba(255, 250, 245, 0.94);
  --card-border: rgba(255, 240, 230, 0.4);
  --primary-text: #2a0b04;
  --secondary-text: #6b2e1f;
  --muted-text: #965a4c;
  --accent-gold: #d4af37;
  --accent-rose: #e15b64;
  --accent-amber: #f4a261;
  --accent-emerald: #2a9d8f;
  --accent-violet: #8a4fff;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 12px 35px rgba(126, 38, 12, 0.25);
  --font-heading: "Cinzel", Georgia, serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: #0f0504;
  color: #fceee9;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Animated Glows */
.ambient-glow-1 {
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(126, 38, 12, 0.25) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

.ambient-glow-2 {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(138, 79, 255, 0.12) 0%, rgba(225, 91, 100, 0.15) 50%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

@keyframes pulseGlow {
  0% { transform: translateX(-50%) scale(1); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* Main Container Card */
.bio-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  min-height: 100vh;
  background: rgba(22, 9, 7, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(255, 220, 200, 0.08);
  border-right: 1px solid rgba(255, 220, 200, 0.08);
  box-shadow: 0 0 50px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
}

/* Header & Cover Banner */
.cover-container {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.9);
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(22, 9, 7, 0.95) 100%);
}

/* Profile Section */
.profile-header {
  position: relative;
  margin-top: -65px;
  padding: 0 24px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-wrapper {
  position: relative;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-gold), #b87333, var(--accent-rose));
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avatar-wrapper:hover {
  transform: scale(1.05) rotate(2deg);
}

.avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #160907;
}

.verified-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: var(--accent-gold);
  color: #1a0804;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid #160907;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.name-heading {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 700;
  color: #fff4ee;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.handle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: lowercase;
}

.bio-tagline {
  font-size: 0.95rem;
  color: #d1bab3;
  line-height: 1.5;
  max-width: 380px;
  margin-bottom: 18px;
}

/* Social Bar */
.social-bar {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 240, 235, 0.08);
  border: 1px solid rgba(255, 240, 235, 0.15);
  color: #fceee9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon-btn:hover {
  background: var(--accent-gold);
  color: #1a0804;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Links Section */
.links-section {
  padding: 0 20px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--primary-text);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.link-card[data-badge="rose"]::before { background: var(--accent-rose); }
.link-card[data-badge="amber"]::before { background: var(--accent-amber); }
.link-card[data-badge="emerald"]::before { background: var(--accent-emerald); }
.link-card[data-badge="violet"]::before { background: var(--accent-violet); }

.link-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-hover);
  background: #ffffff;
}

.link-card:hover::before {
  opacity: 1;
}

.link-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

.link-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-text);
  line-height: 1.35;
}

.badge {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(126, 38, 12, 0.08);
  color: var(--secondary-text);
  white-space: nowrap;
}

.badge-gold { background: rgba(212, 175, 55, 0.2); color: #7a5c00; }
.badge-rose { background: rgba(225, 91, 100, 0.15); color: #a8232c; }
.badge-amber { background: rgba(244, 162, 97, 0.2); color: #a44e08; }
.badge-emerald { background: rgba(42, 157, 143, 0.18); color: #0d5a50; }
.badge-violet { background: rgba(138, 79, 255, 0.15); color: #531cbd; }

.link-subtitle {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.4;
}

/* Promo Code Box */
.promo-box {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(126, 38, 12, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.copy-btn {
  background: #f4ece6;
  border: 1px solid rgba(126, 38, 12, 0.2);
  color: var(--primary-text);
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: var(--primary-text);
  color: #fff;
}

/* Footer */
.footer {
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  color: #8c6a62;
  border-top: 1px solid rgba(255, 220, 200, 0.06);
}

.footer a {
  color: var(--accent-gold);
  text-decoration: none;
}

/* Copy Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a0804;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 99;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  body {
    padding: 30px 0;
  }
  .bio-wrapper {
    min-height: auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 220, 200, 0.15);
    overflow: hidden;
  }
}

/* Nav Header */
.nav-header {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

.back-btn {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.back-btn:hover {
  background: var(--accent-gold);
  color: #1a0804;
  border-color: var(--accent-gold);
}

/* Sections */
.section-container {
  padding: 0 20px 28px 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff4ee;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: var(--accent-gold);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255, 250, 245, 0.06);
  border: 1px solid rgba(255, 240, 230, 0.12);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 250, 245, 0.12);
  transform: translateY(-2px);
  border-color: var(--accent-gold);
}

.stat-icon {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.75rem;
  color: #cbb4ac;
  font-weight: 500;
}

/* Services */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  background: rgba(255, 250, 245, 0.94);
  border: 1px solid rgba(255, 240, 230, 0.4);
  border-radius: 16px;
  padding: 18px;
  color: var(--primary-text);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-text);
}

.service-desc {
  font-size: 0.85rem;
  color: var(--secondary-text);
  line-height: 1.45;
}

/* Inquiry Form */
.inquiry-intro {
  font-size: 0.88rem;
  color: #d1bab3;
  margin-bottom: 16px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 250, 245, 0.08);
  border: 1px solid rgba(255, 240, 230, 0.18);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.25s ease;
}

.form-group select option {
  background: #1e0b08;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 250, 245, 0.15);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-gold), #b87333);
  border: none;
  color: #1a0804;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 6px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1);
}

/* Form Submitting Lock & Success Card */
.form-submitting {
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-card {
  background: rgba(42, 157, 143, 0.15);
  border: 1px solid var(--accent-emerald);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  margin-top: 10px;
  backdrop-filter: blur(15px);
  animation: fadeIn 0.4s ease;
}

.success-icon {
  font-size: 2.5rem;
  color: var(--accent-emerald);
  margin-bottom: 12px;
}

.success-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 8px;
}

.success-card p {
  font-size: 0.9rem;
  color: #d1bab3;
  line-height: 1.5;
}

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