/*
Theme Name: Marinatex
Theme URI: https://stationwp.com/
Author: Steve Combes
Author URI: https://stationwp.com/
Description: A custom theme for Marinatex WordPress website
Version: 1.0
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: marinatex

*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{appearance:none;border-radius:0}input[type="search"]{appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}


html {
  scroll-padding-top: 68px;
}

/* global typography */

:root {
  --color-blue: #81A4C1;
  --color-white: #ffffff;
  --color-yellow: #FEFF9E;
  --color-navy: #384152;
}

body {
  font-family: "Space Grotesk", sans-serif;
}

body.page-bg-white {
  background-color: var(--color-white);
  color: var(--color-navy);
}

body.page-bg-navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

#wrapper {
  position: relative;
  min-height: 100vh;
  background-color: inherit;
  isolation: isolate;
  overflow: hidden;
}

#wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image: var(--page-background-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  opacity: var(--page-background-image-opacity, 0);
}

#container,
#content,
.site-footer {
  background-color: transparent;
}

#container {
  padding-top: 68px;
}

.section-label {
  color: #7f7f7f;
  width: auto;
  display: inline-block;
  background-color: #feff9e;
  border-radius: 10px;
  text-transform: uppercase;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 1000;
  background: var(--color-blue);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.site-header__brand {
  position: relative;
  z-index: 1002;
  opacity: 1;
  visibility: visible;
  transition: opacity 400ms ease 150ms;
}

body.menu-open .site-header__brand {
  opacity: 0;
  visibility: visible;
  transition: none;
  pointer-events: none;
}

body.menu-is-closing .site-header__brand {
  opacity: 1;
  visibility: visible;
  transition: opacity 400ms ease 150ms;
}

.site-header__brand img {
  display: block;
  width: 196px;
  height: auto;
}

.site-header__toggle {
  position: relative;
  z-index: 1002;
  display: flex;
  width: 30px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.site-header__toggle span:not(.screen-reader-text) {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-white);
}

.site-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 67px 30px 70px;
  background: rgba(129, 164, 193, 1);
  pointer-events: none;
  transform: translateY(-100%);
}

.site-header__mobile-logo {
  display: block;
  margin-bottom: 58px;
}

.site-header__mobile-logo img {
  display: block;
  width: 240px;
  height: auto;
}

.site-header__menu {
  display: flex;
  flex-direction: column;
  gap: 33px;
  text-align: center;
}

.site-header__menu a {
  font-family: "Space Mono", monospace;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  
}

.site-header__menu .current-menu-item > a,
.site-header__menu a:hover,
.site-header__menu a:focus-visible {
  color: var(--color-yellow);
}

#container {
  padding-top: 68px;
}

/* Mobile menu open */

body.menu-open .site-header {
  background: transparent;
}

body.menu-open .site-header__nav {
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-is-animating .site-header__nav {
  transition: transform 320ms ease;
}

body.menu-open .site-header__toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.menu-open .site-header__toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .site-header__toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Desktop */

@media (min-width: 900px) {
  .site-header {
    height: 68px;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
    max-width: 1520px;
    margin: 0 auto;
  }

  .site-header__toggle {
    display: none;
  }

  .site-header__nav {
    order: 1;
    position: static;
    inset: auto;
    z-index: auto;
    display: block;
    width: auto;
    margin-right: auto;
    padding: 0;
    background: transparent;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .site-header__brand {
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }

  .site-header__brand img {
    width: 220px;
  }

  .site-header__mobile-logo {
    display: none;
  }

  .site-header__menu {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    text-align: left;
  }

  .site-header__menu a {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: normal;
    text-decoration: none;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
  }
}

/* footer */

.site-footer {
  background: transparent;
  text-align: center;
  padding: 60px 30px 60px;
}

.site-footer--white {
  color: var(--color-white);
}

.site-footer--navy {
  color: var(--color-navy);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__inner {
  max-width: 1068px;
  margin: 0 auto;
}

.site-footer__rule {
  width: 100%;
  height: 1px;
  margin: 0 0 60px;
  background-color: currentColor;
}

.site-footer__tagline,
.site-footer__partners-title {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.site-footer__nav {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-footer__menu li::after {
  display: none;
}

.site-footer__menu .current-menu-item > a,
.site-footer__menu .current_page_item > a,
.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
  color: var(--color-yellow);
}

.site-footer__partners-title {
  margin-top: 60px;
}

/* Logos */

.site-footer__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 38px 34px;
  max-width: 165px;
  margin: 54px auto 0;
}

.site-footer__logo-link,
.site-footer__logo-canvas {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__logo-link {
  flex: 0 0 100%;
  max-width: 165px;
}

.site-footer__logo-canvas {
  width: 100%;
  padding-inline: var(--footer-logo-horizontal-padding, 0);
}

.site-footer__logo {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  background-color: currentColor;

  -webkit-mask-image: var(--footer-logo-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: var(--footer-logo-url);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* Legal */

.site-footer__legal {
  margin-top: 50px;
  font-size: 16px;
  line-height: 1.5;
}

.site-footer__copyright sup {
  font-size: 75%;
  vertical-align: super;
}

.site-footer__legal-nav {
  margin-top: 20px;
}

.site-footer__legal-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-footer__legal-menu li::after {
  display: none;
}

.site-footer__legal-menu a:hover,
.site-footer__legal-menu a:focus-visible {
  color: var(--color-yellow);
}

/* >= 375px */

@media (min-width: 375px) {
  .site-footer__logos {
    max-width: 420px;
  }

  .site-footer__logo-link {
    flex-basis: calc((100% - 34px) / 2);
    max-width: calc((100% - 34px) / 2);
  }
}

/* >= 600px */

@media (min-width: 600px) {
  .site-footer__menu {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 22px;
  }

  .site-footer__menu li:not(:last-child)::after {
    display: inline;
    content: "·";
    margin-left: 22px;
  }

  .site-footer__legal-menu {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 22px;
  }

  .site-footer__legal-menu li:not(:last-child)::after {
    display: inline;
    content: "·";
    margin-left: 22px;
  }

  .site-footer__tagline,
  .site-footer__partners-title {
    font-size: 18px;
  }

  .site-footer__nav {
    font-size: 18px;
  }

  .site-footer__legal {
    font-size: 18px;
  }
}

/* >= 800px */

@media (min-width: 800px) {
  .site-footer__logos {
    max-width: 620px;
    gap: 42px 54px;
  }

  .site-footer__logo-link {
    flex-basis: calc((100% - 108px) / 3);
    max-width: calc((100% - 108px) / 3);
  }
}

/* >= 900px */

@media (min-width: 900px) {
  .site-footer {
    padding: 114px 60px 110px;
  }

  .site-footer__inner {
    max-width: 1400px;
  }

  .site-footer__rule {
    margin-bottom: 64px;
  }

  .site-footer__tagline,
  .site-footer__partners-title {
    font-size: 18px;
  }

  .site-footer__nav {
    margin-top: 20px;
    font-size: 18px;
  }

  .site-footer__menu {
    gap: 0 16px;
  }

  .site-footer__menu li:not(:last-child)::after {
    margin-left: 16px;
  }

  .site-footer__partners-title {
    margin-top: 22px;
  }

  .site-footer__legal {
    margin-top: 40px;
    font-size: 18px;
  }

  .site-footer__legal-menu {
    gap: 0 18px;
  }

  .site-footer__legal-menu li:not(:last-child)::after {
    margin-left: 18px;
  }
}

/* >= 1100px */

@media (min-width: 1100px) {
  .site-footer__logos {
    max-width: 1200px;
    gap: 50px;
    margin: 40px auto 0;
  }

  .site-footer__logo-link {
    flex-basis: calc((100% - 200px) / 5);
    max-width: calc((100% - 200px) / 5);
  }
}