body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url("bg_img.png") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Container for GitHub + LinkedIn */


.social-links {
  position: absolute;
  top: 50px;          /* distance from the top */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row; /* ensures horizontal layout */
  gap: 80px;           /* space between icons */
}

.social-links img {
  height: 40px;
  width: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.1); /* grow slightly on hover */
}

.resume-btn {
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #0077b5; /* LinkedIn blue */
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.resume-btn:hover {
  background-color: #005582;
  transform: scale(1.05);
}

/* ---- Hero Card ---- */
.hero {
  /* center in viewport (your body is already flex-centered) */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 28px 32px;
  max-width: 720px;
  width: calc(100% - 48px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero h1 {
  margin: 0 0 8px 0;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.tagline {
  margin: 0 0 18px 0;
  font-size: 18px;
  color: #e9eef6;
}

/* ---- Buttons ---- */
.cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}

.btn.primary {
  background: #0077b5;       /* LinkedIn-ish blue for emphasis */
  border-color: #0077b5;
}

.btn.primary:hover {
  background: #005f8f;
  border-color: #005f8f;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .tagline { font-size: 16px; }
}