/* /css/index.css */

@import url("https://fonts.googleapis.com/css2?family=Teko:wght@500;600;700&display=swap");

:root {
  --ink: #3b2515;
  --cream: #fff5cf;
  --teal: #2f9da2;
  --teal-dark: #1d666d;
  --page-gutter: clamp(24px, 5vw, 56px);
  --nav-height: clamp(56px, 6vw, 78px);
  --nav-links-right: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: transparent;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 238, 190, 0.18), rgba(80, 35, 15, 0.22)),
    url("/images/background.png") center center / cover no-repeat fixed;
}

.page-shell {
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(88, 43, 20, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 43, 20, 0.045) 1px, transparent 1px);
  background-size: clamp(30px, 6vw, 46px) clamp(30px, 6vw, 46px);
  opacity: 0.52;
  mix-blend-mode: multiply;
}

/* NAVIGATION BAR
   Image path requested:
   /images/NavBar.png
*/
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(10px, 2vw, 24px);

  background-image: url("/images/NavBar.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;

  filter: drop-shadow(0 10px 18px rgba(28, 13, 6, 0.45));
}

.nav-frame {
  width: min(1540px, 100%);
  min-height: var(--nav-height);
  display: grid;

  /*
    brand | empty flexible space | links | socials
  */
  grid-template-columns: auto 1fr auto auto;

  align-items: center;
  gap: clamp(12px, 2.4vw, 34px);
}

.brand-mark {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #d8c6a6;
  text-decoration: none;

  /* Move brand farther left */
  padding-left: 0;
  transform: translateX(-90px) translateY(2px);
}

.brand-text {
  font-family: "Teko", Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: #d8c6a6;
  text-shadow:
    0 1px 0 #000,
    0 0 12px rgba(224, 174, 104, 0.22);
}

.nav-links {
  grid-column: 3;
  justify-self: end;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);

  /*
    This controls the distance between the nav links
    and the social icons on the right.
  */
  margin-right: var(--nav-links-right);

  padding: 0;
}

.nav-links a,
.nav-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(56px, 8vw, 116px);
  min-height: 32px;
  color: #d8c6a6;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(0.76rem, 1.25vw, 0.98rem);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 0 #000, 0 0 10px rgba(224, 174, 104, 0.16);
}

.nav-placeholder::before {
  content: "";
  width: min(100%, 84px);
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(216, 198, 166, 0.36), transparent);
}

.nav-actions {
  grid-column: 4;
  justify-self: end;

  display: flex;
  align-items: center;
  gap: clamp(8px, 1.4vw, 14px);
  padding-right: clamp(8px, 2vw, 28px);
}

.nav-action-placeholder {
  width: clamp(22px, 3vw, 30px);
  height: clamp(22px, 3vw, 30px);
  border-radius: 50%;
  border: 1px solid rgba(216, 198, 166, 0.28);
  background:
    radial-gradient(circle, rgba(216, 198, 166, 0.34) 0 26%, transparent 29%),
    rgba(0, 0, 0, 0.22);
}

.nav-social img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;

  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 1px 0 #000);
}

.hero,
.content-band,
.poster-strip,
.footer-callout {
  width: min(1180px, calc(100% - var(--page-gutter)));
  margin-inline: auto;
}

.hero {
  padding: clamp(26px, 6vw, 78px) 0 clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-logo {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 420px);
  height: auto;

  z-index: 2;
  display: block;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 237, 183, 0.82);
  color: #7b351b;
  font-size: clamp(0.68rem, 1.7vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(3rem, 10vw, 7.7rem);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  text-shadow:
    0 5px 0 #7d3d1c,
    0 9px 0 rgba(58, 31, 17, 0.45),
    0 22px 42px rgba(92, 40, 12, 0.36);
}

.hero-lead {
  max-width: 640px;
  color: #4b2d19;
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
  line-height: 1.56;
  font-weight: 700;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.78rem, 1.8vw, 0.86rem);
  font-weight: 900;
}

.button-primary {
  color: var(--cream);
  background: linear-gradient(180deg, #31b3b7, #1a7179);
  border: 2px solid rgba(255, 245, 190, 0.75);
  box-shadow: 0 7px 0 #154145, 0 18px 28px rgba(83, 37, 14, 0.32);
}

.button-secondary {
  color: #5b2f18;
  background: rgba(255, 235, 179, 0.82);
  border: 2px solid rgba(93, 51, 25, 0.32);
}

.hero-card,
.feature,
.notice-card,
.broadcast-card,
.footer-callout {
  border: 2px solid rgba(94, 50, 25, 0.24);
  box-shadow: 0 16px 34px rgba(88, 41, 16, 0.19);
}

.hero-card {
  position: relative;
  min-height: clamp(410px, 48vw, 535px);
  border-radius: clamp(22px, 4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 248, 202, 0.78), rgba(42, 151, 154, 0.18) 42%, rgba(163, 71, 31, 0.28)),
    rgba(255, 229, 169, 0.42);
  overflow: hidden;
}

.distressed-label {
  position: absolute;
  left: clamp(18px, 4vw, 28px);
  right: clamp(18px, 4vw, 28px);
  bottom: clamp(18px, 4vw, 28px);
  padding: clamp(14px, 3vw, 18px);
  border-radius: 18px;
  background: rgba(255, 238, 189, 0.86);
  color: #4b2d19;
  font-family: "Teko", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.distressed-label strong {
  display: block;
  margin-bottom: 5px;
  color: #6b2d16;
  text-transform: uppercase;
}

.content-band {
  margin-bottom: clamp(36px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.notice-card,
.broadcast-card,
.footer-callout {
  border-radius: 24px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 242, 202, 0.82);
}

.feature-number {
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature h2,
.notice-card h2,
.broadcast-card h2 {
  margin: 12px 0 8px;
  color: #6c3017;
  text-transform: uppercase;
}

.feature p,
.notice-card p,
.broadcast-card p {
  margin: 0;
  color: #4b2d19;
  font-weight: 700;
  line-height: 1.5;
}

.poster-strip {
  margin-bottom: clamp(34px, 6vw, 64px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.broadcast-card {
  background:
    linear-gradient(90deg, rgba(47, 157, 162, 0.82), rgba(47, 157, 162, 0.42)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.12) 0 8px, transparent 8px 16px);
}

.broadcast-card h2,
.broadcast-card p {
  color: var(--cream);
}

.footer-callout {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-callout strong {
  color: #763518;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero,
  .poster-strip {
    grid-template-columns: 1fr;
  }

  .content-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    width: min(680px, 100%);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 118px;
  }

  .top-bar {
    padding: 8px 10px;
    background-image: url("/images/NavBarMobile.png");
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .nav-frame {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "menu menu";
    gap: 8px 10px;
  }

  .brand-mark {
    grid-area: brand;
  }

  .brand-text {
    font-size: clamp(0.82rem, 4vw, 1.12rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-actions {
    grid-area: actions;
  }

  .nav-links {
    grid-area: menu;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-links a,
  .nav-placeholder {
    flex: 1 1 calc(25% - 8px);
    min-width: 0;
  }

  .content-band {
    grid-template-columns: 1fr;
  }

  .footer-callout {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-callout .button,
  .button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  :root {
    --nav-height: 144px;
  }

  .top-bar {
    background-image: url("/images/NavBarMobile.png");
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .nav-frame {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "menu"
      "actions";
  }

  .nav-actions {
    justify-self: center;
  }

  .nav-links a,
  .nav-placeholder {
    flex-basis: calc(50% - 8px);
  }
}

.about-section {
  width: min(980px, calc(100% - var(--page-gutter)));
  margin: clamp(36px, 6vw, 74px) auto;
}

.about-panel {
  position: relative;
  overflow: hidden;

  padding: clamp(24px, 4vw, 44px);
  border-radius: 26px;

  border: 2px solid rgba(216, 198, 166, 0.32);
  background:
    linear-gradient(135deg, rgba(18, 18, 16, 0.88), rgba(62, 34, 20, 0.82)),
    radial-gradient(circle at 18% 20%, rgba(255, 153, 58, 0.22), transparent 34%),
    radial-gradient(circle at 88% 70%, rgba(47, 157, 162, 0.2), transparent 36%);

  box-shadow:
    inset 0 0 28px rgba(255, 220, 140, 0.08),
    0 18px 38px rgba(35, 15, 7, 0.35);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(216, 198, 166, 0.22);
  border-radius: 20px;
  pointer-events: none;
}

.about-kicker {
  position: relative;
  z-index: 2;

  margin-bottom: 10px;
  color: #ff9a3d;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 154, 61, 0.35);
}

.about-panel h2 {
  position: relative;
  z-index: 2;

  margin: 0 0 14px;
  color: #fff2b2;
  font-family: "Teko", Arial, Helvetica, sans-serif;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.55);
}

.about-panel p {
  position: relative;
  z-index: 2;

  max-width: 760px;
  margin: 0 0 14px;
  color: #f4f0e8;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.about-panel p:last-child {
  margin-bottom: 0;
}
