/* ============================================================
   HEADER — Calibrated to Original Reference (1600x900)
   ============================================================ */

.site-header {
  position: absolute;
  top: 58px;
  left: 48px;
  right: 48px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

/* ── Logo Wordmark (x ≈ 48px, y ≈ 58px) ─────────────────────── */
.site-logo {
  pointer-events: all;
  text-decoration: none;
  display: inline-block;
}

.logo-container {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.02;
}

/* Plain Text: sanju (No selection box) */
.logo-line-sanju {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #000000;
  text-transform: lowercase;
  margin-left: 20px;
}

/* Selected Object: mohan (Figma Selection Box) */
.logo-line-mohan-selection {
  position: relative;
  display: inline-block;
  border: 1.8px solid #000000;
  padding: 1px 12px 2px 10px;
  margin-top: 2px;
  margin-left: 20px;
  background: transparent;
}

.logo-line-mohan {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #000000;
  text-transform: lowercase;
  display: block;
}

/* Black Designer Cursor Icon near upper-left */
.logo-cursor {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 21.6px;
  height: 21.6px;
  z-index: 5;
  pointer-events: none;
}

.logo-cursor svg {
  width: 21.6px;
  height: 21.6px;
  display: block;
}

/* Handles on Mohan Selection Box */
.logo-handle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border: 1.5px solid #000000;
}
.logo-handle.h-tl { top: -3px; left: -3px; }
.logo-handle.h-tr { top: -3px; right: -3px; }
.logo-handle.h-bl { bottom: -3px; left: -3px; }
.logo-handle.h-br { bottom: -3px; right: -3px; }

/* ── Header Right Controls ────────────────────────────────── */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: all;
}

/* ── Resume Button ────────────────────────────────────────── */
.resume-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resume-btn:hover {
  border-color: rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.resume-download-icon {
  width: 18px;
  height: 18px;
  stroke: #161515;
  flex-shrink: 0;
}

.resume-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #161515;
  line-height: 1;
}

/* ── Let's Talk Button ────────────────────────────────────── */
.talk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 24px;
  background: #242424;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.talk-btn:hover {
  background: #000000;
}

/* ── Responsive Header Adjustments ───────────────────────── */
@media (max-width: 810px) {
  .site-header {
    top: 24px;
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .site-header {
    top: 16px;
    left: 14px;
    right: 14px;
  }
  .header-right {
    gap: 8px;
  }
  .resume-btn {
    padding: 8px 14px;
    font-size: 13px;
    gap: 6px;
  }
  .resume-download-icon {
    width: 15px;
    height: 15px;
  }
  .talk-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .logo-line-sanju,
  .logo-line-mohan {
    font-size: 19px;
  }
  .logo-line-sanju {
    margin-left: 12px;
  }
  .logo-line-mohan-selection {
    margin-left: 12px;
    padding: 1px 8px 1px 6px;
  }
}
