@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Parisienne&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alegreya:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://use.typekit.net/jnv8vrl.css");
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #013A40;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #444;
}

ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: #027a88;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  text-decoration: underline;
  color: #015c6a;
}

blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid #013A40;
  font-style: italic;
  color: #333;
}

small {
  font-size: 1rem;
}

/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Base Styles === */
body {
  font-family: "Open Sans", sans-serif;
  color: #222;
  background-color: white;
  line-height: 1.6;
}

h2 {
  margin-bottom: 20px;
  color: #013A40;
}

a {
  color: #027a88;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.gallery-grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-top: 2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.05);
}

/* === Mobile Navigation === */
@media (max-width: 768px) {
  .hero-bg {
    transform: none !important;
  }
  .bio-wrapper {
    flex-direction: column;
  }
  .bio-image,
  .bio-text {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .bio-image {
    margin-bottom: 20px;
  }
  .resume-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .resume-row > div {
    flex: 1 1 100%;
    padding-right: 0;
  }
  .resume-row .resume-company {
    text-align: left;
    margin-top: 4px;
    font-size: 0.95rem;
    color: #666;
  }
  .downloads {
    flex-direction: column;
  }
  .download-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* === Hero Styling === */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background-image: url("/assets/hero_v1-9b643df9.jpg");
  background-size: cover;
  background-position: var(--hero-bg-pos, center center);
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateY(0);
  transition: transform 0s linear;
}

.hero-topbar {
  position: absolute;
  top: 40px;
  left: 40px;
  width: calc(100% - 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero-left {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  row-gap: 8px;
}

.hero-name {
  color: white;
  font-size: 3rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  font-family: "Arboria";
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 0;
}

.hero-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.hero-nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  font-size: 1.2rem;
  font-family: "Arboria";
  text-transform: uppercase;
}
.hero-nav a:hover {
  text-decoration: underline;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.hero-tagline {
  color: white;
  font-size: 1.2rem;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2.22px;
}

.sticky-nav {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background: rgba(1, 58, 64, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  transition: top 0.3s ease-in-out;
  z-index: 1002;
}
.sticky-nav .hero-name {
  font-size: 2rem;
  text-shadow: none;
}
.sticky-nav .hero-nav a {
  font-size: 0.9rem;
}
.sticky-nav .hero-tagline {
  font-size: 0.85rem;
}

/* When we add .visible, slide it into view */
.sticky-nav.visible {
  top: 0;
}

.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1003;
  }
  .mobile-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #013A40;
    margin: 0;
  }
  .mobile-tagline {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
  }
  /* Push the hero content down so it isn’t hidden under the mobile header */
  .hero {
    margin-top: 60px;
    /* ~ header height */
  }
  /* Hide desktop nav variations on mobile */
  .hero-topbar,
  .sticky-nav {
    display: none;
  }
}
.drawer-nav,
.drawer-overlay,
.nav-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: rgba(1, 58, 64, 0.9);
    color: white;
    border: none;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1004;
    cursor: pointer;
    display: flex;
  }
  .nav-toggle:focus {
    outline: 2px solid #fff;
  }
  .drawer-nav {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -240px;
    width: 240px;
    background-color: rgb(250, 250, 250);
    padding: 60px 20px;
    flex-direction: column;
    gap: 16px;
    transition: left 0.3s ease-in-out;
    z-index: 1005;
  }
  .drawer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .drawer-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .drawer-nav a {
    display: block;
    padding: 16px 24px;
    color: rgb(1, 58, 64);
    text-decoration: none;
    letter-spacing: 0.05rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  .drawer-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .drawer-nav.open {
    left: 0;
  }
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1003;
  }
  .drawer-overlay.visible {
    display: block;
  }
}
.news-grid {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.news-card {
  display: block;
  background-color: #fafafa;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.news-card.half {
  flex: 1 1 50%;
}
.news-card.third {
  flex: 1 1 33.33%;
}
.news-card.full {
  flex: 1 1 100%;
}
.news-card .news-image {
  overflow: hidden;
}
.news-card .news-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.8s ease;
}
.news-card:hover .news-image img {
  filter: grayscale(0%);
}
.news-card .news-content {
  padding: 1rem;
}
.news-card .news-content h3 {
  margin-bottom: 0.5rem;
  color: #013A40;
}
.news-card .news-content p {
  color: #444;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .news-grid {
    flex-direction: column;
  }
  .news-card {
    flex: 1 1 100%;
  }
  .news-card .news-image img {
    filter: grayscale(0%);
  }
}
.section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

.parallax-divider {
  background-image: url("/assets/blue-green-bg-d2ac9b99.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 200px;
  width: 100%;
}

@media (max-width: 768px) {
  .parallax-divider {
    background-attachment: scroll;
    background-position: center;
  }
}
.bio-section {
  padding: 80px 20px;
  background-color: white;
}

.bio-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.bio-image {
  flex: 0 0 33%;
  max-width: 33%;
}
.bio-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.bio-text {
  flex: 1;
  min-width: 0;
}
.bio-text h2 {
  font-size: 2rem;
  color: #013A40;
  margin-bottom: 20px;
}
.bio-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.resume-section {
  margin: 0 auto;
  padding: 80px 20px;
}
.resume-section h2 {
  color: #013A40;
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}
.resume-section .downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 2rem 0;
}
.resume-section .download-item {
  flex: 1 1 240px;
  max-width: calc(50% - 15px);
  min-width: 200px;
  margin-bottom: 30px;
}
.resume-section .download-thumb {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 2px solid #013A40;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resume-section .download-thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.resume-section .resume-grid {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}
.resume-section .resume-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1rem;
  color: #222;
}
.resume-section .resume-row > div {
  flex: 1 1 33%;
  padding-right: 10px;
}
.resume-section .resume-row .resume-play {
  font-weight: 600;
}
.resume-section .resume-row .resume-role {
  font-style: italic;
}
.resume-section .resume-row .resume-company {
  text-align: right;
}
.resume-section .resume-row + .resume-row {
  border-top: 1px solid #eee;
  padding-top: 1rem;
  margin-top: 1rem;
}

.site-footer {
  padding: 40px 20px;
  background-color: rgb(250, 250, 250);
  color: #013A40;
  font-size: 0.9rem;
}
.site-footer .footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.site-footer .name {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}
.site-footer .tagline {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.site-footer .footer-socials {
  margin: 1rem 0;
}
.site-footer .footer-socials .social-icons {
  justify-content: center;
}
.site-footer .admin-link {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #013A40;
}
.site-footer .admin-link:hover {
  color: rgba(1, 58, 64, 0.7);
}
.site-footer .admin-link {
  color: rgb(250, 250, 250);
  text-align: right;
}
.site-footer .admin-link :hover {
  color: rgb(225, 225, 225);
}

.social-icons {
  display: flex;
  align-itmes: center;
  gap: 12px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition-property: filter, opacity, background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.social-icons i {
  font-size: 1rem;
  transition: color 0.3s ease;
}
.social-icons.social-icons--dark a {
  background-color: #013A40;
}
.social-icons.social-icons--dark a i {
  color: white;
}
.social-icons.social-icons--light a {
  background-color: white;
}
.social-icons.social-icons--light a i {
  color: #013A40;
}
.social-icons:hover a {
  filter: grayscale(100%);
  opacity: 0.6;
}
.social-icons:hover a:hover {
  filter: none;
  opacity: 1;
  text-decoration: none;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.lightbox.active {
  display: block;
}
.lightbox .lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.lightbox .lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  color: white;
}
.lightbox .lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
}
.lightbox .lightbox-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
}
.lightbox .lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: white;
  color: #013A40;
  border: none;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}
