/* ═══════════════════════════════════════════════════════
   WEBNATE — creator.css
   Professional Creator Section Styles
   ═══════════════════════════════════════════════════════ */

.creator-section {
  position: relative;
  z-index: 1;
  padding: 100px 28px;
  background: var(--bg-primary);
  overflow: hidden;
}

.creator-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* ─── LEFT: PROFILE IMAGE ─── */
.creator-visual {
  flex-shrink: 0;
  position: relative;
  width: 320px;
  margin-top: 20px;
}

.profile-frame {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.creator-visual:hover .profile-frame {
  transform: translateY(-10px) rotate(-2deg);
}

.creator-visual:hover .profile-img {
  transform: scale(1.1);
}

/* Decorative backdrop effects */
.visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  opacity: 0.6;
}

.visual-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  border: 1px solid var(--accent-dim);
  border-radius: 30%;
  animation: creatorFloat 10s infinite linear;
}

.shape-1 { width: 40px; height: 40px; top: -10px; right: -10px; }
.shape-2 { width: 60px; height: 60px; bottom: 20px; left: -30px; animation-delay: -5s; }

@keyframes creatorFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(120deg); }
  66% { transform: translate(-10px, 10px) rotate(240deg); }
}

/* ─── RIGHT: CONTENT ─── */
.creator-content {
  flex: 1;
}

.creator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  color: var(--accent-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.creator-name {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.creator-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.creator-bio {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

/* ─── SKILLS ─── */
.creator-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.skill-chip {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.skill-chip:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--text-primary);
  transform: translateY(-3px);
}

/* ─── SOCIALS ─── */
.creator-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.2, 1, 0.2, 1);
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 20px var(--accent-glow);
}

.connect-btn {
  margin-left: 10px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.connect-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .creator-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .creator-visual {
    width: 260px;
    height: 260px;
  }
  .creator-bio {
    margin: 0 auto 32px;
  }
  .creator-skills, .creator-socials {
    justify-content: center;
  }
  .creator-name {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .creator-name {
    font-size: 2.2rem;
  }
  .creator-visual {
    width: 200px;
    height: 200px;
  }
}
