/*
  HYDRO LINE / 1420.LIVE
  Deliberately late-1990s inspired.
  No frameworks. No JavaScript. Just HTML + CSS.
*/

html {
  background: #08090a;
}

body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 50% 0%, #1b1d20 0, #0b0c0e 420px, #050506 1000px);
  color: #c9c9c9;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  line-height: 1.55;
}

a {
  color: #72a9ff;
}

a:visited {
  color: #a58cff;
}

a:hover {
  color: #ffffff;
  background: #233b68;
}

.page {
  width: 760px;
  max-width: calc(100% - 30px);
  margin: 18px auto 40px;
  border: 1px solid #454545;
  background: #101113;
  box-shadow: 0 0 0 4px #050505, 0 0 35px #000;
}

/* HEADER */

.site-header {
  text-align: center;
  padding: 18px 20px 22px;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.025) 0,
      rgba(255,255,255,.025) 1px,
      transparent 1px,
      transparent 3px
    ),
    #15171a;
  border-bottom: 4px double #555;
}

.signal {
  color: #7f8b99;
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.logo {
  display: block;
  width: 573px;
  max-width: 92%;
  height: auto;
  margin: 0 auto 8px;
  image-rendering: auto;
}

.tagline {
  color: #8798aa;
  font-size: 11px;
  letter-spacing: 2px;
}

/* MAIN */

main {
  padding: 24px 30px 30px;
}

.intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 25px;
}

h1 {
  margin: 0 0 4px;
  color: #e4e4e4;
  font-size: 28px;
  letter-spacing: 5px;
  text-shadow: 2px 2px 0 #000;
}

.lead {
  margin-top: 0;
  color: #8aa9d4;
  font-size: 17px;
}

.intro p:not(.lead) {
  text-align: left;
}

strong {
  color: #e1e1e1;
}

/* CALL BOX */

.call-box {
  margin: 28px 0;
  padding: 20px;
  text-align: center;
  border: 2px solid #5b6470;
  background: #0b0c0e;
  box-shadow: inset 0 0 0 2px #191c20;
}

.call-label {
  color: #8798aa;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.phone {
  display: inline-block;
  margin-top: 2px;
  color: #dce8ff !important;
  background: transparent !important;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  text-shadow: 2px 2px 0 #000;
}

.phone:hover {
  color: #ffffff !important;
}

.phone-small {
  color: #7f7f7f;
  font-size: 12px;
}

.call-box p {
  margin-bottom: 0;
  color: #aaa;
}

/* PANELS */

.columns {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.panel {
  flex: 1;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #3e4248;
  background: #151619;
}

.panel h2 {
  margin: -16px -18px 14px;
  padding: 7px 10px;
  background: #202328;
  border-bottom: 1px solid #454b54;
  color: #a7b9cf;
  font-size: 13px;
  letter-spacing: 1px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin-bottom: 7px;
}

.email {
  font-size: 18px;
  font-weight: bold;
}

/* YOUTUBE */

.youtube-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 85px;
  border: 1px dashed #555;
  background: #0b0c0d;
  color: #777;
  text-align: left;
}

.yt-icon {
  width: 38px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border: 1px solid #777;
  color: #aaa;
}

.youtube-placeholder strong {
  color: #aaa;
  font-size: 13px;
}

.youtube-placeholder span {
  color: #666;
  font-size: 10px;
}

/* HOST */

.host {
  margin-top: 0;
}

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

/* FOOTER */

footer {
  padding: 12px 20px 18px;
  text-align: center;
  color: #666;
  background: #0a0b0c;
  border-top: 4px double #444;
  font-size: 10px;
}

.footer-rule {
  overflow: hidden;
  white-space: nowrap;
  color: #3f4348;
  margin-bottom: 8px;
}

.tiny {
  color: #454545;
  font-size: 9px;
}

/* RESPONSIVE — still intentionally looks old */

@media (max-width: 650px) {
  body {
    font-size: 13px;
  }

  .page {
    max-width: calc(100% - 10px);
    margin: 5px auto 20px;
  }

  main {
    padding: 18px 15px 20px;
  }

  .columns {
    display: block;
  }

  .phone {
    font-size: 25px;
  }

  .tagline {
    font-size: 9px;
    letter-spacing: 1px;
  }
}
