/* Apple style fonts - Local fonts with fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Local SF Pro Display fonts - Fixed file names */
@font-face {
  font-family: "SF Pro Display";
  src: url('../fonts/sf-pro-display-medium.woff2') format('woff2'),
    url('../fonts/sf-pro-display-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url('../fonts/sf-pro-display-semibold.woff2') format('woff2'),
    url('../fonts/sf-pro-display-semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== PRELOADER STYLES ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.boot-video {
  width: 80%;
  height: 80%;
  object-fit: contain;
  background: #000;
}

/* Skip button for user convenience */
.skip-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "SF Pro Display", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  animation: fadeInSkip 0.5s ease-in 1s forwards;
  transition: all 0.2s ease;
}

.skip-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

@keyframes fadeInSkip {
  to {
    opacity: 0.7;
  }
}

/* Loading fallback */
.loading-fallback {
  display: none;
  text-align: center;
  color: white;
  font-family: "SF Pro Display", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.loading-fallback h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.loading-fallback p {
  font-size: 14px;
  opacity: 0.7;
}

/* Main content initially hidden */
.main-content {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 32px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.main-content.show {
  opacity: 1;
}

/* ===== MAIN WEBSITE STYLES ===== */
body {
  margin: 0;
  padding: 0;
  background: url('../images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: "SF Pro Display", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: white;
  height: 100vh;
  /* prevents scrolling, comment it out if otherwise required */
  overflow: hidden;
}

/* Status bar layout */
.status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

.left-content {
  display: flex;
  align-items: center;
}

.right-content {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.time,
.menu-clock {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
}

.menu-clock {
  white-space: nowrap;
}

.spotlight-trigger {
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.spotlight-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Icons */
.icon {
  width: 18px;
  height: 12px;
  filter: brightness(0) invert(1);
  /* Make black icons white */
}


/* Dock and Icon Styles */
.bottom-icons {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 10;
  padding-bottom: 12px;
  transition: transform 0.3s ease;
}

.bottom-icons.dock-hidden {
  transform: translateX(-50%) translateY(100%);
  pointer-events: none;
}

.icon-group {
  display: flex;
  gap: 35px;
  /* Reduced from 45px to create more consistent spacing */
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 12px 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 0.5px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  position: relative;
}

.social-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  transition: transform 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  background: transparent;
  object-fit: contain;
}

.icon-item:hover .social-icon {
  transform: scale(1.1);
}

.icon-item:hover .icon-label {
  opacity: 1;
  transform: translateY(0);
}

.icon-label {
  color: #fff;
  opacity: 0;
  font-size: 1.1rem;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 1px;
  margin-top: 0;
  position: absolute;
  top: -25px;
  transform: translateY(10px);
  transition: all 0.2s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Enhanced hover effects */
.icon-group:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.icon-item:active .social-icon {
  transform: scale(0.95);
}

/* ===== DESKTOP RESUME ICON ===== */
.desktop-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 20;
  width: 88px;
  padding: 6px 6px 5px;
  box-sizing: border-box;
  border-radius: 8px;
  background: transparent;
  transition: background 0.15s ease;
  user-select: none;
}

.desktop-icon:hover {
  background: rgba(99, 149, 255, 0.2);
}

.desktop-icon.selected {
  background: rgba(99, 149, 255, 0.35);
}

.desktop-icon.positioned {
  transform: none;
}

.desktop-icon.dragging {
  cursor: grabbing;
  z-index: 25;
}

.desktop-icon-img {
  width: 56px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: filter 0.18s ease, transform 0.18s ease;
}

.desktop-icon-img svg {
  width: 100%;
  height: 100%;
}

.desktop-icon:hover .desktop-icon-img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) brightness(1.35);
}

.desktop-icon.dragging .desktop-icon-img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.65)) brightness(1.25);
}

.desktop-folder-icon {
  width: 88px;
}

.desktop-folder-icon .desktop-icon-img {
  width: 60px;
  height: 58px;
}

.desktop-folder-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.desktop-file-icon .desktop-icon-img {
  width: 56px;
  height: 68px;
}

.desktop-file-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.desktop-icon-label {
  color: #fff;
  font-size: 11px;
  font-family: "SF Pro Display", "Inter", sans-serif;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.2px;
  white-space: nowrap;
  max-width: 76px;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(0, 0, 0, 0.25);
  padding: 1px 6px;
  border-radius: 4px;
  box-sizing: border-box;
}

.desktop-folder-icon .desktop-icon-label,
.desktop-file-icon .desktop-icon-label {
  max-width: 76px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes desktopIconBounce {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.25);
  }

  55% {
    transform: scale(0.92);
  }

  75% {
    transform: scale(1.1);
  }

  90% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
  }
}

.desktop-icon.bounce .desktop-icon-img {
  animation: desktopIconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== RESUME OVERLAY ===== */
.resume-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 900;
}

.resume-overlay.visible {
  display: block;
}

/* ===== RESUME WINDOW ===== */
.resume-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 700px;
  height: 85vh;
  min-width: 400px;
  min-height: 300px;
  background: rgba(30, 30, 30, 0.95);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  z-index: 901;
  opacity: 0;
  flex-direction: column;
}

.resize-handle {
  position: absolute;
  z-index: 4;
}

.resize-handle-n {
  top: 0;
  left: 14px;
  right: 14px;
  height: 8px;
  cursor: n-resize;
}

.resize-handle-s {
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 8px;
  cursor: s-resize;
}

.resize-handle-e {
  top: 14px;
  right: 0;
  bottom: 14px;
  width: 8px;
  cursor: e-resize;
}

.resize-handle-w {
  top: 14px;
  left: 0;
  bottom: 14px;
  width: 8px;
  cursor: w-resize;
}

.resize-handle-nw,
.resize-handle-ne,
.resize-handle-sw,
.resize-handle-se {
  width: 14px;
  height: 14px;
}

.resize-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
}

.resize-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
}

.resize-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
}

.resize-handle-se {
  right: 0;
  bottom: 0;
  cursor: se-resize;
}

.resume-window.resizing iframe {
  pointer-events: none;
}

.resume-window.open {
  display: flex;
  animation: windowOpen 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.resume-window.close {
  display: flex;
  animation: windowClose 0.2s ease-in forwards;
}

@keyframes windowOpen {
  from {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes windowClose {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  to {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
}

.resume-window.positioned {
  transform: none;
}

.resume-window.positioned.open {
  animation: positionedWindowOpen 0.18s ease-out forwards;
}

.resume-window.positioned.close {
  animation: positionedWindowClose 0.16s ease-in forwards;
}

@keyframes positionedWindowOpen {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes positionedWindowClose {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.resume-titlebar {
  display: flex;
  align-items: center;
  height: 42px;
  min-height: 42px;
  background: rgba(45, 45, 45, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 14px;
  position: relative;
  flex-shrink: 0;
}

.traffic-lights {
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 1;
}

.tl {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: filter 0.15s ease;
}

.tl-red {
  background: #ff5f57;
}

.tl-yellow {
  background: #febc2e;
  cursor: default;
}

.tl-green {
  background: #28c840;
  cursor: default;
}

.tl::before,
.tl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 1.3px;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.tl-red::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.tl-red::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tl-yellow::before {
  transform: translate(-50%, -50%);
}

.tl-yellow::after {
  display: none;
}

.tl-green::before {
  transform: translate(-50%, -50%);
}

.tl-green::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.traffic-lights:hover .tl::before,
.traffic-lights:hover .tl::after {
  opacity: 1;
}

.tl-red:hover {
  filter: brightness(1.2);
}

.resume-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-family: "SF Pro Display", "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2px;
  pointer-events: none;
}

.resume-body {
  flex: 1;
  overflow: hidden;
  background: #1a1a1a;
}

.resume-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== FOLDER WINDOWS ===== */
.folder-window {
  width: 620px;
  height: 520px;
}

.folder-location-bar {
  height: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  flex-shrink: 0;
}

.folder-window-body {
  overflow: auto;
  background: rgba(24, 24, 24, 0.98);
}

.folder-file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}

.folder-file-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease;
}

.folder-file-row:last-child {
  border-bottom: 0;
}

.folder-file-row:hover,
.folder-file-row:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.folder-file-icon {
  width: 27px;
  height: 32px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 700;
}

.folder-file-icon.file-type-pdf,
.spotlight-file-icon.file-type-pdf {
  color: rgba(255, 82, 82, 0.95);
}

.folder-file-icon.file-type-image,
.spotlight-file-icon.file-type-image {
  color: rgba(77, 214, 123, 0.95);
}

.folder-file-icon.file-type-other,
.spotlight-file-icon.file-type-other {
  color: rgba(210, 210, 210, 0.85);
}

.folder-file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

.folder-file-open {
  min-width: 54px;
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.14s ease, border-color 0.14s ease, transform 0.14s ease;
}

.folder-file-open:hover,
.folder-file-open:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  outline: none;
}

.folder-file-open:active {
  transform: scale(0.96);
}

.folder-empty-state {
  padding: 34px 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

/* ===== SPOTLIGHT SEARCH ===== */
.spotlight-overlay {
  display: none;
  position: fixed;
  inset: 0;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
}

.spotlight-overlay.visible {
  display: flex;
}

.spotlight-panel {
  width: min(620px, calc(100vw - 32px));
  overflow: hidden;
  background: rgba(40, 40, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
  color: white;
}

.spotlight-search-row {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-search-icon {
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.spotlight-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-family: "SF Pro Display", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.spotlight-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.spotlight-results {
  max-height: 320px;
  padding: 8px;
}

.spotlight-result {
  width: 100%;
  border: 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  text-align: left;
  font-family: "SF Pro Display", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  transition: background 0.12s ease;
}

.spotlight-result:hover,
.spotlight-result.active {
  background: rgba(255, 255, 255, 0.08);
}

.spotlight-result-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spotlight-result-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.spotlight-pdf-icon {
  width: 24px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 95, 87, 0.95);
  font-size: 9px;
  font-weight: 700;
}

.spotlight-folder-icon,
.spotlight-file-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-folder-icon svg {
  width: 28px;
  height: 24px;
}

.spotlight-file-icon {
  width: 24px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 7px;
  font-weight: 700;
}

.spotlight-result-text {
  min-width: 0;
}

.spotlight-result-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.spotlight-result-description {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.spotlight-highlight {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .icon-group {
    gap: 30px;
    padding: 10px 15px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .icon-group {
    gap: 20px;
    padding: 8px 12px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }
}

/* Custom Cursors */
body {
  cursor: url('../images/mac-cursor.png') 0 0, auto;
}

input,
textarea {
  cursor: url('../images/mac-cursor.png') 0 0, text !important;
}

a,
button,
.skip-button,
.spotlight-trigger,
.desktop-icon,
.folder-file-row,
.tl,
.spotlight-result,
.icon-item {
  cursor: url('../images/mac-cursor-pointer.png') 0 0, pointer !important;
}

.desktop-icon.dragging {
  cursor: url('../images/mac-cursor-pointer.png') 0 0, grabbing !important;
}

.tl-yellow,
.tl-green {
  cursor: url('../images/mac-cursor.png') 0 0, default !important;
}

/* --- Mobile Layout --- */
.mobile-center-content {
  display: none;
}

@media (max-width: 768px) {

  /* Hide desktop specific elements */
  .desktop-icon,
  .folder-window,
  .resume-window,
  .resume-overlay,
  .spotlight-overlay,
  .spotlight-trigger {
    display: none !important;
  }

  /* Mobile center layout */
  .mobile-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
    width: 100%;
  }

  @keyframes mobileFadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-name {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: "SF Pro Display", "Inter", sans-serif;
    opacity: 0;
    animation: mobileFadeIn 0.6s ease forwards;
  }

  .mobile-resume-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 24px;
    opacity: 0;
    animation: mobileFadeIn 0.6s ease 0.2s forwards;
  }

  .mobile-resume-icon svg {
    width: 48px;
    height: 58px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  }

  .mobile-resume-label {
    margin-top: 8px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.25);
    padding: 3px 8px;
    border-radius: 4px;
  }

  /* Dock mobile styling overrides */
  .icon-item {
    transition: opacity 0.2s ease !important;
  }

  .icon-item:hover .social-icon {
    transform: none !important;
  }

  .icon-item:active {
    opacity: 0.6;
  }

  .icon-item:active .social-icon {
    transform: none !important;
  }

  .icon-label {
    display: none !important;
  }
}