* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #f5f5f5;
  font-family: "lato", sans-serif;
}

a {
  color: #7ce7ff;
  text-decoration: none;
}

.cv-page {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(0, 0, 0, 0.8) 68%, #000 88%);
  overflow: hidden;
}
.cv-page::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: 85vmin;
  height: 85vmin;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 60%, transparent 82%);
  filter: blur(40px);
  opacity: 0.9;
  pointer-events: none;
}

.lightbulb-bg {
  position: fixed;
  left: -5%;
  top: 10%;
  height: 60vh;
  max-height: 600px;
  width: auto;
  opacity: 0.35;
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.25s ease, filter 0.25s ease;
  transform-origin: top center;
  animation: sway 8s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
.lights-on .cv-page {
  filter: brightness(1.12) saturate(1.05);
}

.lights-on .lightbulb-bg {
  opacity: 0.9;
  filter: drop-shadow(0 10px 30px rgba(255, 238, 180, 0.6)) brightness(1.2);
}

.hamburgerButton {
  color: #f5f5f5;
}

.cv-header {
  text-align: center;
  margin-bottom: 120px;
  z-index: 1;
}
.cv-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: #c9c9c9;
  margin: 0 0 10px;
}
.cv-header h1 {
  margin: 0 0 8px;
  font-size: 42px;
  letter-spacing: 1px;
}
.cv-header .subhead {
  margin: 0 0 24px;
  color: #c9c9c9;
  font-size: 18px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(45, 45, 45, 0.7);
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(120, 120, 120, 0.5);
  border-radius: 8px;
  font-size: 15px;
  font-family: "lato", sans-serif;
  letter-spacing: 1.5px;
  font-weight: 400;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.download-btn:hover {
  background: rgba(45, 45, 45, 0.9);
  border-color: rgba(124, 231, 255, 0.8);
  box-shadow: 0 0 20px rgba(124, 231, 255, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.download-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cv-content {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  z-index: 1;
}

.cv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 231, 255, 0.4);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}
.cv-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: 1px;
  color: #7ce7ff;
}
.cv-card p, .cv-card li {
  color: #c9c9c9;
  line-height: 1.6;
}
.cv-card ul {
  margin: 0;
  padding-left: 18px;
}
.cv-card li + li {
  margin-top: 8px;
}

.skill-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
}
.skill-logos img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 10px;
}

.tagline {
  color: #e3e3e3;
  margin: 0;
}

.highlight {
  color: #7ce7ff;
}

.flicker-cover {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10;
  animation: flickerFade 0.75s ease-out forwards;
  pointer-events: none;
}

@keyframes flickerFade {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  54% {
    opacity: 0;
  }
  64% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .cv-header h1 {
    font-size: 52px;
  }
  .cv-header .subhead {
    font-size: 20px;
  }
  .cv-card {
    padding: 28px;
  }
  .cv-card h2 {
    font-size: 22px;
  }
}/*# sourceMappingURL=Default.css.map */