/* [project]/apps/ifac/src/app/globals.css [app-client] (css) */
:root {
  --ink: #171615;
  --ink-soft: #4f4a44;
  --paper: #f8f5ef;
  --surface: #fffdf8;
  --line: #d8d0c2;
  --charcoal: #24282b;
  --oxide: #9a3f2f;
  --moss: #596b55;
  --blue: #273d54;
  --gold: #c79a42;
  --shadow: 0 18px 55px #1716151f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  z-index: 20;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #f8f5eff0;
  border-bottom: 1px solid #d8d0c2d9;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem clamp(1rem, 3vw, 2.5rem);
  display: flex;
  position: sticky;
  top: 0;
}

.brand-mark {
  align-items: center;
  gap: .75rem;
  min-width: 0;
  display: flex;
}

.brand-seal {
  border: 1px solid var(--ink);
  background: var(--surface);
  width: 2.5rem;
  height: 2.5rem;
  color: var(--oxide);
  place-items: center;
  font-family: Georgia, serif;
  font-size: .85rem;
  font-weight: 700;
  display: grid;
}

.brand-copy strong {
  font-family: Georgia, Times New Roman, serif;
  font-size: 1rem;
  line-height: 1.1;
  display: block;
}

.brand-copy span {
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: .1rem;
  font-size: .75rem;
  display: block;
}

.main-nav {
  color: var(--ink-soft);
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  display: flex;
}

.main-nav a {
  border-radius: 4px;
  padding: .5rem .7rem;
}

.hero {
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  align-items: flex-end;
  min-height: min(760px, 100vh - 68px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.hero:after {
  content: "";
  z-index: -1;
  background: linear-gradient(90deg, #171615d1, #1716157a 52%, #1716152e);
  position: absolute;
  inset: 0;
}

.hero-inner {
  color: #fffdf8;
  width: min(1180px, 100% - 2rem);
  margin: 0 auto;
  padding: 5rem 0 6.5rem;
}

.kicker {
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
  font-size: .78rem;
  font-weight: 700;
}

.hero h1 {
  letter-spacing: 0;
  max-width: 860px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: .95;
}

.hero p:not(.kicker) {
  color: #fffdf8e0;
  max-width: 640px;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button-row {
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
  display: flex;
}

.button, .button-secondary, .icon-button {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-height: 2.75rem;
  padding: .75rem 1rem;
  font-weight: 700;
  transition: transform .14s, background .14s, border .14s;
  display: inline-flex;
}

.button {
  background: var(--oxide);
  color: #fffdf8;
}

.button-secondary {
  color: #fffdf8;
  background: #fffdf81f;
  border-color: #fffdf87a;
}

.button:hover, .button-secondary:hover, .icon-button:hover {
  transform: translateY(-1px);
}

.section {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.section[data-tone="light"] {
  background: var(--surface);
}

.section[data-tone="dark"] {
  background: var(--charcoal);
  color: #f8f5ef;
}

.section-inner {
  width: min(1180px, 100% - 2rem);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.split {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(1.5rem, 5vw, 5rem);
  display: grid;
}

.section-title {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1;
}

.body-copy {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section[data-tone="dark"] .body-copy {
  color: #f8f5efc7;
}

.stats-grid, .event-grid, .gallery-grid, .admin-grid, .embed-grid {
  gap: 1rem;
  display: grid;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.stat-tile, .event-card, .gallery-card, .embed-card, .admin-panel, .table-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  box-shadow: 0 1px #17161508;
}

.stat-tile {
  min-height: 7rem;
  color: var(--ink-soft);
  align-items: end;
  padding: 1rem;
  font-weight: 700;
  display: flex;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8e1d8;
  width: 100%;
  display: block;
}

.gallery-body {
  padding: 1rem;
}

.gallery-body h3, .event-card h3, .admin-panel h2, .table-panel h2 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
}

.gallery-meta, .event-meta, .small-note {
  color: var(--ink-soft);
  font-size: .85rem;
  line-height: 1.5;
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card {
  flex-direction: column;
  gap: .75rem;
  min-height: 100%;
  padding: 1.1rem;
  display: flex;
}

.event-card .button {
  margin-top: auto;
}

.form-shell {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  gap: .75rem;
  padding: 1rem;
  display: grid;
}

.field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  display: grid;
}

.field {
  gap: .35rem;
  display: grid;
}

.field label {
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
}

.field input, .field textarea, .field select {
  border: 1px solid var(--line);
  width: 100%;
  color: var(--ink);
  background: #fff;
  border-radius: 4px;
  padding: .7rem .75rem;
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.form-status {
  min-height: 1.25rem;
  color: var(--moss);
  font-size: .9rem;
}

.embed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.embed-card {
  overflow-wrap: anywhere;
  padding: 1rem;
  font-family: Courier New, monospace;
  font-size: .8rem;
  line-height: 1.5;
}

.footer {
  background: var(--ink);
  color: #f8f5ef;
  padding: 2.5rem clamp(1rem, 3vw, 2.5rem);
}

.footer-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
}

.footer-links {
  flex-wrap: wrap;
  gap: .6rem;
  display: flex;
}

.page-heading {
  width: min(1180px, 100% - 2rem);
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.page-heading h1 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: .98;
}

.admin-shell {
  width: min(1320px, 100% - 2rem);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.admin-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
}

.admin-panel, .table-panel {
  padding: 1rem;
}

.section-editor {
  gap: .75rem;
  margin-top: 1rem;
  display: grid;
}

.section-editor textarea {
  min-height: 18rem;
  font-family: Courier New, monospace;
  font-size: .85rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: .9rem;
}

th, td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  padding: .75rem;
}

th {
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: .74rem;
}

.login-screen {
  background: var(--charcoal);
  place-items: center;
  min-height: 100vh;
  padding: 1rem;
  display: grid;
}

.login-card {
  background: var(--paper);
  width: min(440px, 100%);
  box-shadow: var(--shadow);
  border: 1px solid #f8f5ef2e;
  border-radius: 6px;
  padding: 1.25rem;
}

@media (max-width: 900px) {
  .split, .admin-grid, .stats-grid, .event-grid, .gallery-grid, .embed-grid, .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-bottom: 4rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    position: static;
  }

  .main-nav {
    justify-content: flex-start;
  }
}

body {
  color: #e8e3e4;
  background: #020202;
  font-family: Arial, Helvetica, sans-serif;
}

nextjs-portal {
  display: none !important;
}

.site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: #020202;
  border-bottom: 0;
  width: min(1000px, 100% - 24px);
  margin: 0 auto;
  padding: 12px 0 8px;
  display: block;
  position: static;
}

.header-main, .social-bar {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.social-bar {
  margin-bottom: 8px;
}

.social-bar img {
  width: 214px;
  max-width: 100%;
  height: auto;
  display: block;
}

.social-bar-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .3rem;
  display: flex;
}

.social-bar-links a {
  color: #20d7ff;
  background: #050505;
  border: 1px solid #40215c;
  padding: .25rem .45rem;
  font-size: .78rem;
  font-weight: 700;
}

.social-bar-links a:hover, .social-bar-links a:focus-visible {
  color: #fff;
  border-color: #20d7ff;
}

.brand-mark {
  gap: 10px;
}

.brand-seal {
  color: #ff8c00;
  background: #050505;
  border: 2px solid #9c40d8;
  width: 54px;
  height: 34px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .95rem;
}

.brand-copy strong {
  color: #ff8c00;
  letter-spacing: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}

.brand-copy span {
  color: #20d7ff;
  text-transform: none;
}

.main-nav {
  color: #20d7ff;
  gap: .25rem;
  font-size: .82rem;
}

.main-nav a {
  color: #20d7ff;
  background: #050505;
  border: 1px solid #40215c;
  border-radius: 0;
  padding: .35rem .5rem;
}

.main-nav a:hover, .main-nav a:focus-visible {
  color: #fff;
  background: #16071f;
}

.ifac-directory {
  width: min(1000px, 100% - 24px);
  margin: 0 auto 28px;
}

.hero.image-only {
  background: #050505;
  border: 2px solid #9c40d8;
  min-height: 0;
  display: block;
}

.hero.image-only:before, .hero.image-only:after {
  content: none;
}

.hero.image-only img {
  width: 100%;
  height: auto;
  display: block;
}

.ifac-panel {
  color: #e8e3e4;
  background: #050505;
  border: 2px solid #9c40d8;
  margin-top: 14px;
  padding: 14px;
}

.ifac-panel h1, .ifac-panel h2 {
  color: #ff8c00;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
}

.intro-panel h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.ifac-panel p {
  color: #e8e3e4;
  max-width: 850px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.directory-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 12px;
  display: grid;
}

.directory-links a {
  color: #20d7ff;
  background: #020202;
  border: 1px solid #40215c;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  font-weight: 700;
  display: flex;
}

.directory-links a:hover, .directory-links a:focus-visible {
  color: #fff;
  border-color: #20d7ff;
}

.image-link {
  min-height: 34px;
  padding: 0;
}

.image-link img {
  width: 240px;
  max-width: 100%;
  height: auto;
}

.media-panel h2 a {
  color: #ff8c00;
}

.embed-frame {
  background: #020202;
  border: 1px solid #40215c;
  overflow: hidden;
}

.embed-frame iframe {
  border: 0;
  width: 100%;
  display: block;
}

.blog-frame iframe {
  min-height: 480px;
}

.video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  height: 100%;
}

.more-videos {
  color: #ff8c00;
  margin-top: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.more-videos img, .social-icons-strip {
  height: auto;
  display: block;
}

.social-icons-strip {
  width: 214px;
  max-width: 100%;
  margin: 0 0 12px;
}

.live-panel {
  border-color: #20d7ff;
}

.live-panel h2 {
  color: #20d7ff;
}

.form-shell {
  background: #020202;
  border: 1px solid #40215c;
  border-radius: 0;
  margin-top: 12px;
}

.field label, .gallery-meta, .event-meta, .small-note {
  color: #bca7cf;
}

.field input, .field textarea, .field select {
  color: #fff;
  background: #050505;
  border-color: #40215c;
  border-radius: 0;
}

.button, .button-secondary, .icon-button {
  border-radius: 0;
}

.button {
  color: #020202;
  background: #20d7ff;
}

.event-list {
  gap: 8px;
  margin-top: 12px;
  display: grid;
}

.event-card {
  color: #e8e3e4;
  min-height: 0;
  box-shadow: none;
  background: #020202;
  border: 1px solid #40215c;
  border-radius: 0;
}

.event-card strong {
  color: #ff8c00;
}

.event-card span {
  color: #bca7cf;
  font-size: .9rem;
}

.footer {
  color: #e8e3e4;
  background: #020202;
  border-top: 2px solid #9c40d8;
}

.footer-links a {
  color: #20d7ff;
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 16px, 1000px);
  }

  .header-main, .social-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-bar-links {
    justify-content: flex-start;
  }

  .ifac-directory {
    width: min(100% - 16px, 1000px);
  }

  .directory-links, .video-grid {
    grid-template-columns: 1fr;
  }
}

.profile-intro {
  width: min(1000px, 100% - 24px);
  margin: 0 auto;
  padding: 18px 0 0;
}

.profile-back {
  color: #20d7ff;
  margin-bottom: 8px;
  font-size: .9rem;
  font-weight: 700;
  display: inline-block;
}

.profile-back:hover {
  color: #fff;
}

.profile-name {
  color: #ff8c00;
  text-transform: uppercase;
  margin: 0 0 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
}

.profile-role {
  color: #20d7ff;
  margin: 0 0 14px;
  font-size: 1rem;
}

.profile-body {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  width: min(1000px, 100% - 24px);
  margin: 0 auto 32px;
  display: grid;
}

.profile-sidebar {
  color: #e8e3e4;
  background: #050505;
  border: 2px solid #9c40d8;
  padding: 14px;
}

.profile-portrait {
  object-fit: cover;
  border: 1px solid #40215c;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  display: block;
}

.profile-bio p {
  color: #e8e3e4;
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.profile-email {
  color: #20d7ff;
  margin-top: 4px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
}

.profile-email:hover {
  color: #fff;
}

.profile-links {
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  display: flex;
}

.profile-links li {
  display: block;
}

.profile-links a {
  color: #20d7ff;
  font-size: .95rem;
  font-weight: 700;
}

.profile-links a:hover {
  color: #fff;
}

.profile-gallery {
  background: #050505;
  border: 2px solid #9c40d8;
  min-height: 200px;
  padding: 14px;
}

.artwork-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.artwork-card {
  background: #020202;
  border: 1px solid #40215c;
  margin: 0;
  overflow: hidden;
}

.artwork-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111;
  width: 100%;
  display: block;
}

.artwork-card figcaption {
  color: #e8e3e4;
  padding: 7px 8px;
  font-size: .9rem;
  line-height: 1.3;
}

.profile-no-work {
  color: #bca7cf;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .profile-body {
    grid-template-columns: 1fr;
  }

  .artwork-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.about-body {
  width: min(1000px, 100% - 24px);
  margin: 0 auto 32px;
}

.about-statement {
  background: #050505;
  border: 2px solid #9c40d8;
  margin-bottom: 16px;
  padding: 20px 24px;
}

.about-statement p {
  color: #e8e3e4;
  max-width: 740px;
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-statement p:last-child {
  margin-bottom: 0;
}

.about-sig {
  font-weight: 700;
  color: #ff8c00 !important;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.team-card {
  text-align: center;
  color: #e8e3e4;
  background: #050505;
  border: 2px solid #40215c;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px 14px;
  text-decoration: none;
  transition: border-color .15s;
  display: flex;
}

a.team-card:hover {
  border-color: #20d7ff;
}

.team-photo {
  object-fit: cover;
  background: #111;
  border: 2px solid #40215c;
  border-radius: 50%;
  width: 107px;
  height: 107px;
  margin-bottom: 10px;
  display: block;
}

a.team-card:hover .team-photo {
  border-color: #20d7ff;
}

.team-name {
  color: #e8e3e4;
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.team-role {
  color: #bca7cf;
  margin: 0;
  font-size: .85rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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