@charset "UTF-8";
:root {
  --bg-color: rgb(0, 0, 20);
  --bg-color-transparent: rgba(0, 0, 20, 0.7);
  --bg-fade-gradient: rgba(0, 0, 20, 0);
  --bg-fade-gradient-mid: rgba(0, 0, 20, 0.35);
  --bg-fade-gradient-end: rgba(0, 0, 20, 0.7);
  --text-color: #EFEBD8;
  --text-secondary: #b3b3cc;
  --accent-color: #b3005e;
  --accent-glow: #ff69b4;
  --border-color: #EFEBD8;
  --shadow-color: rgba(0, 0, 0, 0.2); }

body.light {
  --bg-color: #ffffff;
  --bg-color-transparent: rgba(255, 255, 255, 0.95);
  --bg-fade-gradient: rgba(255, 255, 255, 0);
  --bg-fade-gradient-mid: rgba(255, 255, 255, 0.6);
  --bg-fade-gradient-end: rgba(255, 255, 255, 0.95);
  --text-color: #111111;
  --text-secondary: #333333;
  --accent-color: rgb(207, 110, 0);
  --accent-glow: #ffbe4e;
  --border-color: transparent;
  --shadow-color: rgba(0, 0, 0, 0); }

body.dark {
  --bg-color: rgb(0, 0, 20);
  --bg-color-transparent: rgba(0, 0, 20, 0.7);
  --bg-fade-gradient: rgba(0, 0, 20, 0);
  --bg-fade-gradient-mid: rgba(0, 0, 20, 0.35);
  --bg-fade-gradient-end: rgba(0, 0, 20, 0.7);
  --text-color: #ffffff;
  --text-secondary: #b3b3cc;
  --accent-color: #b3005e;
  --accent-glow: #ff69b4;
  --border-color: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.2); }

body.light header {
  box-shadow: none;
  border: 0;
  /* Ukrycie efektu fade dla jasnego motywu */
  /* Usunięcie wszelkich cieni bocznych za pomocą clip-path */ }
  body.light header.scrolled {
    /* Ensure shadow only appears at the bottom */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 0; }
  body.light header::before {
    opacity: 0;
    display: none; }
  body.light header, body.light header.scrolled {
    clip-path: inset(0 0 -4px 0); }

body.dark header {
  box-shadow: none;
  border: 0;
  /* Przywrócenie efektu fade identycznego jak w footerze */
  /* Usunięcie wszelkich cieni bocznych przy jednoczesnym zachowaniu fade effect */ }
  body.dark header.scrolled {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 0; }
  body.dark header::before {
    opacity: 1;
    display: block;
    border-radius: 0 0 12px 12px;
    /* Zaokrąglone rogi jak w footerze */
    height: calc(var(--fade) + 2px);
    /* Zapewnienie tej samej wysokości fade jak w footerze */
    bottom: calc(-1 * var(--fade) - 1px);
    /* Takie samo pozycjonowanie jak w footerze */
    background: linear-gradient(to top, var(--bg-fade-gradient) 0%, var(--bg-fade-gradient-mid) 50%, var(--bg-fade-gradient-end) 100%); }
  body.dark header, body.dark header.scrolled {
    clip-path: inset(0 0 -30px 0);
    /* Większa wartość aby pomieścić efekt fade */ }

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  font-family: "Roboto Mono", monospace;
  transition: background-color 0.3s ease, color 0.3s ease; }

header {
  --blur: 3px;
  --fade: 22px;
  /* Match with footer's fade value */
  position: sticky;
  top: -10px;
  padding-top: 20px;
  width: 65%;
  /* Match with footer's width */
  margin: 0 auto;
  height: 60px;
  background-color: var(--bg-color-transparent);
  z-index: 1000;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  --transition-time: 0.38s;
  isolation: isolate;
  overflow: visible;
  /* Important for the fade effect to be visible */
  transform: translateZ(0);
  /* Match with footer for consistent rendering */
  border: 0;
  border-left: 0;
  border-right: 0;
  outline: 0;
  box-shadow: none;
  /* Remove base clip-path and let theme-specific ones handle it */ }
  header::after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0;
    height: 2px;
    background: var(--border-color);
    border-radius: 1px;
    transform-origin: center;
    transform: scaleX(0);
    opacity: 0;
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.25, 1), opacity 0.18s linear, background-color 0.3s ease;
    pointer-events: none;
    z-index: 3;
    will-change: transform, opacity; }
  header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(-1 * var(--fade) - 1px);
    /* Aligned with footer fade */
    height: calc(var(--fade) + 2px);
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to top, var(--bg-fade-gradient) 0%, var(--bg-fade-gradient-mid) 50%, var(--bg-fade-gradient-end) 100%);
    will-change: transform, opacity;
    transition: background 0.3s ease, opacity 0.3s ease;
    border: 0;
    transform: translateZ(0);
    /* Match footer for consistent rendering */
    box-shadow: none;
    /* Note: Border radius is now controlled in theme-specific styles */ }
  header.scrolled::after {
    transform: scaleX(1);
    opacity: 1; }
  header.scrolled {
    transform: translateY(-10px);
    box-shadow: 0 2px 4px var(--shadow-color);
    border: none;
    /* Preserve the fade effect when scrolled */ }
    header.scrolled::before {
      bottom: calc(-1 * var(--fade) - 1px + 10px);
      /* Adjust for translateY */ }
  header .titles-nav,
  header .buttons-nav {
    position: relative;
    z-index: 2; }
  header .titles-nav {
    display: flex;
    align-items: center; }
    header .titles-nav .nav-title-first {
      display: inline-block;
      margin-right: 0; }
      header .titles-nav .nav-title-first a {
        color: var(--text-color);
        text-decoration: none;
        font-family: "Roboto Mono", monospace;
        font-size: 24px;
        font-weight: 700;
        transition: color 0.3s ease; }
    header .titles-nav .nav-title-second {
      user-select: none;
      display: inline-block;
      margin-left: 0; }
      header .titles-nav .nav-title-second a {
        color: var(--text-secondary);
        text-decoration: none;
        font-family: "Roboto Mono", monospace;
        font-size: 16px;
        font-weight: 400;
        transition: color 0.3s ease; }
  header .buttons-nav {
    user-select: none;
    display: flex;
    align-items: center; }
    header .buttons-nav .nav-button {
      display: inline-block;
      margin-left: 15px; }
      header .buttons-nav .nav-button a {
        color: var(--text-color);
        text-decoration: none;
        font-family: "Roboto Mono", monospace;
        font-size: 18px;
        padding: 10px 15px;
        transition: color 0.3s ease, text-shadow 0.3s ease; }
        header .buttons-nav .nav-button a:hover {
          color: var(--accent-color);
          text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color); }
        header .buttons-nav .nav-button a:active {
          color: var(--accent-glow);
          text-shadow: 0 0 15px var(--accent-glow), 0 0 30px var(--accent-glow); }
  header .settings-buttons-div {
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    /* Set fixed height for container */ }
  header .snowflake-button,
  header .theme-button {
    user-select: none;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    font-family: "Roboto Mono", monospace;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1; }
  header .snowflake-button i {
    font-size: 22px;
    /* Make the icon slightly larger than the theme icon */ }
  header .snowflake-button.snowflake-active i {
    color: red; }
  header .snowflake-button.snowflake-active:hover i {
    color: #FF1493;
    /* Dark pink */
    text-shadow: 0 0 10px #FF1493, 0 0 20px #FF1493; }
  header .snowflake-button:hover, header .theme-button:hover {
    color: var(--accent-color); }
    body.dark header .snowflake-button:hover,
    body.dark header .theme-button:hover {
      text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color); }
    body.light header .snowflake-button:hover, body.light header .theme-button:hover {
      text-shadow: 0 0 2px var(--accent-color); }
    header .snowflake-button:hover i, header .theme-button:hover i {
      color: var(--accent-color); }
      body.dark header .snowflake-button:hover i, body.dark header .theme-button:hover i {
        text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color); }
      body.light header .snowflake-button:hover i, body.light header .theme-button:hover i {
        text-shadow: 0 0 2px var(--accent-color); }
  header .snowflake-button:active,
  header .theme-button:active {
    color: var(--accent-glow);
    text-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow); }
    header .snowflake-button:active i,
    header .theme-button:active i {
      color: var(--accent-glow);
      text-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow); }
  header .snowflake-button i,
  header .theme-button i {
    color: var(--text-color);
    font-size: 20px;
    transition: color 0.3s ease;
    display: inline-block;
    width: 20px;
    text-align: center; }

main {
  width: 55%;
  margin: 2rem auto 0;
  transition: color 0.3s ease;
  padding-top: 1rem; }

.default-main {
  margin-top: 3rem;
  line-height: 1.6; }

footer {
  --blur: 3px;
  --fade: 22px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 65%;
  margin: 0 auto;
  padding: 10px 0;
  background-color: var(--bg-color-transparent);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  isolation: isolate;
  /* ważne */
  overflow: visible;
  /* żeby pseudo nie był obcięty */
  transform: translateZ(0);
  /* pomoc przy kompozycji */
  transition: background-color 0.3s ease;
  /* treść footera ponad pseudo */ }
  footer > .footer-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    /* daj mały zapas 1px żeby usunąć hairline */
    top: calc(-1 * var(--fade) - 1px);
    height: calc(var(--fade) + 2px);
    pointer-events: none;
    z-index: 0;
    /* tylko gradient — nie stosuj tutaj backdrop-filter ani mask (unikanie artefaktów) */
    background: linear-gradient(to bottom, var(--bg-fade-gradient) 0%, var(--bg-fade-gradient-mid) 50%, var(--bg-fade-gradient-end) 100%);
    transition: background 0.3s ease;
    border-radius: 12px 12px 0 0;
    /* dopasuj do footera */
    will-change: transform, opacity; }
  footer .footer-rights {
    color: var(--text-secondary);
    font-size: 14px;
    margin-left: 20px;
    transition: color 0.3s ease; }
  footer .footer-nav {
    user-select: none;
    display: flex;
    gap: 20px;
    margin-right: 20px; }
    footer .footer-nav .footer-link a {
      color: var(--text-color);
      text-decoration: none;
      font-size: 16px;
      padding: 5px 10px;
      position: relative;
      transition: all 0.3s ease; }
      footer .footer-nav .footer-link a:hover {
        color: var(--accent-color);
        text-shadow: 0 0 8px var(--accent-color); }
      footer .footer-nav .footer-link a:active {
        color: var(--accent-glow);
        text-shadow: 0 0 12px var(--accent-glow); }
      footer .footer-nav .footer-link a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1px;
        background: var(--accent-color);
        transition: all 0.3s ease; }
      footer .footer-nav .footer-link a:hover::after {
        left: 0;
        width: 100%; }

html {
  overflow-y: scroll; }

#snowflakes-left-canvas,
#snowflakes-right-canvas {
  position: fixed;
  top: 0;
  height: 100%;
  width: 15%;
  /* Reduced from 20% to be thinner and not overlap with content */
  z-index: -1;
  pointer-events: none; }

#snowflakes-left-canvas {
  left: 0; }

#snowflakes-right-canvas {
  right: 0; }

body.dark {
  --snowflake-color: #EFEBD8;
  /* White snowflakes for dark theme */
  --snowflake-background: rgb(0, 0, 20);
  /* Dark background matching theme bg-color */ }

body.light {
  --snowflake-color: #06769C;
  /* Dark blue snowflakes for light theme */
  --snowflake-background: #ffffff;
  /* White background matching theme bg-color */ }

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 8rem auto;
  max-width: 480px;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none; }
  .contact-container .contact-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.8rem;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer; }
    .contact-container .contact-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 12px var(--accent-glow);
      border-color: var(--accent-glow); }
    .contact-container .contact-item .contact-icon {
      font-size: 1.5rem;
      color: var(--accent-color);
      margin-right: 1rem;
      width: 24px;
      text-align: center;
      transition: color 0.25s ease; }
    .contact-container .contact-item .contact-text {
      flex-grow: 1;
      font-size: 1.1rem;
      color: var(--text-color);
      letter-spacing: 0.5px; }
    .contact-container .contact-item .copy-btn {
      background: transparent;
      border: none;
      color: var(--text-secondary);
      cursor: pointer;
      font-size: 1.1rem;
      padding: 0.4rem;
      transition: color 0.25s ease; }
      .contact-container .contact-item .copy-btn:hover {
        color: var(--accent-color); }
      .contact-container .contact-item .copy-btn:active {
        transform: scale(0.9); }
    .contact-container .contact-item .contact-link {
      display: flex;
      align-items: center;
      width: 100%;
      text-decoration: none;
      color: var(--text-color);
      padding: 0;
      margin: 0; }
      .contact-container .contact-item .contact-link:hover {
        color: var(--accent-color); }

body.dark .contact-container .contact-item:hover .contact-icon {
  text-shadow: 0 0 8px var(--accent-glow); }
body.dark .contact-container a.contact-item:hover {
  color: var(--accent-color); }

body.light .contact-container a.contact-item:hover {
  color: var(--accent-color); }

.resume-main {
  margin-top: 3rem;
  padding-bottom: 12rem; }

.resume-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; }

.resume-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.5rem; }
  .resume-header h1 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 0; }

.resume-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
  .resume-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px var(--accent-glow);
    border-color: var(--accent-glow); }
  .resume-download-btn i {
    color: var(--accent-color); }

.resume-preview {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 45px 12px rgba(255, 255, 255, 0.25); }
  .resume-preview canvas {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px; }

body.light .resume-preview {
  box-shadow: 0 4px 30px 4px rgba(0, 0, 0, 0.3); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease; }

.reveal.visible {
  opacity: 1;
  transform: translateY(0); }

.section-heading {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--accent-color);
  letter-spacing: 1px; }

.hero {
  width: 55%;
  margin: 0 auto;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding-top: 20vh; }

.hero__content {
  animation: heroFadeIn 1s ease forwards; }

.hero__greeting {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0 0 0.3rem;
  letter-spacing: 2px;
  text-transform: uppercase; }

.hero__name {
  font-size: 3.2rem;
  margin: 0 0 0.6rem;
  line-height: 1.15;
  color: var(--text-color); }

.hero__tagline {
  font-size: 1rem;
  color: var(--accent-color);
  margin: 0 0 1rem; }

.hero__subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 520px;
  line-height: 1.6; }

.hero__scroll-hint {
  position: absolute;
  bottom: 18rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  animation: bounce 2s infinite; }

.hero__scroll-hint i {
  font-size: 0.9rem; }

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0); }
  50% {
    transform: translateX(-50%) translateY(8px); } }
.about {
  width: 55%;
  margin: 0 auto;
  padding: 0 0 5rem; }

.about__text {
  margin-bottom: 10rem;
  line-height: 1.75; }

.about__text p {
  margin: 0 0 1rem; }

.stack-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin: 1.6rem 0 0.8rem; }

.stack-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.4rem 0; }

.tile {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--accent-color);
  border-radius: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--text-color);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: default; }

.tile:hover {
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 10px var(--accent-glow); }

.timeline-section {
  width: 55%;
  margin: 0 auto;
  padding: 4rem 0 12rem; }

.timeline {
  position: relative;
  padding-left: 2.2rem;
  margin-top: 1rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
  opacity: 0.35; }

.timeline__item {
  position: relative;
  margin-bottom: 2.8rem; }

.timeline__item:last-child {
  margin-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -2.2rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-glow);
  z-index: 1; }

.timeline__date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 0.4rem; }

.timeline__card {
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  background: transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease; }

.timeline__card:hover {
  box-shadow: 0 0 14px var(--accent-glow); }

.timeline__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem; }

.timeline__card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary); }

@media (max-width: 1200px) and (min-width: 769px) {
  header {
    width: 90%; }

  main {
    width: 80%; }

  .hero,
  .about,
  .timeline-section {
    width: 80%; }

  footer {
    width: 80%; }

  #snowflakes-left-canvas,
  #snowflakes-right-canvas {
    display: none !important; }

  header .snowflake-button {
    display: none; }

  header .titles-nav .nav-title-first a {
    font-size: 20px; }

  header .titles-nav .nav-title-second a {
    font-size: 14px; }

  header .buttons-nav .nav-button a {
    font-size: 16px;
    padding: 8px 10px; } }
@media (max-width: 768px) {
  header {
    width: 95%;
    height: 50px;
    padding-top: 15px;
    flex-wrap: wrap; }
    header .titles-nav .nav-title-first a {
      font-size: 18px; }
    header .titles-nav .nav-title-second {
      display: none; }
    header .buttons-nav .nav-button {
      margin-left: 8px; }
      header .buttons-nav .nav-button a {
        font-size: 14px;
        padding: 6px 8px; }
    header .settings-buttons-div {
      height: 35px; }
    header .snowflake-button,
    header .theme-button {
      margin-left: 8px;
      font-size: 18px;
      width: 25px;
      height: 25px; }
    header .snowflake-button i {
      font-size: 18px; }

  main {
    width: 90%;
    margin-top: 1rem;
    padding-top: 0.5rem; }

  .default-main {
    margin-top: 1.5rem; }

  footer {
    width: 95%;
    padding: 8px 0; }
    footer .footer-rights {
      font-size: 12px;
      margin-left: 10px; }
    footer .footer-nav {
      gap: 10px;
      margin-right: 10px; }
      footer .footer-nav .footer-link a {
        font-size: 14px;
        padding: 3px 6px; }

  /* ---------- Index page mobile ---------- */
  .hero {
    width: 90%;
    min-height: calc(100vh - 60px);
    padding-top: 1rem; }

  .hero__name {
    font-size: 2rem; }

  .hero__greeting {
    font-size: 0.95rem; }

  .hero__tagline {
    font-size: 0.85rem; }

  .hero__subtitle {
    font-size: 0.85rem; }

  .about {
    width: 90%;
    padding: 2rem 0 2rem; }

  .timeline-section {
    width: 90%;
    padding: 1rem 0 3rem; }

  .timeline {
    padding-left: 1.6rem; }

  .timeline__dot {
    left: -1.6rem;
    width: 12px;
    height: 12px; }

  .timeline::before {
    left: 5px; }

  .timeline__card {
    padding: 0.8rem 1rem; }

  .tile {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem; }

  #snowflakes-left-canvas,
  #snowflakes-right-canvas {
    display: none !important; }

  header .snowflake-button {
    display: none; }

  .contact-container {
    padding: 1rem;
    margin: 2rem auto; }
    .contact-container .contact-item {
      padding: 0.8rem 1rem;
      height: 50px; }

  /* ---------- Resume page mobile ---------- */
  .resume-main {
    margin-top: 1.5rem; }

  .resume-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start; }
    .resume-header h1 {
      font-size: 1.4rem; }

  .resume-download-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem; } }

/*# sourceMappingURL=dark_theme.css.map */
