/* NEW HERO SECTION STYLES - Premium Upgrades */

/* Hire Me Button - Premium CTA */
.btn-hire-me {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(212, 175, 55, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.2) inset;
  transition: all var(--transition-premium);
  cursor: none;
  letter-spacing: 0.02em;
}

.btn-hire-me::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-hire-me:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(212, 175, 55, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.4) inset;
}

.btn-hire-me:hover::before {
  opacity: 1;
}

.btn-hire-me i {
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.btn-hire-me:hover i {
  transform: translateX(4px);
}

/* Desktop: Hide hire-me btn, show on mobile */
@media (max-width: 1024px) {
  .btn-hire-me {
    display: none;
  }
}

/* Hero Availability Badge */
.hero-availability-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #22c55e;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 48px;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

@keyframes badgePulse {
  0%, 100% { 
    box-shadow: 
      0 8px 32px rgba(34, 197, 94, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% { 
    box-shadow: 
      0 12px 40px rgba(34, 197, 94, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.hero-availability-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.hero-availability-badge:hover::before {
  opacity: 1;
}

.avail-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.3);
    opacity: 0.8;
  }
}

.hero-availability-badge:hover {
  border-color: #22c55e;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.08));
}

/* Avatar Status Ring - Clean Premium Design */
.avatar-status-ring {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.avatar-status-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(212, 175, 55, 0.2));
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
  transition: opacity var(--transition-normal);
}

.avatar-status-ring:hover::before {
  opacity: 0.9;
}

/* Frame Skills Pills */
.frame-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  max-width: 220px;
}

.skill-pill {
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--accent-gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.skill-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.skill-pill:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.skill-pill:hover::before {
  opacity: 1;
}

/* Frame Availability */
.frame-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 24px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: #22c55e;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  max-width: 200px;
}

.avail-dot-green {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: smallDotPulse 1.8s ease-in-out infinite;
}

@keyframes smallDotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.frame-availability strong {
  color: #22c55e;
}

/* Frame Socials */
.frame-socials {
  display: flex;
  gap: 12px;
}

.frame-social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.frame-social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-purple);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.frame-social-btn:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
}

.frame-social-btn:hover::before {
  opacity: 1;
}

/* Stat Plus Enhancement */
.stat-plus {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent-gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-left: -4px;
  animation: plusPulse 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes plusPulse {
  0%, 100% { 
    transform: scale(1) translateY(0);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  }
  50% { 
    transform: scale(1.15) translateY(-2px);
    text-shadow: 
      0 0 16px rgba(212, 175, 55, 0.6),
      0 0 24px rgba(212, 175, 55, 0.3);
  }
}

/* Mobile: Hide hire-me btn on small screens */
@media (max-width: 768px) {
  .btn-hire-me {
    display: none !important;
  }
}

/* Ensure frame-title shows on desktop */
@media (min-width: 769px) {
  .frame-title {
    display: block !important;
  }
}

/* Hide frame-title on mobile now */
@media (max-width: 768px) {
  .frame-title {
    display: none !important;
  }
}

/* ============================================
   MOBILE HERO CIRCULAR PHOTO FRAME
   Aesthetic circular frame visible only on mobile
   ============================================ */

/* Hide mobile frame on desktop */
.mobile-hero-frame {
  display: none;
}

/* Show mobile frame only on phones/tablets */
@media (max-width: 1024px) {
  .mobile-hero-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    padding: 20px 0;
  }

  .mobile-frame-ring {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Stable gradient border ring */
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold), var(--accent-purple-light), var(--accent-gold));
    background-size: 300% 300%;
    box-shadow: 
      0 0 40px rgba(124, 58, 237, 0.4),
      0 0 80px rgba(212, 175, 55, 0.2);
  }

  .mobile-frame-ring::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: var(--bg-primary);
    z-index: 1;
  }

.mobile-frame-inner {
    position: relative;
    z-index: 2;
    width: 234px;
    height: 234px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(15, 15, 25, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .mobile-frame-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow:
      0 0 40px rgba(124, 58, 237, 0.25),
      0 0 80px rgba(212, 175, 55, 0.12);
  }

  /* keep initials as fallback if image fails */
  .mobile-frame-initials {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--accent-purple-light), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    animation: initials-glow 3s ease-in-out infinite alternate;
    position: absolute;
    z-index: 3;
    display: none;
  }

  /* Secondary decorative ring */
  .mobile-frame-ring::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    pointer-events: none;
  }

  @keyframes mobile-ring-pulse {
    0%, 100% { 
      transform: scale(1);
      opacity: 0.5;
    }
    50% { 
      transform: scale(1.08);
      opacity: 1;
    }
  }

  @keyframes initials-glow {
    0% { 
      filter: drop-shadow(0 0 4px rgba(124, 58, 237, 0.3));
    }
    100% { 
      filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
    }
  }

  /* Smaller phones */
  @media (max-width: 480px) {
    .mobile-frame-ring {
      width: 234px;
      height: 234px;
    }

    .mobile-frame-inner {
      width: 200px;
      height: 200px;
    }

    .mobile-frame-photo {
      box-shadow:
        0 0 32px rgba(124, 58, 237, 0.25),
        0 0 60px rgba(212, 175, 55, 0.12);
    }

    .mobile-frame-initials {
      font-size: 2.2rem;
    }
  }
}

