@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #030303;
  --bg-secondary: #000000;
  --bg-card: #141414;
  --bg-card-hover: #1e1e1e;
  --accent: #ff462e;
  --accent-glow: rgba(255, 70, 46, 0.25);
  --text-primary: #ffffff;
  --text-secondary: #8a8a8a;
  --text-muted: #575757;
  --border-color: #1c1c1c;
  --border-hover: #333333;
  --font-title: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Goldman', sans-serif;
  --max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-pill: 100px;
  --border-radius-card: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Utility Containers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(3, 3, 3, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-svg {
  height: 24px;
  width: auto;
  fill: var(--text-primary);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-btn-group {
  display: flex;
  gap: 12px;
}

/* Capsule buttons (Framer style) */
.capsule-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #000000;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-pill);
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.capsule-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-primary);
  stroke-width: 2px;
  transition: var(--transition-smooth);
}

.capsule-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.capsule-btn:hover svg {
  transform: translateY(-1px) rotate(45deg);
}

.capsule-btn.glow-btn {
  border: 1px solid transparent;
  background: linear-gradient(#000000, #000000) padding-box,
              linear-gradient(135deg, #69abfa, #a477fc) border-box;
  box-shadow: 0 0 15px rgba(105, 171, 250, 0.15);
}

.capsule-btn.glow-btn:hover {
  box-shadow: 0 0 25px rgba(164, 119, 252, 0.35);
  border-color: transparent;
}

.logo-text-blocky {
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
}

/* Hero Section */
.hero {
  padding: 130px 0 100px 0;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* 12 column vertical gridlines overlay */
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 1025px) {
  .hero-text {
    margin-bottom: 40px;
  }
}

.hero-greeting {
  font-size: clamp(2rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-greeting span {
  color: var(--text-primary);
}

/* Selection Box & Designer Cursor */
.selected-box-container {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  align-self: flex-start;
  z-index: 5;
}

.selection-box {
  position: relative;
  border: 1.5px solid #a477fc;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  user-select: none;
}

.selection-box .role-text {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.selection-box .handle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border: 1px solid #a477fc;
  z-index: 10;
}

.selection-box .handle.top-left { top: -4px; left: -4px; cursor: nwse-resize; }
.selection-box .handle.top-center { top: -4px; left: calc(50% - 3px); cursor: ns-resize; }
.selection-box .handle.top-right { top: -4px; right: -4px; cursor: nesw-resize; }
.selection-box .handle.middle-left { top: calc(50% - 3px); left: -4px; cursor: ew-resize; }
.selection-box .handle.middle-right { top: calc(50% - 3px); right: -4px; cursor: ew-resize; }
.selection-box .handle.bottom-left { bottom: -4px; left: -4px; cursor: nesw-resize; }
.selection-box .handle.bottom-center { bottom: -4px; left: calc(50% - 3px); cursor: ns-resize; }
.selection-box .handle.bottom-right { bottom: -4px; right: -4px; cursor: nwse-resize; }

.designer-cursor {
  position: absolute;
  right: -210px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 20;
  animation: float-animation 4s ease-in-out infinite;
}

.cursor-pointer {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.cursor-bubble {
  background-color: #a477fc;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--border-radius-pill);
  border-top-left-radius: 0;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(164, 119, 252, 0.4);
}

.hero .decorative-dot {
  position: absolute;
  bottom: 80px;
  right: calc(100% / 12 * 2);
  width: 10px;
  height: 10px;
  background-color: #00a8a8;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 168, 168, 0.6);
  z-index: 2;
}

@keyframes float-animation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
  .designer-cursor {
    display: none;
  }
  .selection-box {
    padding: 8px 16px;
  }
}

.hero-display {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 12.5rem);
  font-weight: 700;
  line-height: 0.8;
  text-align: right;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.hero-display span {
  display: block;
}

.hero-bio-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.hero-bio {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero-bio p:not(:last-child) {
  margin-bottom: 24px;
}

.hero-bio span.highlight {
  color: var(--text-primary);
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.badge-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scrolling Ticker */
.ticker-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: #000000;
  margin-bottom: 100px;
}

.ticker-wrapper {
  display: flex;
  width: max-content;
}

.ticker-track {
  display: flex;
  gap: 80px;
  animation: ticker-scroll 20s linear infinite;
  padding-right: 80px;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.ticker-item:hover {
  color: var(--accent);
}

.ticker-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Selected Projects Section */
.projects-section {
  padding-bottom: 120px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
}

.cursor-svg {
  width: 24px;
  height: 24px;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  transition: var(--transition-smooth);
}

.project-card-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.project-title {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 8px;
}

.project-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.5;
}

.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.project-card-img {
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  transition: var(--transition-smooth);
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-img img {
  transform: scale(1.05);
}

.project-card:hover .project-card-img {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Cube HQ Project Card Works Grid (right side of card) */
.project-card-works-container {
  width: 100%;
  height: 480px;
  background-color: #0b0b0b;
  border-radius: var(--border-radius-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr auto;
  gap: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.project-card:hover .project-card-works-container {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.work-item-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 140px;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  /* Dark backdrop filter overlay */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.work-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.work-item-card:hover::before {
  background: linear-gradient(to top, rgba(20, 20, 20, 0.9) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.work-item-card > * {
  position: relative;
  z-index: 3;
}

.work-item-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.work-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(255, 70, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: auto;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.work-item-card:hover .work-item-icon {
  background-color: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
}

.work-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.work-item-category {
  font-size: 0.75rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.work-item-card.folder-link-card {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 70, 46, 0.03), rgba(164, 119, 252, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
}

.work-item-card.folder-link-card:hover {
  border-color: #a477fc;
  background: linear-gradient(135deg, rgba(255, 70, 46, 0.08), rgba(164, 119, 252, 0.08));
}

.work-item-card.folder-link-card .work-item-icon {
  margin-bottom: 0;
  background-color: rgba(164, 119, 252, 0.1);
  color: #a477fc;
}

.work-item-card.folder-link-card:hover .work-item-icon {
  background-color: #a477fc;
  color: #ffffff;
}

.work-item-card.design-card {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .project-card-works-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .project-card-works-container {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    order: -1;
  }
}

@media (max-width: 480px) {
  .project-card-works-container {
    grid-template-columns: 1fr;
  }
  .work-item-card.folder-link-card,
  .work-item-card.design-card {
    grid-column: span 1 !important;
  }
}


/* Footer Section */
.footer {
  background-color: #000000;
  border-top: 1px solid var(--border-color);
  padding: 100px 0 40px 0;
}

.footer-email {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 24px;
  word-break: break-all;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--accent);
}

.footer-pitch {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
}

.footer-social-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

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

.social-link {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: translateY(-2px);
}

.social-link:hover {
  color: var(--accent);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.back-to-top:hover {
  color: var(--accent);
}

/* Responsiveness break points */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-display {
    text-align: left;
    font-size: clamp(3rem, 12vw, 6rem);
  }
  .hero-bio-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .project-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .project-card-img {
    height: 360px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
    height: auto;
    padding: 16px 0;
  }
  .nav-btn-group {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero {
    padding-top: 90px;
  }
  .hero-bio {
    font-size: 1.15rem;
  }
  .ticker-track {
    gap: 40px;
  }
  .project-card-img {
    height: 240px;
  }
  .footer-social-row {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* Resume page specific container and wrapper */
.resume-container {
  max-width: 1350px;
  width: 100%;
}

.resume-preview-iframe-wrapper {
  width: 100%;
  height: 1000px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: #141414;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .resume-preview-iframe-wrapper {
    height: 900px;
  }
}

@media (max-width: 768px) {
  .resume-preview-iframe-wrapper {
    height: 700px;
  }
}

@media (max-width: 480px) {
  .resume-preview-iframe-wrapper {
    height: 500px;
  }
}

/* About Page Specific Styles */
.about-hero {
  padding: 140px 0 80px 0;
  position: relative;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.hero-title .outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.about-intro-highlight {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

.about-intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Glassmorphism Stats Cards */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.about-stat-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  border-radius: var(--border-radius-card);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.about-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #a477fc);
  opacity: 0;
  transition: var(--transition-smooth);
}

.about-stat-box:hover::before {
  opacity: 1;
}

.about-stat-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.about-stat-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-stat-box p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Skills Layout & Boxes */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.skills-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: var(--border-radius-card);
  transition: var(--transition-smooth);
}

.skills-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.skills-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.skills-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.skills-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.skills-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-badge {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.skill-badge:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.skill-badge.accent-badge {
  border-color: rgba(255, 70, 46, 0.3);
  color: var(--accent);
}

.skill-badge.accent-badge:hover {
  background-color: rgba(255, 70, 46, 0.08);
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Timeline Custom Styles */
.timeline-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
  padding-left: 48px;
  border-left: 2px solid var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -57px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 3px solid var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
  background-color: var(--accent);
  transform: scale(1.2);
}

.timeline-time {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.timeline-org {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Personal Grid Showcase */
.personal-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
}

.personal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.personal-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.personal-image-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.art-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.art-card:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.art-card i {
  transition: transform 0.4s ease;
}

.art-card:hover i {
  transform: rotate(15deg) scale(1.15);
}

.art-card span {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-top: 8px;
}

/* About Page Responsiveness */
@media (max-width: 1024px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .personal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-intro-highlight {
    padding-left: 16px;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .timeline-container {
    padding-left: 32px;
  }
  .timeline-dot {
    left: -41px;
  }
}

@media (max-width: 480px) {
  .personal-image-showcase {
    grid-template-columns: 1fr;
  }
  .personal-image-showcase .art-card {
    grid-column: span 1 !important;
  }
}


