/*--------------------------------------------------------------
# Modern UX/UI Portfolio Styles
# Chris Heredia - Angular Expert & AWS Cloud Engineer
--------------------------------------------------------------*/

:root {
  --bg-dark: #0b0f19;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(26, 35, 54, 0.9);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-card-active: rgba(221, 0, 49, 0.4);

  --primary: #dd0031;        /* Angular Red */
  --primary-glow: rgba(221, 0, 49, 0.35);
  --aws-orange: #ff9900;     /* AWS Gold/Orange */
  --aws-glow: rgba(255, 153, 0, 0.25);
  --accent-cyan: #06b6d4;     /* Cyan/Blue Tech */

  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #a1a1aa;
  --text-heading: #ffffff;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-dark: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-hover: #ffffff;
  --border-card: rgba(15, 23, 42, 0.15);
  --border-card-active: rgba(190, 18, 60, 0.5);

  --primary: #be123c;
  --primary-glow: rgba(190, 18, 60, 0.2);
  --aws-orange: #b45309;
  --aws-glow: rgba(180, 83, 9, 0.2);
  --accent-cyan: #026597;

  --text-main: #0f172a;
  --text-muted: #334155;
  --text-dim: #475569;
  --text-heading: #0f172a;
}

/* Base Body Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(at 0% 0%, rgba(221, 0, 49, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255, 153, 0, 0.06) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(6, 182, 212, 0.05) 0px, transparent 50%);
  background-attachment: fixed;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

[data-theme="light"] body {
  background-image:
    radial-gradient(at 0% 0%, rgba(221, 0, 49, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(217, 119, 6, 0.05) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(2, 132, 199, 0.05) 0px, transparent 50%);
}

a {
  color: #026597;
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: #03496d;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-heading);
  font-weight: 700;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--aws-orange) 50%, var(--accent-cyan) 100%);
  width: 100%;
  z-index: 9999;
  box-shadow: 0 0 10px var(--primary-glow);
  transform-origin: left center;
  animation: scrollProgressGrow linear auto;
  animation-timeline: scroll(root block);
}

@keyframes scrollProgressGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Back to Top Button */
@keyframes backToTopReveal {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  color: var(--text-main);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  animation: backToTopReveal linear auto both;
  animation-timeline: scroll(root block);
  animation-range: 150px 350px;
}

.back-to-top i {
  font-size: 24px;
  color: #38bdf8;
}

[data-theme="light"] .back-to-top i {
  color: #026597;
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.back-to-top:hover i {
  color: #fff;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 3px solid rgba(221, 0, 49, 0.2);
  border-top-color: var(--primary);
  border-right-color: var(--aws-orange);
  border-radius: 50%;
  animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Navigation Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition-smooth);
}

.nav-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  padding: 12px 18px;
  margin-bottom: 12px;
  font-size: 15px;
  border-radius: 16px;
  background: rgba(18, 24, 38, 0.7);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  transition: var(--transition-fast);
  height: 52px;
  width: 52px;
  overflow: hidden;
  white-space: nowrap;
}

.nav-menu a i {
  font-size: 22px;
  min-width: 22px;
  margin-right: 12px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.nav-menu a span {
  opacity: 0;
  transition: opacity 0.3s;
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu .active {
  width: 170px;
  color: #ffffff;
  background: rgba(221, 0, 49, 0.15);
  border-color: rgba(221, 0, 49, 0.5);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.nav-menu a:hover i,
.nav-menu .active i {
  color: var(--primary);
}

.nav-menu a:hover span,
.nav-menu .active span {
  opacity: 1;
}

.gsap-switch-link:hover, .gsap-switch-link.active {
  background: rgba(255, 153, 0, 0.15) !important;
  border-color: rgba(255, 153, 0, 0.5) !important;
  box-shadow: 0 8px 24px var(--aws-glow) !important;
}

.gsap-switch-link:hover i, .gsap-switch-link.active i {
  color: var(--aws-orange) !important;
}

@media (max-width: 991px) {
  #header {
    width: 260px;
    background: rgba(11, 15, 25, 0.95);
    border-right: 1px solid var(--border-card);
    left: -260px;
  }
  .nav-menu a {
    width: 100% !important;
  }
  .nav-menu a span {
    opacity: 1 !important;
  }
  body.mobile-nav-active #header {
    left: 0;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 90px;
  }
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 24px;
  cursor: pointer;
  border-radius: 12px;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
}

/* Floating Theme Switcher Button */
.theme-toggle-btn {
  position: fixed;
  top: 15px;
  right: 70px;
  z-index: 9998;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 18px;
  cursor: pointer;
  border-radius: 12px;
  padding: 8px 14px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.theme-toggle-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-2px);
  color: var(--primary);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.theme-toggle-btn .theme-btn-text {
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 576px) {
  .theme-toggle-btn {
    right: 65px;
    padding: 8px 10px;
  }
  .theme-toggle-btn .theme-btn-text {
    display: none;
  }
}

/* Hero Section */
#hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.88) 0%, rgba(15, 23, 42, 0.82) 100%), url("../img/hero-bg.webp") top right / cover no-repeat;
  background-attachment: fixed;
}

.hero-container {
  max-width: 900px;
}

.version-badge-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.badge-tech {
  background: rgba(221, 0, 49, 0.15);
  border: 1px solid rgba(221, 0, 49, 0.4);
  color: #ff4d6d;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.badge-version-toggle {
  background: rgba(255, 153, 0, 0.15);
  border: 1px solid rgba(255, 153, 0, 0.4);
  color: #ffb703;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.badge-version-toggle:hover {
  background: rgba(255, 153, 0, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--aws-glow);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 25px;
}

.hero-subtitle .typed {
  color: #38bdf8;
  font-weight: 700;
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tech-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.tech-pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}

/* Custom Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 25px var(--primary-glow);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--primary-glow);
  color: #ffffff;
}

.btn-outline-custom {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-main) !important;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.btn-outline-custom:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-accent-custom {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 25px var(--aws-glow);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.btn-accent-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--aws-glow);
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 22px;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-actions .btn {
    width: 100%;
    margin-bottom: 12px;
    justify-content: center;
  }
}

/* Sections General */
section {
  padding: 90px 0;
  position: relative;
}

.section-bg {
  background: rgba(15, 23, 42, 0.4);
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--aws-orange));
  border-radius: 2px;
  margin-top: 8px;
}

.section-title .lead-text,
.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
}

/* About Section */
.profile-card {
  position: relative;
  display: inline-block;
}

.profile-img {
  border: 2px solid var(--border-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-width: 280px;
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-img {
  transform: scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 25px 50px var(--primary-glow);
}

.profile-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.stats-grid .stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.stats-grid .stat-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #38bdf8;
  font-family: var(--font-mono);
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Skills Section */
.skill-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.skill-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--border-card), transparent);
  transition: var(--transition-smooth);
}

.skill-category-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: var(--bg-card-hover);
}

.skill-category-card:hover::before {
  background: linear-gradient(90deg, var(--primary), var(--aws-orange));
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.skill-tag.highlight {
  background: rgba(221, 0, 49, 0.15);
  border-color: rgba(221, 0, 49, 0.4);
  color: #ff4d6d;
  font-weight: 700;
}

.skill-tag.highlight-aws {
  background: rgba(255, 153, 0, 0.15);
  border-color: rgba(255, 153, 0, 0.4);
  color: #ffb703;
  font-weight: 700;
}

.skill-category-card:hover .skill-tag {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Resume Section */
.resume .resume-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.resume .resume-item {
  padding: 0 0 35px 25px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: var(--transition-smooth);
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  left: -8px;
  top: 4px;
  background: var(--bg-dark);
  border: 2px solid #38bdf8;
  transition: var(--transition-fast);
}

.resume .resume-item:hover::before {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.resume .resume-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 6px;
}

.resume .resume-item h5 {
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  padding: 4px 12px;
  display: inline-block;
  font-weight: 600;
  border-radius: 8px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.resume .resume-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.resume .resume-item ul {
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.resume .resume-item ul li {
  margin-bottom: 8px;
}

.resume .resume-item ul li strong {
  color: var(--text-main);
}

/* Call to Action Hiring Card */
.cta-hiring-card {
  background: linear-gradient(135deg, rgba(221, 0, 49, 0.15) 0%, rgba(255, 153, 0, 0.15) 100%);
  border: 1px solid var(--border-card-active);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  position: relative;
}

.cta-hiring-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.cta-hiring-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
#footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-card);
  padding: 50px 0 30px 0;
  text-align: center;
}

#footer h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

#footer p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

#footer .social-links {
  justify-content: center;
  margin-bottom: 25px;
}

#footer .copyright {
  color: var(--text-dim);
  font-size: 13px;
}

/* --------------------------------------------------------------
# Scroll-Driven Animations (CSS View Timeline)
-------------------------------------------------------------- */

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

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

@keyframes cssRevealFadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cssRevealFadeRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cssRevealScaleUp {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll View Animations */
@supports (animation-timeline: view()) {
  [data-scroll-reveal="fade-up"] {
    animation: cssRevealFadeUp linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

  [data-scroll-reveal="slide-up"] {
    animation: cssRevealSlideUp linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

  [data-scroll-reveal="fade-left"] {
    animation: cssRevealFadeLeft linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

  [data-scroll-reveal="fade-right"] {
    animation: cssRevealFadeRight linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

  [data-scroll-reveal="scale-up"],
  [data-scroll-reveal="zoom-in"] {
    animation: cssRevealScaleUp linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }
}

/* Fallback for browsers without animation-timeline: view() support */
@supports not (animation-timeline: view()) {
  [data-scroll-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------
# Light Mode Specific Enhancements
-------------------------------------------------------------- */
[data-theme="light"] #hero {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.94) 0%, rgba(241, 245, 249, 0.88) 100%), url("../img/hero-bg.webp") top right / cover no-repeat;
}

[data-theme="light"] .hero-title {
  background: linear-gradient(135deg, #0f172a 30%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .section-bg {
  background: rgba(241, 245, 249, 0.7);
}

[data-theme="light"] .skill-category-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .tech-pill,
[data-theme="light"] .btn-outline-custom,
[data-theme="light"] .social-icon,
[data-theme="light"] .profile-badge,
[data-theme="light"] .theme-toggle-btn,
[data-theme="light"] .mobile-nav-toggle,
[data-theme="light"] .back-to-top {
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .skill-tag {
  background: rgba(15, 23, 42, 0.05);
  color: #1e293b;
  border-color: rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .skill-tag.highlight {
  background: rgba(190, 18, 60, 0.1);
  color: #be123c;
  border-color: rgba(190, 18, 60, 0.3);
}

[data-theme="light"] .skill-tag.highlight-aws {
  background: rgba(180, 83, 9, 0.1);
  color: #b45309;
  border-color: rgba(180, 83, 9, 0.3);
}

[data-theme="light"] .badge-tech {
  background: rgba(190, 18, 60, 0.12);
  border-color: rgba(190, 18, 60, 0.4);
  color: #be123c;
}

[data-theme="light"] .badge-version-toggle {
  background: rgba(180, 83, 9, 0.12);
  border-color: rgba(180, 83, 9, 0.4);
  color: #b45309;
}

[data-theme="light"] .hero-subtitle .typed {
  color: #026597;
  background: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .resume .resume-item h5 {
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
  border-color: rgba(15, 23, 42, 0.15);
}

[data-theme="light"] .resume .resume-item h4 {
  color: #026597;
}

[data-theme="light"] .stat-number {
  color: #026597;
}

[data-theme="light"] .cta-hiring-card {
  background: linear-gradient(135deg, rgba(221, 0, 49, 0.08) 0%, rgba(217, 119, 6, 0.08) 100%);
  border-color: rgba(221, 0, 49, 0.3);
}

[data-theme="light"] #footer {
  background: #f1f5f9;
  border-top-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] #preloader {
  background: #f8fafc;
}

[data-theme="light"] .nav-menu a {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.12);
  color: #475569;
}

[data-theme="light"] .nav-menu a:hover,
[data-theme="light"] .nav-menu .active {
  color: #dd0031;
  background: rgba(221, 0, 49, 0.1);
  border-color: rgba(221, 0, 49, 0.4);
}
