/* General page styling */
body {
  font-family: 'Orbitron', sans-serif;
  background-color: #1F1F1F;
  margin: 0;
  padding: 0;
  color: whitesmoke;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #181818;
  padding: 1rem 2rem;
}

.logo, .navbar h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #38bdf8;
  margin: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  background-color: #1F1F1F;
  color: #38bdf8;
  border-radius: 8px;
  border: 2px solid #38bdf8;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.nav-links li {
  flex: 1;
}

.nav-links li a:hover {
  background-color: #f97316;
  color: white;
  cursor: pointer;
}

/* Main content */
main {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

/* PDF container - embedded resume */
.pdf-container {
  position: relative;
  width: 80%;
  height: 90vh;
  border: 2px solid #333;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Disable iframe pointer events so clicks go to the link */
.pdf-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
