@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
  font-family: "ABC Marist";
  /* primary: baseurl-aware path; fallback: root path so local _site previews work */
  src: url("/assets/css/ABCMarist-Book.woff2") format("woff2"), url("/assets/css/ABCMarist-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Marist";
  /* primary: baseurl-aware path; fallback: root path so local _site previews work */
  src: url("/assets/css/ABCMarist-BookItalic.woff2") format("woff2"), url("/assets/css/ABCMarist-BookItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ABC Marist";
  /* primary: baseurl-aware path; fallback: root path so local _site previews work */
  src: url("/assets/css/ABCMarist-Medium.woff2") format("woff2"), url("/assets/css/ABCMarist-Medium.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Marist";
  /* primary: baseurl-aware path; fallback: root path so local _site previews work */
  src: url("/assets/css/ABCMarist-MediumItalic.woff2") format("woff2"), url("/assets/css/ABCMarist-MediumItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
body {
  font-family: "ABC Marist", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* Sticky header shrink behavior */
#site-header {
  background-color: transparent; /* transparent at top of page */
  transition: padding 200ms ease, background-color 200ms ease;
}

#site-header img {
  height: 150px; /* large logo at top */
  width: auto;
  transition: height 250ms ease;
}

#site-header.is-shrunk {
  padding-top: 0.5rem; /* ~py-2 equivalent */
  padding-bottom: 0.5rem;
  background-color: #FBFCF4; /* apply background after scroll */
}

#site-header.is-shrunk img {
  height: 36px; /* smaller logo when scrolled */
}

/* Mobile: default to a smaller logo size */
@media (max-width: 768px) {
  #site-header img {
    height: 40px;
  }
}
/* Active state for research theme and tag filter buttons */
.research-theme-btn.selected,
.tag-btn.selected {
  @apply border-[#664545] bg-[#664545] text-[#FFF];
}

/* Inactive state (default) */
.research-theme-btn,
.tag-btn {
  @apply border-[#BBBBBB] bg-[#FBFCF4] text-[#2A2020];
}

/* Hover effect when not selected */
.research-theme-btn:not(.selected):hover,
.tag-btn:not(.selected):hover {
  @apply border-[#664545] bg-[#FFFFFF] text-[#2A2020] transition-colors;
}

/* People layout styles */
#people {
  margin: 2rem 0;
}

#people .pure-u-1,
#people .pure-u-md-1-2,
#people .pure-u-lg-1-3 {
  padding: 1rem;
  margin-bottom: 2rem;
}

#people .headshot img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

#people .name {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

#people .title {
  font-weight: 500;
  color: #666;
  margin-bottom: 1rem;
}

#people .description {
  margin-top: 1rem;
  line-height: 1.6;
  color: #444;
}

#people .description a {
  color: #007acc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.2s ease;
}

#people .description a:hover {
  border-bottom-color: #007acc;
}

#person-desc p, #abstract-desc p {
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #people .pure-u-1 {
    text-align: center;
  }
  #people .headshot img {
    max-width: 150px;
  }
}

/*# sourceMappingURL=main.css.map */