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

[data-md-color-scheme="custom"] {
  --md-primary-fg-color: #2e2e2e;
  --md-primary-bg-color: #ffffff;
  --md-accent-fg-color:  #5a5a5a;
}

/* ─── Site Nav ──────────────────────────────────────────────────────── */

.site-nav {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(46, 46, 46, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.site-nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a5a5a;
  text-decoration: none;
  padding: 0.8rem 1rem;
  display: inline-block;
  flex: 1;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover {
  color: #1a1a1a;
  border-bottom-color: rgba(46, 46, 46, 0.4);
  text-decoration: none;
}

@media (max-width: 480px) {
  .site-nav__link {
    flex: 1 1 33.33%;
    font-size: 0.62rem;
    padding: 0.6rem 0.3rem;
    letter-spacing: 0.06em;
  }
}

/* ─── Contact Bar ───────────────────────────────────────────────────── */

.contact-bar {
  width: 100%;
  background: #f7f7f7;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
  padding: 0.6rem 3rem;
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #3a3a3a;
}

.contact-bar span:first-child {
  flex: 1;
  text-align: left;
}

.contact-bar span:nth-child(2) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.contact-bar a {
  flex: 1;
  text-align: right;
  color: #5a5a5a;
  text-decoration: none;
}

.contact-bar a:hover {
  color: #1a1a1a;
}

.contact-sep {
  color: rgba(46, 46, 46, 0.3);
}

@media (max-width: 600px) {
  .contact-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.8rem 1rem;
    font-size: 0.7rem;
  }

  .contact-bar span:first-child,
  .contact-bar a {
    flex: none;
    text-align: center;
  }

  .contact-bar span:nth-child(2) {
    position: static;
    transform: none;
  }
}

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

html,
body {
  height: 100%;
}

/* Hide MkDocs chrome entirely */
.md-header,
.md-footer,
.md-sidebar,
.md-tabs,
.md-nav,
.md-search {
  display: none !important;
}

.md-main {
  background: #ffffff;
  min-height: 100vh;
}

.md-main__inner {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.md-content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.md-content__inner {
  margin: 0;
  padding: 0;
}

/* Remove default article padding */
article.md-content__inner {
  padding: 0;
  margin: 0;
}

article.md-content__inner > p,
article.md-content__inner > h1,
article.md-content__inner > h2,
article.md-content__inner > h3 {
  display: none;
}

/* ─── Holding Page Layout ───────────────────────────────────────────── */

.holding-page {
  min-height: 100vh;
  background-color: #ffffff;
  color: #2e2e2e;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

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

.site-header {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  width: 100%;
  max-width: 860px;
}

.logo-mark {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.site-tagline {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-size: clamp(0.65rem, 1.8vw, 0.8rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5a5a5a;
}

/* ─── Main ──────────────────────────────────────────────────────────── */

.site-main {
  width: 100%;
  max-width: 860px;
  flex: 1;
}

/* ─── About ─────────────────────────────────────────────────────────── */

.about-text {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: center;
}

/* ─── Offerings ─────────────────────────────────────────────────────── */

.offerings-section {
  padding: 1rem 0 2.5rem;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.offering {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(46, 46, 46, 0.18);
  transition: border-color 0.25s ease;
}

a.offering:hover {
  border-color: rgba(46, 46, 46, 0.45);
}

.offering-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.offering-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ─── Section Label ─────────────────────────────────────────────────── */

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #5a5a5a;
  text-align: center;
  margin-bottom: 1.8rem;
}

/* ─── Social Links ──────────────────────────────────────────────────── */

.social-section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.social-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a5a5a;
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(46, 46, 46, 0.2);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.social-link:hover {
  color: #1a1a1a;
  border-color: rgba(46, 46, 46, 0.5);
  text-decoration: none;
}

/* ─── Contact ───────────────────────────────────────────────────────── */

.contact-section {
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.contact-email {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-email:hover {
  color: #1a1a1a;
}

/* ─── Stream Links ──────────────────────────────────────────────────── */

.stream-section {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.stream-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #5a5a5a;
  transition: opacity 0.2s ease;
}

.stream-link:hover {
  opacity: 0.7;
}

.stream-link svg {
  width: 22px;
  height: 22px;
}

.stream-link span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a5a5a;
}

/* ─── Gallery ───────────────────────────────────────────────────────── */

.gallery-section {
  padding: 2.5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  border: 1px solid rgba(46, 46, 46, 0.18);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ─── Eye of Horus ──────────────────────────────────────────────────── */

.horus-item {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(46, 46, 46, 0.18);
  overflow: hidden;
}

.horus-item img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

/* ─── Biography (About Me) ──────────────────────────────────────────── */

.bio-section {
  max-width: 680px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.bio-hero {
  width: 100%;
  margin: 0 auto 2.5rem;
  border: 1px solid rgba(46, 46, 46, 0.18);
  overflow: hidden;
}

.bio-hero img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.bio-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 2.5rem 0 1.2rem;
}

.bio-link-inline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5a5a;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 46, 46, 0.25);
  margin-left: 0.8rem;
  vertical-align: middle;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.bio-link-inline:hover {
  color: #1a1a1a;
  border-color: rgba(46, 46, 46, 0.6);
}

.bio-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: #2e2e2e;
  margin: 1.8rem 0 0.8rem;
}

.bio-text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 1.2rem;
}

.bio-list {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: #4a4a4a;
  margin: 0 0 1.2rem 1.4rem;
}

.bio-list ul {
  margin: 0.4rem 0 0.4rem 1.4rem;
}

.bio-link {
  color: #5a5a5a;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 46, 46, 0.25);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.bio-link:hover {
  color: #1a1a1a;
  border-color: rgba(46, 46, 46, 0.6);
}

.bio-divider {
  border: none;
  border-top: 1px solid rgba(46, 46, 46, 0.1);
  margin: 2.5rem 0;
}

.bio-image {
  max-width: 360px;
  margin: 1.5rem auto;
  border: 1px solid rgba(46, 46, 46, 0.18);
  overflow: hidden;
}

.bio-image img {
  width: 100%;
  display: block;
}

/* ─── Placeholder Pages ─────────────────────────────────────────────── */

.placeholder-section {
  padding: 3rem 0;
  text-align: center;
}

.placeholder-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 2rem;
}

.back-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a5a5a;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 46, 46, 0.25);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.back-link:hover {
  color: #1a1a1a;
  border-color: rgba(46, 46, 46, 0.6);
}

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

.site-footer-bar {
  width: 100%;
  max-width: 860px;
  padding: 2rem 0 3rem;
  text-align: center;
}

.site-footer-bar p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(46, 46, 46, 0.35);
}
