/* app/frontend/tidesoundings/stylesheets/_palette.css */
:root {
  --primary-color: #003360;
  --primary-100: #e0ecf7;
  --primary-300: #7ba6cf;
  --primary-500: #0056a3;
  --primary-700: #003f7d;
  --primary-900: #003360;
  --secondary-warm-100: #fdebe7;
  --secondary-warm-300: #f9b6a8;
  --secondary-warm-500: #f26b51;
  --secondary-warm-700: #c33b2e;
  --secondary-warm-900: #7a1e16;
  --secondary-cool-100: #e7fdf6;
  --secondary-cool-300: #a7f0da;
  --secondary-cool-500: #3ac9a8;
  --secondary-cool-700: #1b8e79;
  --secondary-cool-900: #0e4e45;
  --neutral-100: #f8fafc;
  --neutral-300: #e2e8f0;
  --neutral-500: #94a3b8;
  --neutral-700: #475569;
  --neutral-900: #1e293b;
  --accent-100: #fff8e1;
  --accent-300: #ffe082;
  --accent-500: #ffc107;
  --accent-700: #ffb300;
  --accent-900: #996c00;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --error-100: #fee2e2;
  --error-500: #ef4444;
  --error-700: #b91c1c;
  --success-100: #dcfce7;
  --success-500: #22c55e;
  --success-700: #15803d;
  --info-100: #e0f2fe;
  --info-500: #3b82f6;
  --info-700: #1d4ed8;
  --warning-100: #fff7db;
  --warning-500: #facc15;
  --warning-700: #ca8a04;
}

/* app/frontend/tidesoundings/stylesheets/base.css */
h1 {
  font-size: 48px;
  color: var(--primary-500);
}
h2 {
  font-size: 36px;
  color: var(--secondary-500);
}
h3 {
  font-size: 32px;
  color: var(--primary-300);
}
h4 {
  font-size: 28px;
  color: var(--secondary-300);
}
h5 {
  font-size: 24px;
  color: var(--primary-100);
}
h6 {
  font-size: 20px;
  color: var(--secondary-100);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  small {
    font-size: .6em;
    color: var(--secondary-cool-500);
  }
}

/* app/frontend/tidesoundings/stylesheets/buttons.css */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-weight: 600;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}
.btn-primary {
  background: var(--secondary-warm-500);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}
.btn-ghost {
  color: var(--primary-700);
  background: transparent;
  border: 1px solid var(--neutral-300);
}
.btn-ghost:hover {
  background: var(--neutral-100);
}

/* app/frontend/tidesoundings/stylesheets/divider.css */
.wave-divider-static {
  line-height: 0;
  background: var(--secondary-cool-100);
  margin: -10px -10px 0 -10px;
}
.wave-divider-static svg {
  display: block;
  width: 100%;
  height: 80px;
}
.wave-divider-static path {
  fill: var(--primary-100);
  filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.05));
}

/* app/frontend/tidesoundings/stylesheets/hero.css */
section.hero {
  .hero-tagline {
    font-size: 0.95rem;
    line-height: 1.1;
    color: var(--neutral-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .hero-tagline::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--secondary-cool-500);
    margin: 0.5rem auto 0;
    opacity: 0.5;
  }
  h1 {
    margin: 0;
  }
  h2 {
    margin: 0;
    color: var(--primary-300);
  }
  .hero-text {
    font-size: 1.4em;
    color: #888888;
    line-height: .95;
    max-width: 80ch;
    margin: .5rem auto 1.5rem 2rem;
  }
}

/* app/frontend/tidesoundings/stylesheets/series.css */
section.series {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem;
  .series-card {
    background: var(--neutral-100);
    border-radius: 1rem;
    border-top: 5px solid var(--series-color);
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    &.disabled {
      cursor: default;
    }
    h3 {
      margin: 0.8rem 0 0.5rem;
      color: var(--primary-900);
    }
    .description {
      color: var(--neutral-700);
      font-size: 0.95rem;
    }
    .emoji {
      font-size: 3rem;
    }
  }
  .series-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15), 0 0 12px var(--accent-100);
  }
  .series-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background:
      radial-gradient(
        circle at center,
        var(--accent-100) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .series-card:hover::after {
    opacity: 0.35;
  }
  .series-card .series-button {
    display: inline-block;
    margin-top: 1rem;
    background: var(--secondary-warm-500);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
  }
  .series-card {
    &.disabled {
      .series-button {
        background: var(--gray-400);
        color: var(--gray-100);
      }
    }
  }
  .series-card:hover .series-button {
    opacity: 1;
    transform: translateY(0);
  }
}

/* app/frontend/tidesoundings/stylesheets/cta.css */
section.newsletter-cta {
  margin: 0 -10px;
  padding: clamp(2rem, 5vw, 3rem) 1rem;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      var(--secondary-cool-100),
      var(--primary-100));
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.formkit-form {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

/* app/frontend/tidesoundings/stylesheets/season_preview.css */
section.season-preview {
  background: var(--neutral-100);
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  border-radius: 1rem;
  max-width: 700px;
  margin: 0 auto;
  .season-header {
    margin: 0 auto 1rem;
    text-align: center;
    h2 {
      color: var(--primary-900);
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      margin: 0 0 .25rem;
    }
    .season-subtitle {
      color: var(--neutral-700);
      margin: 0 auto 1rem;
      max-width: 52ch;
    }
    .season-ctas {
      display: flex;
      gap: .75rem;
      justify-content: center;
      flex-wrap: wrap;
      .btn {
        display: inline-block;
        text-decoration: none;
        border-radius: 999px;
        padding: .6rem 1rem;
        font-weight: 600;
        transition:
          transform .2s ease,
          box-shadow .2s ease,
          background .2s ease;
      }
      .btn-primary {
        background: var(--secondary-warm-500);
        color: #fff;
      }
      .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
      }
      .btn-ghost {
        color: var(--primary-700);
        background: transparent;
        border: 1px solid var(--neutral-300);
      }
      .btn-ghost:hover {
        background: var(--neutral-100);
      }
    }
  }
  .season-carousel {
    position: relative;
    max-width: 600px;
    margin: 1rem auto 0;
    .track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(280px, 1fr);
      gap: 1rem;
      overflow-x: auto;
      padding: 1rem .5rem 1.5rem;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: var(--primary-300) transparent;
      outline: none;
      .season-card {
        scroll-snap-align: center;
        background: #fff;
        border-radius: 1rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
        padding: 1.2rem 1.2rem 1rem;
        position: relative;
        overflow: hidden;
        min-height: 360px;
        .season-pill {
          display: inline-block;
          font-size: .75rem;
          font-weight: 700;
          padding: .2rem .6rem;
          border-radius: 999px;
          letter-spacing: .02em;
          color: #fff;
          background: var(--primary-700);
        }
        h3 {
          margin: .35rem 0 .4rem;
          color: var(--primary-900);
          font-size: 1.2rem;
        }
        .season-blurb {
          color: var(--neutral-700);
          margin: 0;
        }
        .series-list {
          list-style: none;
          padding: .8rem 0 0;
          margin: 0;
          display: grid;
          gap: .4rem;
        }
        .series-list li {
          color: var(--neutral-700);
          display: flex;
          align-items: center;
          gap: .5rem;
        }
        .dot {
          width: .6rem;
          height: .6rem;
          display: inline-block;
          border-radius: 50%;
        }
        .art {
          position: absolute;
          inset: -20% -10% auto -10%;
          height: 55%;
          background:
            radial-gradient(
              60% 60% at 50% 20%,
              var(--primary-100),
              transparent 70%),
            linear-gradient(
              135deg,
              var(--primary-100),
              transparent 40%),
            repeating-radial-gradient(
              circle at 20% 10%,
              transparent 0 6px,
              rgba(255, 255, 255, .35) 6px 10px);
          opacity: .85;
          pointer-events: none;
          filter: saturate(1.1);
        }
      }
    }
    .track::-webkit-scrollbar {
      height: 10px;
    }
    .track::-webkit-scrollbar-thumb {
      background: var(--primary-300);
      border-radius: 999px;
    }
  }
  .season-carousel .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition:
      transform .18s ease,
      box-shadow .18s ease,
      background .18s ease;
    color: var(--primary-700);
    z-index: 1000;
  }
  .season-carousel .nav:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .season-carousel .prev {
    left: -6px;
  }
  .season-carousel .next {
    right: -6px;
  }
}
@media (max-width: 720px) {
  section.season-preview {
    .season-carousel {
      .nav {
        display: none;
      }
      .track {
        padding-bottom: 1rem;
      }
    }
  }
}

/* app/frontend/tidesoundings/stylesheets/article_browse.css */
.article-browse {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-left: 5px;
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  border-left: 4px solid;
  border-top: 1px solid;
  border-top-left-radius: 10px;
  .image_side {
    width: 150px;
    height: 150px;
    margin-right: 15px;
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
    cursor: pointer;
    vertical-align: top;
    background-color: #eee;
    &.blank {
      background-color: #ccc;
    }
    img {
      max-height: 150px;
      transform: translate(-50%, -50%);
      position: relative;
      left: 50%;
      top: 50%;
    }
  }
  .content_container {
    width: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    .content {
      width: 100%;
      .title {
        line-height: 1em;
        font-weight: bold;
        font-size: 1.8em;
        margin-top: 0;
        margin-bottom: 0;
        cursor: pointer;
      }
      .byline {
        border-left: 2px solid;
        padding-left: 2px;
        font-size: .8em;
        color: var(--neutral-700);
        a {
          text-decoration: none;
          color: var(--neutral-700);
        }
      }
      .main {
        font-size: 1em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
      }
    }
    .readmore {
      width: 100%;
      font-size: .8em;
      margin-top: 1em;
      text-align: right;
      vertical-align: bottom;
    }
  }
}

/* app/frontend/tidesoundings/stylesheets/main_layout.css */
body {
  position: relative;
  .interior-body {
    background-color: var(--neutral-100);
    margin: 0 auto;
    max-width: 1200px;
  }
}
header {
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px solid var(--gray-300);
  .left {
    display: flex;
    flex-flow: row nowrap;
    img {
      flex: 0 0 auto;
      height: 24px;
      width: 24px;
      margin-right: 5px;
    }
    .banner-text {
      white-space: nowrap;
      flex: 1 1 auto;
      font-size: 1.2em;
      font-style: italic;
      font-weight: bold;
      color: var(--primary-500);
    }
  }
  nav.right {
    flex: 1 1 auto;
    ul {
      margin: 0;
      list-style: none;
      display: flex;
      flex-flow: row nowrap;
      justify-content: flex-end;
      li {
        margin: 0 10px;
        a {
          text-decoration: none;
        }
        a:hover {
          text-decoration: underline;
        }
        a.active {
          font-weight: bold;
          text-decoration: underline;
        }
      }
    }
  }
}
main {
  padding: 5px 10px;
  min-height: 600px;
  .tidesoundings-hero {
    margin: 0 -10px;
    max-width: 100%;
  }
}
footer {
  a {
    text-decoration: none;
    color: black;
    font-size: .8em;
  }
  a:hover {
    text-decoration: underline;
  }
  a.active {
    font-weight: bold;
    text-decoration: underline;
  }
  display: flex;
  flex-flow: row nowrap;
  border-top: 1px solid var(--gray-300);
  .left {
    flex: 1 1 auto;
    text-align: left;
    margin-left: 5px;
  }
  .middle {
    flex: 1 1 auto;
    text-align: center;
    a {
      font-style: italic;
    }
  }
  .right {
    flex: 1 1 auto;
    text-align: right;
    margin-right: 5px;
    a {
      font-style: italic;
    }
  }
}
@media (max-width: 600px) {
  footer {
    display: block;
    .left,
    .middle,
    .right {
      text-align: left;
    }
  }
}

/* app/frontend/core/stylesheets/base.css */
/*# sourceMappingURL=/assets/tidesoundings-813546b6.css.map */
