/* ==========================================================================
   neilfilms.com — shared site styles (nav, footer, content pages)
   Loaded on every page after Bootstrap. Page-specific styles stay inline.
   ========================================================================== */

:root {
  --nf-bg: #000;
  --nf-panel: #011f27;
  --nf-text: #ffffff;
  --nf-muted: #9faab0;
  --nf-line: rgba(255, 255, 255, 0.12);
}

body {
  background-color: var(--nf-bg);
  color: var(--nf-text);
}

/* --------------------------------------------------------------- Top nav -- */
.site-nav {
  background-color: #111;
  border-bottom: 1px solid var(--nf-line);
}

.site-nav .navbar-brand {
  color: var(--nf-text);
  font-family: "Mukta", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 20px;
}

.site-nav .nav-link {
  color: #cfd8dc;
  font-family: "Mukta", sans-serif;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  padding-left: 16px;
  padding-right: 16px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--nf-text);
}

/* YouTube / Patreon text links in nav — visually separated from page links */
.nav-link-channel {
  color: #9faab0 !important;
}

.nav-link-channel:hover,
.nav-link-channel:focus {
  color: var(--nf-text) !important;
}

.nav-divider {
  width: 1px;
  background-color: var(--nf-line);
  margin: 6px 8px;
  align-self: stretch;
}

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

/* Brand icons (shared by nav + footer) */
i.yt-icon,
i.pat-icon {
  display: inline-block;
  vertical-align: text-top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

i.yt-icon {
  background-image: url(../img/youtube-logo.svg);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

i.pat-icon {
  background-image: url(../img/patreon-logo.svg);
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

/* ---------------------------------------------------------- Content pages -- */
.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 24px;
  font-family: "Mukta", sans-serif;
  font-weight: 300;
}

.page h1 {
  font-family: "Mukta", sans-serif;
  font-weight: 200;
  letter-spacing: 2px;
  font-size: 40px;
  margin-bottom: 8px;
}

.page .lead {
  color: var(--nf-muted);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 14px;
  margin-bottom: 40px;
}

.page h2 {
  font-family: "Mukta", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
  border-top: 1px solid var(--nf-line);
  padding-top: 32px;
}

.page p {
  font-size: 18px;
  line-height: 1.7;
  color: #e3e8eb;
}

.page a {
  color: #7fc7d9;
}

.page a.btn {
  color: var(--bs-btn-color);
}

/* Press pull-quotes */
.press-quote {
  border-left: 2px solid #7fc7d9;
  margin: 32px 0;
  padding: 4px 0 4px 24px;
}

.press-quote p {
  font-size: 22px;
  font-weight: 200;
  line-height: 1.5;
  font-style: italic;
  color: var(--nf-text);
  margin-bottom: 6px;
}

.press-quote cite {
  color: var(--nf-muted);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Photos on content pages */
.page-figure {
  margin: 8px 0 16px;
}

.page-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.page-figure figcaption {
  color: var(--nf-muted);
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 10px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 16px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Speaking topics */
.topic-list {
  list-style: disc;
  padding: 0 0 0 22px;
  margin: 8px 0 0;
}

.topic-list li {
  font-size: 18px;
  line-height: 1.6;
  color: #e3e8eb;
  padding: 6px 0;
}

.topic-list li::marker {
  color: #7fc7d9;
}

/* Contact block reused on About + Speaking */
.contact-block a {
  color: var(--nf-text);
  text-decoration: none;
  border-bottom: 1px solid var(--nf-muted);
}

/* ------------------------------------------------------------- Site footer -- */
.site-footer {
  border-top: 1px solid var(--nf-muted);
  padding: 36px 16px 28px;
  text-align: center;
}

.footer-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

/* Secondary social icons (Facebook, Instagram, X, Bluesky) */
.footer-social {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.footer-social a {
  color: var(--nf-muted);
  display: inline-flex;
  transition: color 0.15s ease;
}

.footer-social a:hover {
  color: var(--nf-text);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-footer .copyright {
  color: var(--nf-muted);
  font-family: "Mukta", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 13px;
  margin: 0;
}
