:root {
  --vibrant-blue: #76bafe;
  --deep-blue: #1f3b4d;
  --sand: #f6f1eb;
  --linen: #fcfbf7;
  --slate: #333333;
}

body {
  background-color: #fdfdfd;
  background-image: radial-gradient(circle, #3399ff2f .5px, transparent 2px);
  background-size: 20px 20px;
  background-attachment: fixed;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--slate);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  min-height: 80vh;
  padding-top: 3rem;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}

.display-4 {
  font-style: italic;
}

.sub-header {
  font-size: xx-large;
}

.navbar {
  background-color: var(--vibrant-blue) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: .8rem;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: large;
  font-weight: 800;
}

.navbar-brand,
.navbar-nav .nav-link {
  color: white !important;
}

.navbar-nav .nav-link:hover {
  text-decoration: underline;
  color: #e0f0ff !important;
}

.row {
  margin-bottom: 100px;
}

img.profile-img {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;      
  object-fit: cover;         
  object-position: center 90%; 
  display: block;
  margin: 0 auto;
}

.body-text {
  background-color: #fdfdfd;
  font-size: 1rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  box-shadow: 8px 8px 4px rgba(64, 130, 243, 0.04);
}

footer {
  text-align: center;
  background-color: var(--vibrant-blue);
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 0.5rem;
}

.social-icon {
  max-width: 28px;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

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

.row-group {
  outline: black;
}

.pdf-container {
  max-width: 800px;
  margin: 2rem auto;
  border: 2px solid var(--soft-blue);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}