:root {
    --villanova-blue: rgb(0, 38, 100);
    --font-primary: Arial, sans-serif;
  }
  
  body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: white;
    color: #333;
    font-size: 18px;
    min-height: 100vh;
  }
  
  header {
    background-color: var(--villanova-blue);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--villanova-blue);
    padding: 1rem 1.5rem;
    color: white;
    position: relative;
  }
  
  .nav-brand {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .nav-links li a.active {
    font-weight: bold;
  }
  
  main {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cv-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
    width: 100%;
  }
  
  .cv-container h1 {
    font-size: 2rem;
    color: var(--villanova-blue);
    margin-bottom: 2rem;
  }
  
  .cv-embed {
    width: 100%;
    height: 900px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: var(--villanova-blue);
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 1rem 0;
      z-index: 10;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links li {
      margin: 0.5rem 0;
      text-align: center;
    }
  
    .cv-embed {
      height: 600px;
    }
  }
  
/* ============================= */
/*        FADE-IN ANIMATION     */
/* ============================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}