/* ========================================
   Jordan Blum — Personal Site V2
   Palette: Emerald/Yellow/Antique/Red/Cream
   Inspired by: jackiehu.design, curated.supply, design.cash.app
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette */
  --emerald: #317039;
  --emerald-dark: #254f2b;
  --yellow: #F1BE49;
  --antique: #F8EDD9;
  --red: #CC4B24;
  --papaya: #FFF1D4;
  --latte: #FFFBEB;
  --black: #1a1a1a;
  --black-deep: #0a0a0a;
  --gray: #888;
  --gray-light: #e0e0e0;

  /* Typography */
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'SF Mono', monospace;

  /* Spacing */
  --section-pad: clamp(80px, 12vw, 160px);
  --container-width: 1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--latte);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.008) 2px, rgba(0,0,0,0.008) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.008) 2px, rgba(0,0,0,0.008) 4px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--emerald); font-weight: 600; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--emerald);
  background: rgba(49, 112, 57, 0.08);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-weight: 500;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 64px;
  letter-spacing: -0.03em;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(255, 251, 235, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 16px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.02);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
}

.nav-logo:hover { 
  transform: rotate(-8deg) scale(1.08);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  opacity: 0.65;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: -0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: var(--black-deep);
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 235, 0.1) 0%,
    rgba(255, 251, 235, 0.3) 30%,
    rgba(255, 251, 235, 0.95) 100%
  );
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(241, 190, 73, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(49, 112, 57, 0.08) 0%, transparent 50%);
  z-index: 1;
  animation: gradientShift 20s ease infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
  background: rgba(241, 190, 73, 0.12);
  border: 1px solid rgba(241, 190, 73, 0.25);
  display: inline-block;
  padding: 9px 22px;
  border-radius: 100px;
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-name {
  display: block;
  font-size: clamp(3.5rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--latte);
}

.hero-name.accent {
  color: var(--yellow);
  background: linear-gradient(135deg, var(--yellow) 0%, #f8d374 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: var(--antique);
  margin-top: 28px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typed-text::after {
  content: '|';
  color: var(--yellow);
  animation: blink 1s infinite;
  margin-left: 4px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 251, 235, 0.45);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 251, 235, 0.35);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* --- Marquee --- */
.marquee-section {
  background: var(--emerald);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--emerald), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--emerald), transparent);
}

.marquee {
  position: relative;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 36px;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--latte);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- About --- */
.about {
  padding: var(--section-pad) 0;
  background: var(--latte);
}

.about-content {
  max-width: 720px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.about-content p {
  font-size: 1.05rem;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 20px;
  line-height: 1.75;
}

.about-details {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.detail-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--emerald);
  margin-bottom: 8px;
  font-weight: 600;
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

/* --- Work / Timeline --- */
.work {
  padding: var(--section-pad) 0;
  background: var(--latte);
  color: var(--black);
}

.work .section-label {
  background: rgba(49, 112, 57, 0.08);
  color: var(--emerald);
}

.work .section-title {
  color: var(--black);
}

.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--yellow) 0%,
    rgba(49, 112, 57, 0.4) 50%,
    rgba(49, 112, 57, 0.15) 100%
  );
  border-radius: 2px;
}

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

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

.timeline-dot {
  position: absolute;
  left: -44px;
  top: 28px;
  width: 16px;
  height: 16px;
  background: var(--yellow);
  border: 4px solid var(--latte);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(241, 190, 73, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.25) rotate(180deg);
  box-shadow: 0 0 0 8px rgba(241, 190, 73, 0.4);
}

.timeline-card {
  background: rgba(49, 112, 57, 0.04);
  border: 1px solid rgba(49, 112, 57, 0.1);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card:hover {
  transform: translateY(-6px) scale(1.02) rotate(-0.5deg);
  background: rgba(49, 112, 57, 0.08);
  border-color: rgba(49, 112, 57, 0.2);
  box-shadow: 0 16px 48px rgba(49, 112, 57, 0.12), 0 8px 24px rgba(0,0,0,0.08);
}

.timeline-card.accent-card {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  border-color: rgba(241, 190, 73, 0.3);
  color: var(--latte);
}

.timeline-card.accent-card:hover {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  box-shadow: 0 16px 48px rgba(49, 112, 57, 0.3);
}

.timeline-card.accent-card .timeline-date { 
  color: var(--black);
  background: var(--yellow);
}

.timeline-card.accent-card p { color: rgba(255, 251, 235, 0.9); }
.timeline-card.accent-card h3 { color: var(--latte); }
.timeline-card.accent-card .timeline-company { color: rgba(255, 251, 235, 0.65); }

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

.timeline-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  background: white;
  padding: 6px;
  transition: transform 0.4s ease;
}

.timeline-card:hover .timeline-logo {
  transform: scale(1.08);
}

.timeline-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.timeline-company {
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 3px;
}

.timeline-date {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--latte);
  background: var(--emerald);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-weight: 600;
}

.timeline-card p {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
}

/* --- Gallery --- */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--latte);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.gallery .section-label {
  background: rgba(49, 112, 57, 0.08);
  color: var(--emerald);
}

.gallery .section-title {
  color: var(--black);
}

.gallery-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  border-radius: 24px;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(49, 112, 57, 0.02);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2;
  background: rgba(49, 112, 57, 0.02);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) saturate(0.95);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.05) sepia(0.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(49, 112, 57, 0.85) 0%,
    rgba(49, 112, 57, 0.4) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--latte);
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

.gallery-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border: 1px solid rgba(49, 112, 57, 0.3);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: gentlePulse 3s ease-in-out infinite;
}

.gallery-cta:hover {
  background: rgba(49, 112, 57, 0.08);
  border-color: var(--emerald);
  transform: translateY(-2px) scale(1.02);
  animation: none;
}

/* --- Contact --- */
.contact {
  padding: var(--section-pad) 0;
  background: var(--papaya);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(241, 190, 73, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(49, 112, 57, 0.06) 0%, transparent 50%);
  animation: gradientShift 25s ease infinite alternate;
}

.contact .section-label {
  background: rgba(49, 112, 57, 0.08);
  color: var(--emerald);
}

.contact-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 64px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:last-child { 
  border-bottom: 1px solid rgba(26, 26, 26, 0.08); 
}

.contact-link:hover { 
  padding-left: 16px;
  background: rgba(49, 112, 57, 0.03);
}

.contact-link-label {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-link-arrow {
  font-size: 1.8rem;
  color: var(--emerald);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.contact-link:hover .contact-link-arrow { 
  transform: translate(6px, -6px) scale(1.1);
  color: var(--yellow);
  animation: arrowPulse 0.6s ease;
}

/* --- Footer --- */
.footer {
  background: var(--papaya);
  border-top: 1px solid rgba(26, 26, 26, 0.06);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-name,
.footer-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.45);
  font-weight: 500;
}

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

.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-social a:hover {
  color: var(--emerald);
  transform: translateY(-2px);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 96px rgba(0,0,0,0.8);
  animation: lightboxZoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(255, 251, 235, 0.1);
  border: 1px solid rgba(255, 251, 235, 0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  color: var(--latte);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover { 
  opacity: 1;
  background: rgba(255, 251, 235, 0.15);
  transform: scale(1.05);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

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

@keyframes gradientShift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10%, 10%) scale(1.1); }
}

@keyframes lightboxZoom {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes bounceIn {
  0% { 
    opacity: 0; 
    transform: scale(0.3) translateY(-20px); 
  }
  50% { 
    transform: scale(1.05) translateY(0); 
  }
  70% { 
    transform: scale(0.95); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1); 
  }
}

@keyframes gentlePulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(49, 112, 57, 0.3); 
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 0 0 0 8px rgba(49, 112, 57, 0); 
  }
}

@keyframes arrowPulse {
  0%, 100% { 
    color: var(--yellow); 
  }
  50% { 
    color: var(--emerald); 
  }
}

/* Scroll reveal animations */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero fade-in animations */
[data-fade-in] {
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

[data-fade-in]:nth-child(1) { animation-delay: 0.1s; }
[data-fade-in]:nth-child(2) { animation-delay: 0.2s; }
[data-fade-in]:nth-child(3) { animation-delay: 0.3s; }
[data-fade-in]:nth-child(4) { animation-delay: 0.4s; }
[data-fade-in]:nth-child(5) { animation-delay: 0.5s; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .about-details {
    flex-direction: column;
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline { padding-left: 36px; }
  .timeline-dot { left: -32px; }
  .timeline-card { padding: 28px; }

  .contact-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-link {
    padding: 20px 0;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .gallery-item:hover,
  .timeline-card:hover,
  .contact-link:hover .contact-link-arrow {
    transform: none;
  }
}
