/* rachelsee.com static site — CSS
   Reproduces the Elemento/RacheSee WordPress theme look and feel.
   Fonts: Libre Franklin (body), Roboto (content), Caveat (display/titles)
*/

/* Self-hosted Google Fonts (latin + latin-ext subsets) */
/* Caveat — latin-ext */
@font-face { font-family: 'Caveat'; font-style: normal; font-weight: 400 700; font-display: swap; src: url(fonts/caveat-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
/* Caveat — latin */
@font-face { font-family: 'Caveat'; font-style: normal; font-weight: 400 700; font-display: swap; src: url(fonts/caveat-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/* Libre Franklin — latin-ext */
@font-face { font-family: 'Libre Franklin'; font-style: normal; font-weight: 100 900; font-display: swap; src: url(fonts/libre-franklin-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
/* Libre Franklin — latin */
@font-face { font-family: 'Libre Franklin'; font-style: normal; font-weight: 100 900; font-display: swap; src: url(fonts/libre-franklin-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/* Roboto — latin-ext */
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300 700; font-stretch: 100%; font-display: swap; src: url(fonts/roboto-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
/* Roboto — latin */
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300 700; font-stretch: 100%; font-display: swap; src: url(fonts/roboto-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ── Reset & Base ────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #353535;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1a6fa0;
  text-decoration: none;
  border-bottom: 1px solid #a3cde4;
  transition: all 0.3s ease;
}

a:hover {
  color: #0d4f75;
  border-bottom-color: #1a6fa0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #353535;
}

h1 { font-size: 60px; }
h2 { font-size: 46px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 12px; }

p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1em;
}

blockquote {
  padding: 40px;
  font-weight: 200;
  font-size: 24px;
  border-left: solid 4px #47bdd6;
  background-color: rgba(0, 0, 0, 0.06);
  margin: 1.5em 0;
}

/* ── Long-form prose headings (privacy notice, etc.) ─── */

.entry-content h2 { font-size: 24px; margin-top: 2em; }
.entry-content h3 { font-size: 18px; margin-top: 1.5em; }

/* ── Visually Hidden (a11y) ──────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Skip to Content (a11y) ──────────────────────────── */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1f2024;
  color: #fff;
  padding: 8px;
  z-index: 10000;
  border: none;
}

.skip-link:focus {
  top: 0;
}

/* ── Header ──────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 34px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.site-header.scrolled,
.no-hero .site-header {
  background-color: #1f2024;
  padding: 10px 20px;
}

.site-title {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
}

.site-title a {
  color: #ffffff;
  border: none;
}

.site-title a:hover {
  color: #ffffff;
}

/* ── Desktop Nav ─────────────────────────────────────── */

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
}

.desktop-nav li a {
  display: block;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  border-radius: 2px;
  border: none;
  transition: all 0.4s ease;
}

/* Home page (transparent header): dark links on light hero */
.has-hero .site-header:not(.scrolled) .desktop-nav a {
  color: rgba(0, 0, 0, 0.4);
}

.has-hero .site-header:not(.scrolled) .desktop-nav a:hover {
  color: #111111;
}

/* Scrolled or non-home: white links on dark header */
.site-header.scrolled .desktop-nav a,
.no-hero .desktop-nav a {
  color: rgba(255, 255, 255, 0.6);
}

.site-header.scrolled .desktop-nav a:hover,
.no-hero .desktop-nav a:hover {
  color: #ffffff;
}

/* ── Mobile Nav ──────────────────────────────────────── */

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 7px 0;
  transition: all 0.4s ease;
}

.mobile-nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.94);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-overlay ul {
  list-style: none;
  text-align: center;
}

.mobile-nav-overlay li {
  margin: 10px 0;
}

.mobile-nav-overlay a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 48px;
  border: none;
}

.mobile-nav-overlay a:hover {
  color: #fc7319;
}

/* ── Hero Section (home page) ────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Page Title ──────────────────────────────────────── */

.page-title {
  font-family: 'Caveat', cursive;
  font-size: 4em;
  font-weight: 400;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 30px;
}

/* ── Content Area ────────────────────────────────────── */

.content-area {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.entry-content {
  padding-top: 20px;
}

.entry-content p {
  margin-bottom: 1.2em;
}

/* ── Professional Page ───────────────────────────────── */

.pro-hero {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.pro-hero-img {
  flex: 0 0 320px;
  max-width: 320px;
}

.pro-hero-img img {
  width: 100%;
  border-radius: 3px;
}

.pro-hero-text {
  flex: 1;
}

.pro-hero-text p:first-child {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.career-section {
  margin-bottom: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.career-section h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 22px;
  color: #675690;
}

.career-section h3:first-child {
  margin-top: 0;
}

.career-section h4 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
}

.career-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.career-section li {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.awards-section {
  margin-bottom: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.awards-section ul {
  list-style: disc;
  margin-left: 20px;
}

.awards-section li {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 5px;
}

/* ── Image Gallery (small thumbnails) ────────────────── */

.photo-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 30px;
}

.photo-row img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.photo-row img:hover {
  transform: scale(1.05);
}

/* ── Presentation Grid ───────────────────────────────── */

.presentations-section {
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.presentations-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #675690;
}

.presentation-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}

.presentation-card {
  background: #efefef;
  padding: 20px;
  width: calc(33.333% - 30px);
  margin: 15px;
  display: inline-block;
  vertical-align: top;
}

.presentation-card .pres-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}

.presentation-card .pres-date {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.presentation-card .pres-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.pres-tag {
  display: inline-block;
  padding: 4px 7px;
  background-color: #dcdcdc;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  color: #353535;
  border: none;
}

/* ── Publications List ────────────────────────────────── */

.publications-section {
  padding-top: 30px;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
}

.publications-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #675690;
}

.pub-list {
  list-style: none;
}

.pub-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.pub-list li:last-child {
  border-bottom: none;
}

.pub-list .pub-title {
  font-weight: 500;
  color: #353535;
}

.pub-list .pub-source {
  color: #666;
  font-size: 13px;
}

/* ── Speaking Engagements (list format) ──────────────── */

.speaking-section {
  padding-top: 30px;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
}

.speaking-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #675690;
}

.speaking-year {
  font-size: 20px;
  font-weight: 600;
  color: #675690;
  margin-top: 30px;
  margin-bottom: 12px;
  padding-bottom: 5px;
  border-bottom: 2px solid #efefef;
}

.speaking-year:first-of-type {
  margin-top: 0;
}

.speaking-list {
  list-style: none;
}

.speaking-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.speaking-list li:last-child {
  border-bottom: none;
}

.speaking-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  background: #efefef;
  color: #666;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}

.speaking-role.keynote {
  background: #675690;
  color: #fff;
}

.speaking-title {
  font-weight: 500;
}

.speaking-venue {
  color: #666;
  font-size: 13px;
}

/* ── Media Mentions ──────────────────────────────────── */

.media-section {
  padding-top: 30px;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
}

.media-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #675690;
}

.media-list {
  list-style: none;
}

.media-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.media-list li:last-child {
  border-bottom: none;
}

.media-list .media-outlet {
  font-weight: 500;
  color: #353535;
}

.media-list .media-date {
  color: #666;
  font-size: 13px;
}

/* ── Trans Advocacy Page ─────────────────────────────── */

.featured-image {
  margin-bottom: 30px;
}

.featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.video-section {
  margin: 30px 0;
}

.video-section h3 {
  margin-bottom: 15px;
}

.video-list {
  list-style: none;
  margin-bottom: 30px;
}

.video-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.media-mentions {
  margin: 30px 0;
}

.media-card {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.media-card img {
  flex: 0 0 300px;
  max-width: 300px;
  border-radius: 3px;
}

.media-card-text {
  flex: 1;
}

.media-card-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.media-card-text .media-meta {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #666;
}

/* ── Disability Advocacy ─────────────────────────────── */

.disability-hero img {
  width: 100%;
  max-height: 478px;
  object-fit: cover;
  margin-bottom: 30px;
}

/* ── Music Page ──────────────────────────────────────── */

.music-portrait {
  text-align: center;
  margin-bottom: 30px;
}

.music-portrait img {
  display: inline-block;
  max-width: 640px;
  border: 15px solid #FDFDFD;
  border-radius: 3px;
  box-shadow: 18px 7px 95px 0px rgba(0, 0, 0, 0.3);
}

.music-content {
  max-width: 900px;
  margin: 0 auto;
}

.recordings-section {
  background: #ECE9DD;
  padding: 48px 20px 40px;
  margin-top: 40px;
}

.recordings-section .content-area {
  max-width: 961px;
}

.recordings-section h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.recording-entry {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recording-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recording-entry h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.recording-entry .rec-date {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.recording-entry p {
  font-size: 15px;
}

/* ── Footer ──────────────────────────────────────────── */

.site-footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 12px;
  color: #666;
  margin-top: 40px;
}

.site-footer a {
  color: #666;
  font-size: 12px;
}

/* ── Lightbox ────────────────────────────────────────── */

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 1023px) {
  .presentation-card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 2.5em;
    padding-top: 100px;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .content-area {
    padding: 0 20px;
  }

  .presentation-card {
    width: calc(100% - 30px);
  }

  .pro-hero {
    flex-direction: column;
  }

  .pro-hero-img {
    flex: none;
    max-width: 100%;
  }

  .media-card {
    flex-direction: column;
  }

  .media-card img {
    flex: none;
    max-width: 100%;
  }

  .photo-row img {
    width: 120px;
    height: 120px;
  }

  .music-portrait img {
    max-width: 100%;
    border-width: 8px;
  }
}
