/* Azulxbeautyy LLC - Aquarium Lagoon Viewing Gallery motif
   Palette: lagoon-hall #EFF5F3 body, abyss-ink #16323C text,
   lagoon teal #0E7C86 accent, abyss deep #0B2E38 panels, lagoon-mist #F0F7F5,
   tank glass #FAFDFC panels, shallow shelf #DDEBE6 bands, coral accent #E2725B,
   kelp sand #C9D8CF separators */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  background-color: #EFF5F3;
  color: #16323C;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0E7C86;
  text-decoration: none;
}

a:hover {
  color: #0B2E38;
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  color: #16323C;
}

p {
  margin: 0 0 1em 0;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TIDE GAUGE RAIL NAV ============ */
.tidegauge {
  background-color: #0B2E38;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 4px solid #0E7C86;
}

.tidegauge-rail {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.tidegauge-brand {
  display: flex;
  align-items: center;
  padding: 14px 0 14px 0;
  flex: 0 0 auto;
}

.exhibit-plate {
  display: inline-block;
  background-color: #0E7C86;
  color: #F0F7F5;
  border: 2px solid #C9D8CF;
  border-radius: 4px;
  padding: 9px 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 15px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px #0B2E38;
}

.tide-markers {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex: 1 1 auto;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-end;
}

.tide-marker {
  position: relative;
  background-color: #FAFDFC;
  border: 2px solid #C9D8CF;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 0 14px;
  display: flex;
  align-items: flex-end;
  font-weight: 600;
  font-size: 15px;
}

.tide-marker a {
  display: block;
  padding: 10px 2px 12px 2px;
  color: #16323C;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.tide-marker a:hover {
  color: #0E7C86;
  text-decoration: none;
}

.tide-marker::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 8px;
  right: 8px;
  height: 6px;
  background-color: #0E7C86;
  border-radius: 3px 3px 0 0;
}

.tide-marker::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 4px;
  width: 2px;
  height: 14px;
  background-image: linear-gradient(#C9D8CF 2px, transparent 2px);
  background-size: 2px 4px;
}

.tide-marker-n1 {
  height: 74px;
}

.tide-marker-n2 {
  height: 60px;
}

.tide-marker-n3 {
  height: 80px;
}

.tide-marker-n4 {
  height: 66px;
}

.tide-marker-n5 {
  height: 72px;
}

.tidegauge-navtoggle {
  display: none;
  background-color: #FAFDFC;
  color: #0B2E38;
  border: 2px solid #C9D8CF;
  border-radius: 4px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
}

/* ============ VIEWING WINDOW HERO ============ */
.viewwindow {
  background-color: #EFF5F3;
  border-bottom: 3px solid #C9D8CF;
  padding: 52px 0 64px 0;
}

.viewwindow-grid {
  display: flex;
  align-items: center;
  gap: 46px;
  flex-wrap: wrap;
}

.viewwindow-copy {
  flex: 1 1 520px;
  min-width: 300px;
}

.viewwindow-kicker {
  display: inline-block;
  background-color: #DDEBE6;
  color: #0E7C86;
  border-left: 5px solid #0E7C86;
  padding: 5px 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.viewwindow-copy h1 {
  font-size: 46px;
  line-height: 1.12;
  margin: 0 0 20px 0;
}

.teal-words {
  color: #0E7C86;
}

.viewwindow-lede {
  font-size: 18px;
  color: #16323C;
  max-width: 620px;
  margin-bottom: 16px;
}

.viewwindow-lede2 {
  font-size: 16px;
  color: #16323C;
  max-width: 620px;
  margin-bottom: 28px;
}

.viewwindow-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.exhibit-btn {
  display: inline-block;
  background-color: #0E7C86;
  color: #F0F7F5;
  border: 2px solid #0B2E38;
  border-radius: 4px;
  padding: 13px 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.exhibit-btn:hover {
  background-color: #0B2E38;
  color: #F0F7F5;
  text-decoration: none;
}

.exhibit-btn-ghost {
  display: inline-block;
  background-color: #FAFDFC;
  color: #0E7C86;
  border: 2px solid #0E7C86;
  border-radius: 4px;
  padding: 13px 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.exhibit-btn-ghost:hover {
  background-color: #DDEBE6;
  color: #0B2E38;
  text-decoration: none;
}

/* Acrylic viewing window */
.viewwindow-window {
  flex: 1 1 420px;
  min-width: 300px;
}

.acrylic-frame {
  background-color: #0B2E38;
  border-radius: 26px 26px 14px 14px;
  padding: 16px;
  box-shadow: 0 12px 30px #0B2E38;
}

.acrylic-glass {
  position: relative;
  height: 400px;
  background-color: #DDEBE6;
  border: 6px solid #FAFDFC;
  border-radius: 22px 22px 8px 8px;
  overflow: hidden;
}

.water-line {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #0E7C86;
}

.water-shimmer {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  height: 34px;
  background-color: #C9D8CF;
}

.bubble-dot {
  position: absolute;
  background-color: #FAFDFC;
  border: 1px solid #0E7C86;
  border-radius: 50%;
}

.bubble-dot-a {
  width: 10px;
  height: 10px;
  left: 18%;
  top: 62%;
}

.bubble-dot-b {
  width: 7px;
  height: 7px;
  left: 24%;
  top: 44%;
}

.bubble-dot-c {
  width: 13px;
  height: 13px;
  left: 32%;
  top: 74%;
}

.bubble-dot-d {
  width: 8px;
  height: 8px;
  left: 62%;
  top: 52%;
}

.bubble-dot-e {
  width: 11px;
  height: 11px;
  left: 74%;
  top: 68%;
}

.kelp-cluster {
  position: absolute;
  left: 10%;
  bottom: 46px;
  width: 60px;
  height: 200px;
}

.kelp-strand {
  position: absolute;
  bottom: 0;
  width: 9px;
  background-color: #0E7C86;
  border-radius: 6px;
}

.kelp-strand-1 {
  left: 0;
  height: 150px;
}

.kelp-strand-2 {
  left: 16px;
  height: 188px;
}

.kelp-strand-3 {
  left: 32px;
  height: 122px;
}

.kelp-strand-4 {
  left: 46px;
  height: 168px;
}

.fish-school {
  position: absolute;
  right: 12%;
  top: 40%;
  width: 150px;
  height: 110px;
}

.fish-glyph {
  position: absolute;
  width: 22px;
  height: 11px;
  background-color: #0B2E38;
  border-radius: 50% 50% 50% 50%;
}

.fish-glyph::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 1px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #0B2E38;
}

.fish-glyph-1 {
  left: 0;
  top: 0;
}

.fish-glyph-2 {
  left: 42px;
  top: 22px;
}

.fish-glyph-3 {
  left: 84px;
  top: 6px;
}

.fish-glyph-4 {
  left: 26px;
  top: 52px;
}

.fish-glyph-5 {
  left: 70px;
  top: 68px;
}

.sandy-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background-color: #C9D8CF;
  border-top: 4px solid #0E7C86;
  border-radius: 40% 30% 0 0;
}

.exhibit-sill {
  height: 14px;
  background-color: #0B2E38;
  border-radius: 0 0 8px 8px;
  margin-top: 8px;
  position: relative;
}

.feeding-ring {
  position: absolute;
  right: 34px;
  top: -40px;
  width: 34px;
  height: 34px;
  border: 5px solid #E2725B;
  border-radius: 50%;
  background-color: #DDEBE6;
}

/* ============ SECTION HEADS ============ */
.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 32px;
  color: #16323C;
}

.section-head p {
  max-width: 720px;
  color: #16323C;
}

.section-eyebrow {
  display: inline-block;
  color: #0E7C86;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ============ EXHIBIT TANK WALK ============ */
.tankwalk {
  background-color: #EFF5F3;
  padding: 62px 0 70px 0;
}

.gallery-course {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 44px;
}

.gallery-course-b {
  flex-direction: row-reverse;
}

.tank-exhibit {
  background-color: #FAFDFC;
  border: 4px solid #0B2E38;
  border-radius: 18px;
  padding: 30px 26px 26px 26px;
  position: relative;
  flex: 1 1 300px;
  min-width: 280px;
  box-shadow: 0 8px 18px #C9D8CF;
}

.tank-exhibit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 26px;
  right: 26px;
  height: 22px;
  background-color: #DDEBE6;
  border: 3px solid #0B2E38;
  border-bottom: none;
  border-radius: 22px 22px 0 0;
}

.exhibit-wide {
  flex: 1 1 420px;
}

.exhibit-skew-left {
  transform: skewY(-1deg);
}

.exhibit-skew-right {
  transform: skewY(1deg);
}

.exhibit-tag {
  display: inline-block;
  background-color: #DDEBE6;
  color: #0E7C86;
  border: 2px solid #0E7C86;
  border-radius: 3px;
  padding: 3px 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.tank-exhibit h3 {
  font-size: 23px;
  color: #0E7C86;
  margin: 4px 0 12px 0;
  position: relative;
  z-index: 2;
}

.tank-exhibit p {
  color: #16323C;
  position: relative;
  z-index: 2;
}

.exhibit-code {
  display: inline-block;
  margin-top: 12px;
  color: #0E7C86;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  border-top: 2px solid #C9D8CF;
  padding-top: 8px;
  position: relative;
  z-index: 2;
}

.feeding-tab {
  display: inline-block;
  background-color: #E2725B;
  color: #0B2E38;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-left: 10px;
  position: relative;
  z-index: 2;
}

.exhibit-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #0E7C86;
  position: relative;
  z-index: 2;
}

/* ============ LAGOON BANNER ============ */
.lagoonbanner {
  background-color: #E2725B;
  color: #0B2E38;
  padding: 30px 0;
  border-top: 4px solid #0B2E38;
  border-bottom: 4px solid #0B2E38;
}

.lagoonbanner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lagoonbanner p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B2E38;
  max-width: 720px;
}

.lagoonbanner-link {
  display: inline-block;
  background-color: #0B2E38;
  color: #F0F7F5;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.lagoonbanner-link:hover {
  background-color: #FAFDFC;
  color: #0B2E38;
  text-decoration: none;
}

/* ============ NARRATIVE BANDS ============ */
.narrative {
  background-color: #DDEBE6;
  padding: 62px 0 66px 0;
  border-top: 3px solid #C9D8CF;
}

.narrative-grid {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.narrative-copy {
  flex: 1 1 520px;
  min-width: 300px;
}

.narrative-side {
  flex: 1 1 340px;
  min-width: 280px;
  background-color: #FAFDFC;
  border: 3px solid #0B2E38;
  border-radius: 14px;
  padding: 26px;
}

.narrative-side h3 {
  color: #0E7C86;
  font-size: 20px;
}

.narrative-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.narrative-list li {
  padding: 12px 0 12px 26px;
  border-bottom: 2px solid #C9D8CF;
  position: relative;
  color: #16323C;
}

.narrative-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background-color: #0E7C86;
  border-radius: 50%;
}

/* ============ TIDE GAUGE DECOR STRIP ============ */
.gauge-strip {
  background-color: #0B2E38;
  padding: 40px 0;
}

.gauge-strip-inner {
  display: flex;
  align-items: flex-end;
  gap: 34px;
  flex-wrap: wrap;
}

.gauge-post {
  flex: 0 0 auto;
  text-align: center;
}

.gauge-post-bar {
  width: 26px;
  height: 130px;
  background-color: #C9D8CF;
  border: 3px solid #0E7C86;
  border-radius: 6px;
  margin: 0 auto;
  position: relative;
}

.gauge-post-tick {
  position: absolute;
  left: 26px;
  width: 16px;
  height: 3px;
  background-color: #FAFDFC;
}

.gauge-post-tick-1 {
  top: 18px;
}

.gauge-post-tick-2 {
  top: 44px;
}

.gauge-post-tick-3 {
  top: 70px;
}

.gauge-post-tick-4 {
  top: 96px;
}

.gauge-post-label {
  display: block;
  color: #F0F7F5;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-top: 10px;
  font-weight: 700;
}

.gauge-strip-copy {
  flex: 1 1 400px;
  min-width: 280px;
}

.gauge-strip-copy h2 {
  color: #F0F7F5;
  font-size: 28px;
}

.gauge-strip-copy p {
  color: #F0F7F5;
  max-width: 640px;
}

/* ============ GALLERY BENCH ============ */
.gallerybench {
  background-color: #FAFDFC;
  padding: 56px 0;
  border-top: 3px solid #C9D8CF;
  border-bottom: 3px solid #C9D8CF;
}

.bench-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.bench-copy {
  flex: 1 1 540px;
  min-width: 300px;
}

.bench-seat {
  flex: 1 1 320px;
  min-width: 280px;
}

.bench-seat-visual {
  height: 26px;
  background-color: #0E7C86;
  border-radius: 6px;
  border: 3px solid #0B2E38;
}

.bench-seat-legs {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

.bench-leg {
  width: 12px;
  height: 44px;
  background-color: #0B2E38;
  border-radius: 0 0 4px 4px;
}

.bench-seat-note {
  margin-top: 16px;
  color: #16323C;
  font-size: 15px;
}

/* ============ LAGOON FLOOR FOOTER ============ */
.lagoonfloor {
  background-color: #0B2E38;
  color: #F0F7F5;
  padding: 50px 0 0 0;
  position: relative;
}

.lagoonfloor-sand {
  height: 12px;
  background-image: radial-gradient(#C9D8CF 2px, transparent 2px);
  background-size: 22px 12px;
  background-color: #0B2E38;
  border-top: 4px solid #0E7C86;
}

.lagoonfloor-conduits {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 34px 0;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.conduit-run {
  flex: 1 1 220px;
  min-width: 200px;
  border-left: 4px solid #0E7C86;
  padding-left: 18px;
}

.conduit-tag {
  display: inline-block;
  background-color: #FAFDFC;
  color: #0B2E38;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.conduit-run ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.conduit-run li {
  padding: 5px 0;
}

.conduit-run a {
  color: #F0F7F5;
  text-decoration: none;
}

.conduit-run a:hover {
  color: #E2725B;
  text-decoration: underline;
}

.lagoonfloor-keeper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 30px 24px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 2px solid #0E7C86;
  padding-top: 30px;
}

.keeper-card {
  flex: 1 1 420px;
  min-width: 280px;
  background-color: #0E7C86;
  border: 3px solid #C9D8CF;
  border-radius: 10px;
  padding: 22px;
}

.keeper-card h2 {
  color: #F0F7F5;
  font-size: 24px;
  margin-bottom: 8px;
}

.keeper-card p {
  color: #F0F7F5;
  margin: 0;
}

.keeper-gauge {
  flex: 0 0 auto;
  width: 60px;
}

.keeper-gauge-bar {
  width: 40px;
  height: 90px;
  background-color: #C9D8CF;
  border: 3px solid #FAFDFC;
  border-radius: 6px;
  position: relative;
}

.keeper-gauge-tick {
  position: absolute;
  left: 40px;
  width: 14px;
  height: 3px;
  background-color: #E2725B;
}

.keeper-gauge-tick-1 {
  top: 16px;
}

.keeper-gauge-tick-2 {
  top: 42px;
}

.keeper-gauge-tick-3 {
  top: 68px;
}

.lagoonfloor-base {
  background-color: #0B2E38;
  border-top: 3px solid #0E7C86;
  padding: 20px 0 26px 0;
}

.lagoonfloor-base-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.lagoonfloor-base-inner p {
  margin: 0;
  color: #F0F7F5;
  font-size: 14px;
}

.bubble-decal {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #FAFDFC;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-shown {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SECONDARY PAGES ============ */
.pagebanner {
  background-color: #0B2E38;
  color: #F0F7F5;
  padding: 48px 0;
  border-bottom: 4px solid #0E7C86;
}

.pagebanner h1 {
  color: #F0F7F5;
  font-size: 40px;
}

.pagebanner p {
  color: #F0F7F5;
  max-width: 720px;
  margin: 0;
}

.service-detail {
  background-color: #FAFDFC;
  border: 3px solid #0B2E38;
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 28px;
}

.service-detail h2 {
  color: #0E7C86;
  font-size: 26px;
}

.service-detail h3 {
  color: #16323C;
  font-size: 19px;
  margin-top: 20px;
}

.service-detail ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
  color: #16323C;
}

.service-detail li {
  padding: 4px 0;
}

.process-step {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  background-color: #DDEBE6;
  border-left: 6px solid #0E7C86;
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 18px;
}

.process-num {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  background-color: #0E7C86;
  color: #F0F7F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.process-body {
  flex: 1 1 400px;
  min-width: 240px;
}

.process-body h3 {
  margin-bottom: 6px;
  color: #0B2E38;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form-wrap {
  flex: 1 1 520px;
  min-width: 300px;
  background-color: #FAFDFC;
  border: 3px solid #0B2E38;
  border-radius: 14px;
  padding: 30px;
}

.contact-info {
  flex: 1 1 340px;
  min-width: 280px;
}

.contact-card {
  background-color: #0E7C86;
  color: #F0F7F5;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #F0F7F5;
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-card p {
  color: #F0F7F5;
  margin: 0;
}

.contact-card a {
  color: #F0F7F5;
  text-decoration: underline;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 700;
  color: #16323C;
  margin-bottom: 6px;
  font-size: 15px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #C9D8CF;
  border-radius: 6px;
  background-color: #EFF5F3;
  color: #16323C;
  font-size: 16px;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #0E7C86;
  background-color: #FAFDFC;
}

.form-note {
  font-size: 14px;
  color: #16323C;
}

.faq-item {
  background-color: #DDEBE6;
  border-left: 5px solid #0E7C86;
  border-radius: 6px;
  padding: 18px 22px;
  margin-bottom: 14px;
}

.faq-item h3 {
  color: #0B2E38;
  font-size: 18px;
  margin-bottom: 6px;
}

.faq-item p {
  margin: 0;
  color: #16323C;
}

.form-status {
  margin-top: 14px;
  font-weight: 700;
  color: #0E7C86;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .tidegauge-navtoggle {
    display: inline-block;
  }

  .tidegauge-rail {
    align-items: center;
    justify-content: space-between;
  }

  .tide-markers {
    display: none;
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .tide-markers.is-open {
    display: flex;
  }

  .tide-marker {
    height: auto !important;
    padding: 0 12px;
    border-radius: 6px;
    border-bottom: 2px solid #C9D8CF;
    margin-bottom: 6px;
  }

  .viewwindow-copy h1 {
    font-size: 34px;
  }

  .gallery-course-b {
    flex-direction: row;
  }
}

@media (max-width: 560px) {
  .viewwindow-copy h1 {
    font-size: 28px;
  }

  .acrylic-glass {
    height: 320px;
  }

  .lagoonbanner p {
    font-size: 17px;
  }
}
