/* ========================================
   PRAYUKTA HOMEPAGE ENHANCEMENTS
   Subtle visual polish - no animations
   ======================================== */

/* ----------------------------------------
   HERO SECTION - Visual Enhancements
   ---------------------------------------- */

/* Subtle gradient background layer */
.hero .hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(198, 97, 64, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(198, 97, 64, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Static gradient orb - no animation */
.hero .hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 97, 64, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero .hero-bg::after {
    width: 300px;
    height: 300px;
    right: 5%;
    top: 30%;
  }
}

@media (max-width: 768px) {
  .hero .hero-bg::after {
    display: none;
  }
}

/* ----------------------------------------
   PORTFOLIO CARDS - Visual Enhancements
   ---------------------------------------- */

/* Top divider line */
#portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Card hover effects */
.showcase-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 97, 64, 0.25);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.12);
}

/* Enhanced badges - static gradients */
.showcase-badge.success {
  background: linear-gradient(135deg, var(--success), #5C946E);
}

.showcase-badge.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.showcase-badge.light {
  background: linear-gradient(135deg, var(--gray-600), var(--gray-500));
}

/* Tech tag hover */
.tech-tag {
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tech-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ----------------------------------------
   ABOUT SECTION - Visual Enhancements
   ---------------------------------------- */

#about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198, 97, 64, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ----------------------------------------
   CONTACT SECTION - Visual Enhancements
   ---------------------------------------- */

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(198, 97, 64, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(198, 97, 64, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.contact-simple {
  position: relative;
  z-index: 1;
}

/* Contact links card style */
.contact-methods a {
  padding: var(--space-5) var(--space-8) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-xl) !important;
  transition: all 0.25s ease !important;
}

.contact-methods a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--primary) !important;
  transform: translateY(-3px);
}

.contact-methods a svg {
  color: var(--primary) !important;
  transition: transform 0.2s ease;
}

.contact-methods a:hover svg {
  transform: scale(1.05);
}

/* ----------------------------------------
   BUTTONS - Visual Enhancements
   ---------------------------------------- */

.btn-primary {
  box-shadow: 0 4px 12px rgba(198, 97, 64, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 6px 16px rgba(198, 97, 64, 0.35);
}

.btn-outline:hover {
  box-shadow: 0 4px 12px rgba(198, 97, 64, 0.15);
}

.btn svg {
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ----------------------------------------
   SIDEBAR - Visual Enhancements
   ---------------------------------------- */

/* Brand hover glow */
.sidebar-brand .brand-symbol {
  transition: text-shadow 0.3s ease;
}

.sidebar-brand:hover .brand-symbol {
  text-shadow: 0 0 16px rgba(198, 97, 64, 0.4);
}

/* Nav link indicator */
.sidebar-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.sidebar-nav-link:hover::before,
.sidebar-nav-link.active::before {
  transform: scaleY(1);
}

.sidebar-nav-link svg {
  transition: transform 0.2s ease;
}

.sidebar-nav-link:hover svg {
  transform: scale(1.08);
}

/* ----------------------------------------
   FOOTER - Visual Enhancements
   ---------------------------------------- */

/* Top gradient divider */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Link hover underline */
.link-group a {
  transition: color 0.2s ease !important;
}

.link-group a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.link-group a:hover::after {
  width: 100%;
}

/* ----------------------------------------
   LIGHT THEME ADJUSTMENTS
   ---------------------------------------- */

[data-theme="light"] .hero .hero-bg::after {
  background: radial-gradient(circle, rgba(198, 97, 64, 0.05) 0%, transparent 70%);
}

[data-theme="light"] .showcase-card:hover {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .contact-methods a {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .contact-methods a:hover {
  background: rgba(0, 0, 0, 0.04) !important;
}
