<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* ===============================
   Font Imports
================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Montserrat:wght@700&family=Bitter&display=swap');

/* ===============================
   Root Theme Variables
================================== */
:root {
  --bg-dark: #252D33;
  --nav-bg: #163948;
  --tile-bg: #163948;
  --heading-color: #C9BB8B;
  --text-color: #ACB99F;
  --accent-teal: #637F7B;
  --hover-light: #ACB99F;
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-nav: 'Bitter', serif;
}

/* ===============================
   Reset and Base Styles
================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.resume-page {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-color);
  line-height: 1.6;
}

/* ===============================
   Navigation Bar
================================== */
.navbar {
  position: sticky;
  top: 0;
  background-color: var(--nav-bg);
  z-index: 1000;
  padding: 0.75rem 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  font-family: var(--font-nav);
}

.nav-links a {
  text-decoration: none;
  color: var(--heading-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: var(--accent-teal);
}

/* ===============================
   Resume Page Content
================================== */
.resume-content {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.content-tile {
  background-color: var(--tile-bg);
  border-radius: 16px;
  padding: 2rem 3rem;
  max-width: 900px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.content-tile h1 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
font-weight: bold;
}

.content-tile p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

/* Embedded Resume */
.resume-container {
  width: 100%;
  aspect-ratio: 8.5 / 11;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.resume-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
}

/* Download Button */
.download-btn {
  display: inline-block;
  background-color: var(--accent-teal);
  color: var(--bg-dark);
  font-weight: bold;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: var(--hover-light);
  color: var(--bg-dark);
}

/* ===============================
   Responsive
================================== */
@media (max-width: 768px) {
  .content-tile {
    padding: 2rem 1.25rem;
  }

  .content-tile h1 {
    font-size: 2rem;
  }

  .resume-container {
    aspect-ratio: auto;
    height: 70vh;
  }
}
</style>
<!-- end Simple Custom CSS and JS -->
