/* =============================================
   CANADIAN GAMER — Video Editing Portfolio
   style.css
   ============================================= */

/* ----- MADE TOMMY FONT FACES ----- */
@font-face {
  font-family: 'MadeTommy';
  src: url('../fonts/made_tommy/MADE TOMMY Thin_PERSONAL USE.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MadeTommy';
  src: url('../fonts/made_tommy/MADE TOMMY Light_PERSONAL USE.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MadeTommy';
  src: url('../fonts/made_tommy/MADE TOMMY Regular_PERSONAL USE.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MadeTommy';
  src: url('../fonts/made_tommy/MADE TOMMY Medium_PERSONAL USE.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MadeTommy';
  src: url('../fonts/made_tommy/MADE TOMMY Bold_PERSONAL USE.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MadeTommy';
  src: url('../fonts/made_tommy/MADE TOMMY ExtraBold_PERSONAL USE.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MadeTommy';
  src: url('../fonts/made_tommy/MADE TOMMY Black_PERSONAL USE.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ----- RESET ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ----- CSS VARIABLES ----- */
:root {
  --bg-primary:      #0d0d0d;
  --bg-secondary:    #111118;
  --bg-card:         rgba(255, 255, 255, 0.04);

  --accent-primary:  #7c3aed;        /* purple */
  --accent-red:      #e11d48;        /* crimson red */
  --accent-blue:     #1e40af;        /* dark blue */
  --accent-light:    #c084fc;        /* light purple */
  --accent-glow:     rgba(225, 29, 72, 0.35);

  --text-primary:    #f0f0f0;
  --text-muted:      #8888a8;
  --text-accent:     #c084fc;

  --glass-bg:        rgba(255, 255, 255, 0.05);
  --glass-border:    rgba(255, 255, 255, 0.10);
  --glass-blur:      16px;

  --glow-purple:     0 0 30px rgba(124, 58, 237, 0.5);
  --glow-red:        0 0 30px rgba(225, 29, 72, 0.5);
  --glow-blue:       0 0 30px rgba(30, 64, 175, 0.5);
  --glow-subtle:     0 4px 24px rgba(180, 30, 100, 0.25);

  --font-heading:    'MadeTommy', sans-serif;
  --font-ui:         'MadeTommy', sans-serif;

  --section-pad:     clamp(60px, 10vw, 120px);
  --container-max:   1200px;
  --radius:          16px;
  --radius-sm:       8px;

  --transition-fast:   0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----- BASE ----- */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ----- UTILITY ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.accent-text {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-primary), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Glass card base */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-purple);
  border-color: rgba(124, 58, 237, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-primary), var(--accent-blue));
  color: #fff;
  box-shadow: 0 4px 20px rgba(180, 30, 100, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(180, 30, 100, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  border-color: var(--accent-primary);
  color: var(--text-accent);
  box-shadow: var(--glow-subtle);
}

/* Tag chip */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-light);
}

/* ----- SCROLL FADE-IN ----- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ----- NAVBAR ----- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}
#navbar.scrolled {
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 60px);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.logo-img:hover {
  opacity: 0.82;
  transform: scale(1.04);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links .nav-cta {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-red), var(--accent-primary), var(--accent-blue));
  color: #fff !important;
  font-size: 0.85rem;
}
.nav-links .nav-cta:hover {
  box-shadow: var(--glow-subtle);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- HERO ----- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 60px;
  background-image: url('../assets/CG-Blurple-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 5, 20, 0.72) 0%,
    rgba(20, 5, 30, 0.60) 50%,
    rgba(5, 10, 30, 0.68) 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.08);
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--text-primary); }
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  font-size: 1.1rem;
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition-fast);
}
.scroll-indicator:hover { color: var(--accent-light); }

/* ----- ABOUT ----- */
#about {
  padding: var(--section-pad) 0;
}
.about-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 64px;
}
.about-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(135deg, var(--accent-red), var(--accent-primary), var(--accent-blue)) border-box;
  box-shadow: 0 0 36px rgba(180, 30, 100, 0.4);
  display: block;
}
.about-text .section-eyebrow { display: block; margin-bottom: 8px; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.skill-card {
  padding: 36px 28px;
  text-align: center;
}
.skill-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(225,29,72,0.15), rgba(124,58,237,0.18), rgba(30,64,175,0.15));
  border: 1px solid rgba(180,30,100,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-light);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.skill-card:hover .skill-icon {
  transform: scale(1.1);
  box-shadow: var(--glow-subtle);
}
.skill-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}
.skill-icon.affinity {
  background: #2da44e;
  border-color: #2da44e;
}
.skill-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.skill-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stagger delays for skills */
.skills-grid .skill-card:nth-child(1) { transition-delay: 0s; }
.skills-grid .skill-card:nth-child(2) { transition-delay: 0.08s; }
.skills-grid .skill-card:nth-child(3) { transition-delay: 0.16s; }
.skills-grid .skill-card:nth-child(4) { transition-delay: 0.24s; }

/* ----- SERVICES ----- */
#services {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent, rgba(180,30,100,0.05) 50%, transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.service-card {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.service-card.featured {
  border-color: rgba(180, 30, 100, 0.45);
  background: linear-gradient(145deg, rgba(225,29,72,0.06), rgba(124,58,237,0.06));
  box-shadow: var(--glow-subtle);
}
.service-card.featured:hover {
  box-shadow: var(--glow-purple);
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-red), var(--accent-primary), var(--accent-blue));
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(225,29,72,0.18), rgba(124,58,237,0.2), rgba(30,64,175,0.18));
  border: 1px solid rgba(180,30,100,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--accent-light);
  margin-bottom: 24px;
  transition: transform var(--transition-smooth);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.price-tag {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-primary), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 28px;
}
.price-tag span {
  font-size: 1rem;
  font-family: var(--font-ui);
  background: none;
  -webkit-text-fill-color: var(--text-muted);
  color: var(--text-muted);
}
.feature-list {
  width: 100%;
  margin-bottom: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.feature-list li i {
  color: var(--accent-red);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.service-card .btn { width: 100%; justify-content: center; }

/* Stagger services */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }

/* ----- PORTFOLIO ----- */
#portfolio {
  padding: var(--section-pad) 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.portfolio-card {
  overflow: hidden;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.placeholder-thumb {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(124, 58, 237, 0.09) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2.6s ease-in-out infinite;
}
.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  border: 2px solid rgba(124,58,237,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-light);
  transition: all var(--transition-smooth);
  z-index: 1;
}
.portfolio-card:hover .play-btn {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(124,58,237,0.5);
}
.video-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(124,58,237,0.25);
  border: 1px solid rgba(124,58,237,0.45);
  color: var(--accent-light);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.video-type-badge.short {
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.45);
  color: #93c5fd;
}
.portfolio-meta {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.portfolio-meta h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Portfolio CTA buttons */
.portfolio-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Channels worked with */
.collab-header {
  text-align: center;
  margin-bottom: 40px;
}
.collab-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-top: 8px;
}
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.collab-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  gap: 12px;
}
.collab-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(59,130,246,0.18));
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-light);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.collab-card:hover .collab-avatar {
  transform: scale(1.1);
  box-shadow: var(--glow-subtle);
}
.collab-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.collab-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Stagger collab cards */
.collab-grid .collab-card:nth-child(1) { transition-delay: 0s; }
.collab-grid .collab-card:nth-child(2) { transition-delay: 0.08s; }
.collab-grid .collab-card:nth-child(3) { transition-delay: 0.16s; }
.collab-grid .collab-card:nth-child(4) { transition-delay: 0.24s; }

/* ----- CONTACT ----- */
#contact {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent, rgba(30,64,175,0.05) 50%, transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 28px;
  gap: 14px;
}
.contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.contact-icon.discord {
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: #7289da;
}
.contact-icon.instagram {
  background: rgba(225, 48, 108, 0.12);
  border: 1px solid rgba(225, 48, 108, 0.3);
  color: #e1306c;
}
.contact-icon.twitter {
  background: rgba(29, 161, 242, 0.12);
  border: 1px solid rgba(29, 161, 242, 0.3);
  color: #1d9bf0;
}
.contact-icon.email {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--accent-light);
}
.contact-card:hover .contact-icon { transform: scale(1.15); }
.contact-card:hover .discord  { box-shadow: 0 0 20px rgba(88,101,242,0.4); }
.contact-card:hover .twitter  { box-shadow: 0 0 20px rgba(29,161,242,0.4); }
.contact-card:hover .email    { box-shadow: 0 0 20px rgba(124,58,237,0.4); }
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}
.contact-card span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Stagger contact */
.contact-grid .contact-card:nth-child(1) { transition-delay: 0s; }
.contact-grid .contact-card:nth-child(2) { transition-delay: 0.1s; }
.contact-grid .contact-card:nth-child(3) { transition-delay: 0.2s; }

/* ----- FOOTER ----- */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo-img {
  height: 32px;
  width: auto;
}
footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.footer-socials a:hover {
  color: var(--accent-light);
  transform: translateY(-2px);
}
.footer-discord {
  display: flex;
  align-items: center;
  cursor: default;
  opacity: 0.6;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.footer-discord:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.discord-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
.kofi-btn {
  display: inline-block;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.kofi-btn img {
  height: 36px;
  width: auto;
  display: block;
}
.kofi-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ----- KEYFRAMES ----- */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; }
  .nav-links .nav-cta { padding: 12px 32px; font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }

  .hero-content h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }

  .about-layout { grid-template-columns: 1fr; text-align: center; }
  .about-photo img { margin: 0 auto; }
  .about-text p { max-width: 100%; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .skills-grid    { grid-template-columns: 1fr; }
}
