@charset "UTF-8";
@import url("bootstrap-5.3.8-dist/css/bootstrap-grid.css");
/* CSS Document */



/* ---------------- Fonts & type ---------------- */

@font-face{
  font-family: "Fineday Style One";
  src: url("Fonts/fineday-style-one.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body h1{
  font-family: "Fineday Style One", sans-serif;
  color: #003A75;
}

body h2,
body h3{
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222D51;
}

body h2{ font-size: clamp(1.8rem, 4vw, 2.6rem); }
body h3{ font-size: clamp(1.4rem, 3vw, 2.4rem); }

@media (max-width: 768px){
  body h2,
  body h3{ letter-spacing: 0.04em; }
}

p{ color: #002E5D; }

a:not(.btn):hover,
a:not(.btn):focus{
  color: #89B2C4;
}

h4{
  margin: 0 0 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.3;
  font-size: 0.95rem;
  color: #002e5d;
  transition: letter-spacing 300ms ease, opacity 300ms ease;
}

@media (max-width: 768px){
  h4{
    letter-spacing: 0.14em;
    font-size: 0.9rem;
  }
}

h5{
  margin: 0 0 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.3;
  font-size: 1rem;
  color: #002e5d;
  transition: letter-spacing 300ms ease, opacity 300ms ease;
}

/* ---------------- Navbar ---------------- */

.navbar{ z-index: 1050; }

.navbar .nav-link,
.navbar-brand{ color: #222D51; }

.navbar .nav-link:hover,
.navbar-brand:hover{ color: #89B2C4; }

.navbar-overlay{
  background: transparent;
  transition: background-color .3s ease;
}

.navbar-overlay .nav-link,
.navbar-overlay .navbar-brand{ color:#003A75; }

.navbar-overlay .nav-link:hover,
.navbar-overlay .navbar-brand:hover{ color:#89B2C4; }

.navbar-overlay.scrolled{
  background: rgba(255,255,255,0.95);
}

/* ---------------- Buttons ---------------- */

.surf-btn{
  background-color: #96b8cb;
  color: #fff;
  font-size: 15px;
  padding: 12px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

/* =========================================================
   About Hero (bottom aligned)
========================================================= */

.about-hero{
  position: relative;
  width: 100%;
  height: min(90vh, 820px);
  overflow: hidden;
}

.about-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 900ms ease;
}

.about-hero__overlay{
  position: absolute;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vw, 3rem);
  max-width: 680px;
  color: #ffffff;
  text-align: left;
  padding: 1.25rem 1.5rem;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0)
  );

  border-radius: 12px;
  backdrop-filter: blur(2px);

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.about-hero--light .about-hero__overlay{
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.28),
    rgba(0, 0, 0, 0)
  );
}

.about-hero__title{
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  line-height: 1.1;
  color: #002E5D;
}

.about-hero__title-lines{ display: inline-block; }

.about-hero__line{
  display: block;
  overflow: hidden;
}

.about-hero__line > span{
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 650ms ease, opacity 650ms ease;
}

.about-hero__line:nth-child(1) > span{ transition-delay: 160ms; }
.about-hero__line:nth-child(2) > span{ transition-delay: 260ms; }

.about-hero.is-loaded .about-hero__overlay{
  opacity: 1;
  transform: translateY(0);
}

.about-hero.is-loaded .about-hero__img{ transform: scale(1); }

.about-hero.is-loaded .about-hero__line > span{
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px){
  .about-hero__overlay{
    left: 1rem;
    bottom: 1rem;
    max-width: 92vw;
    padding: 1rem 1.25rem;
  }

  .about-hero__title{
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    line-height: 1.15;
  }
}

@media (prefers-reduced-motion: reduce){
  .about-hero__overlay,
  .about-hero__img,
  .about-hero__line > span{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   Services Hero
========================================================= */

.services-hero{
  position: relative;
  width: 100%;
  height: min(90vh, 820px);
  overflow: hidden;
}

.services-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-hero__overlay{
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vw, 3rem);
  max-width: 520px;
  color: #ffffff;
  text-align: right;

  background: linear-gradient(
    to left,
    rgba(0, 58, 117, 0.8),
    rgba(0, 0, 0, 0)
  );
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(2px);
}

.services-hero__title{
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;

  opacity: 0;
  animation: heroFadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

.services-hero__subtitle{
  margin-top: 0.5rem;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  opacity: 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  animation: heroFadeIn 1s ease-out forwards;
  animation-delay: 0.55s;
}

@media (max-width: 768px){
  .services-hero__overlay{
    right: 1rem;
    bottom: 1rem;
    max-width: 92vw;
    text-align: left;
  }
}

@keyframes heroFadeIn{
  from{ opacity: 0; transform: translateY(16px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Optional small image helper */
.small-img{
  max-width: 70%;
  padding: 10px;
}
@media (max-width: 800px){
  .small-img{
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 10px 0;
  }
}

/* ---------------- Feature icon interaction ---------------- */

.feature-trigger{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

.feature-icon{
  width: 56px;
  height: 56px;
  display: inline-block;
  transition: transform .25s ease;
}

.feature-trigger:hover .feature-icon{ transform: scale(1.15); }
.feature-trigger:active .feature-icon{ transform: scale(1.05); }

.feature-text{
  opacity: 0;
  transform: translateX(24px);
  max-height: 0;
  overflow: hidden;
  transition: opacity .25s ease, transform .25s ease, max-height .25s ease;
}

.feature-row.is-active .feature-text{
  opacity: 1;
  transform: translateX(0);
  max-height: 500px;
}

/* =========================================================
   CTA STRIP (base + quote pause)
========================================================= */

.cta-strip{
  background-color: #CCDCE5;
  overflow: hidden;
  position: relative;
  transition: background-color .3s ease;

  --cta-base-duration: 9s;
}

.cta-strip:hover{ background-color: #89B2C4; }

.cta-link-wrap{
  display: block;
  text-decoration: none;
}

.cta-scroll{
  display: inline-block;
  white-space: nowrap;
  color: #222d51;
  will-change: transform;
  transform: translateX(100vw);

  animation-duration: var(--cta-duration);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.cta-scroll:hover{ color:#222d51; }

/* Quote strip: centre pause */
.cta-strip--quote{
  --cta-duration: calc(var(--cta-base-duration) * 1.25);
}

.cta-strip--quote .cta-scroll{
  animation-name: slideCenterPause;
}

.cta-strip--quote:hover .cta-scroll{
  animation-play-state: paused;
}

@keyframes slideCenterPause{
  0%{ transform: translateX(100vw); }
  40%{ transform: translateX(calc(50vw - 50%)); }
  60%{ transform: translateX(calc(50vw - 50%)); }
  100%{ transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce){
  .cta-scroll{
    animation: none;
    transform: none;
  }
}

/* =========================================================
   Print overlap block (synced motion)
========================================================= */

.image-and-cta{
  --cta-duration: 6s;
  --cta-baseline: 52px;
}

.image-band{
  background-color: #222d51;
  padding: 3rem 0;
}

.image-overlap-wrap{
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  padding-bottom: var(--cta-baseline);
}

.img-main{
  width: 70%;
  height: auto;
  display: block;
}

.img-overlap{
  position: absolute;
  right: 0;
  bottom: calc(-1 * var(--cta-baseline));
  width: 80%;
  height: auto;
  z-index: 2;

  border-radius: 10px;
  box-shadow: none;
  animation: overlapSync var(--cta-duration) linear infinite;
  transform-origin: bottom right;
}

@keyframes overlapSync{
  0%{ transform: translateY(0); }
  45%{ transform: translateY(-8px); }
  55%{ transform: translateY(-8px); }
  100%{ transform: translateY(0); }
}

@media (max-width: 992px){
  .img-main{ width: 75%; }
  .img-overlap{ width: 46%; }
}

@media (max-width: 768px){
  .image-overlap-wrap{ padding-bottom: 0; }
  .img-main{ width: 100%; }
  .img-overlap{
    position: static;
    width: 100%;
    margin-top: 1rem;
    animation: none;
    transform: none;
  }
}

/* =========================================================
   Logos showcase (grid + spotlight)
========================================================= */

.logo-showcase{ background: #f6f7f8; }

.logo-wall{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 991.98px){
  .logo-wall{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575.98px){
  .logo-wall{ grid-template-columns: repeat(2, 1fr); }
}

.logo-wall-wrap{
  position: relative;
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}

.logo-wall-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Assets/Branding/back1.jpeg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0.2;
  transform: translateZ(0);
  will-change: background-position;
  z-index: 0;
}

.logo-wall-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(137,178,196,0.25),
    rgba(255,255,255,0.05)
  );
  z-index: 0;
}

.logo-tile{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 26px;
  min-height: 175px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform .18s ease, box-shadow .18s ease;
}

.logo-tile img{
  max-width: 92%;
  max-height: 120px;
  object-fit: contain;
  transition: transform .18s ease, filter .18s ease;
}

@media (hover: hover){
  .logo-tile:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  }
  .logo-tile:hover img{
    transform: scale(1.03);
    filter: saturate(1);
  }
}

@media (max-width: 575.98px){
  .logo-tile{
    padding: 20px;
    min-height: 155px;
  }
  .logo-tile img{
    max-height: 110px;
  }
}

.logo-tile.is-active{
  border-color: rgba(137,178,196,0.9);
  box-shadow: 0 14px 26px rgba(137,178,196,0.20);
}

.logo-spotlight{
  position: sticky;
  top: 110px;
  background: rgba(0,46,93,0.90);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.spotlight-inner{ padding: 22px; }

.spot-image-wrap{
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

#spotImg{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-spotlight.is-switching{
  opacity: .75;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
}

/* =========================================================
   Fade text (looping pulse)
========================================================= */

.fade-in-text{
  animation: fadePulse 5s ease-in-out infinite;
}

@keyframes fadePulse{
  0%{ opacity: 0; transform: translateY(10px); }
  20%{ opacity: 1; transform: translateY(0); }
  70%{ opacity: 1; }
  100%{ opacity: 0; transform: translateY(10px); }
}

/* =========================================================
   Desktop Publishing flex
========================================================= */

.dp-flex{
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.dp-text,
.dp-media{
  flex: 1 1 0;
  min-width: 0;
}

.dp-title{
  border-bottom: 1px solid #89B2c4;
  padding-bottom: .25rem;
}

.dp-media{
  display: flex;
  background-color: #fff;
}

.dp-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: .5rem;
}

@media (max-width: 767.98px){
  .dp-flex{ flex-direction: column; }
  .dp-img{ height: auto; }
}

/* =========================================================
   Web Dev media + titled overlay
========================================================= */

.wd-flex{
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.wd-text,
.wd-media{
  flex: 1 1 0;
  min-width: 0;
}

.wd-title{
  border-bottom: 1px solid #89B2c4;
  padding-bottom: .25rem;
}

.wd-media{
  display: flex;
  background-color: #fff;
}

.wd-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: .5rem;
}

@media (max-width: 767.98px){
  .wd-flex{ flex-direction: column; }
  .wd-img{ height: auto; }
}

.wd-media--titled{ position: relative; }

.wd-image-title{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;

  color: #fff;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: lowercase;

  background: rgba(137, 178, 196, 0.65);
  padding: 10px 14px;
  border-radius: 6px;

  opacity: 0;
  transform: translateY(10px);
  animation: imageTitleFade 0.9s ease-out forwards;
  animation-delay: 1.2s;
}

@keyframes imageTitleFade{
  to{ opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px){
  .wd-image-title{
    top: auto;
    right: auto;
    left: 16px;
    bottom: 16px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }
}

/* =========================================================
   About sections (grid + scroll overlay text)
========================================================= */

.about-wrap{
  max-width: 1200px;
  margin-inline: auto;
   padding-inline: clamp(1.5rem, 8vw, 6rem);
}

/* Tablet refinement */
@media (max-width: 992px){
  .about-wrap{
    padding-inline: clamp(1.25rem, 6vw, 3rem);
  }
}

/* Mobile */
@media (max-width: 576px){
  .about-wrap{
    padding-inline: 1rem;
  }
}
.about-row{ padding: 2.5rem; }

@media (max-width: 992px){
  .about-row{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 768px){
  .about-row{
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.about-section{
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  margin: 2rem;
}

@media (max-width: 768px){
  .about-section{ grid-template-columns: 1fr; }
}

/* Left column link */
.about-link{
  position: relative;
  z-index: 3;
  max-width: 100%;
  color: #89B2C4;
  text-decoration: none;
  padding: 1rem 0.5rem;
  border-radius: 12px;
  transition: transform 250ms ease, background 250ms ease;
}

.about-link:visited{ opacity: 0.85; }

.about-link:hover,
.about-link:focus-visible{
  color: #89B2C4;
  text-decoration: none;
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}

.about-title{
  margin: 0;
  font-size: 3rem;
  line-height: 1.2;
  color: #222D51;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.about-cta{
  display: inline-block;
  margin-top: 0.5rem;
font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: #222D51;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.cta-arrow{
  display: inline-block;
  margin-left: 0.35em;
  transition: transform 250ms ease;
}

.about-link:hover .cta-arrow,
.about-link:focus-visible .cta-arrow{
  transform: translateX(6px);
}

/* Right media */
.about-container{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  isolation: isolate;
}

.about-image{
  width: 80%;
  display: block;
  height: auto;
  margin-left: auto;
}

/* Overlay */
.about-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 46, 93, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(40px);
  transition:
    transform 700ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

.about-overlay.active{
  opacity: 1;
  transform: translateY(0);
}

.about-text{
     max-width: 620px;
  padding: 1rem;
  text-align: left;
  color: #fff;
        font-size: 1.3rem;
    line-height: 1.75;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 450ms ease, transform 450ms ease;
  transition-delay: calc(var(--delay, 0ms) + 180ms);
}

.about-overlay.active .about-text{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px){
  .about-title{ font-size: 1.35rem; }


  .about-container{
    max-height: 65vh;
    overflow: hidden;
  }

  .about-text{
    font-size: 0.95rem;
    padding: 1.25rem;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .about-overlay{ transition-duration: 500ms; }

  /* soft fade at bottom of scroll */
  .about-text{
    mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 85%,
      rgba(0,0,0,0)
    );
  }
}

@media (max-width: 480px){
  .about-title{ font-size: 2.4rem; }
  .about-text{
    padding: 1rem;

  }
    /* Small screens */
@media (max-width: 768px){
  .about-cta{
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    line-height: 1.2;
  }
}

/* Very small phones */
@media (max-width: 480px){
  .about-cta{
    font-size: 2.2rem;
  }
}

}

/* =========================================================
   Merch wall (masonry -> grid on mobile)
========================================================= */

.merch-wall{ padding: clamp(2.25rem, 5vw, 4rem) 0; }

.merch-wall__wrap{
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}

.merch-wall__head{ margin-bottom: 1.25rem; }

.merch-wall__title{
  margin: 0;
  color: #222D51;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.merch-wall__sub{
  margin: 0.6rem 0 0;
  color: rgba(34,45,81,0.78);
  max-width: 58ch;
}

/* masonry columns */
.merch-wall__masonry{
  column-count: 3;
  column-gap: 1.25rem;
}

@media (max-width: 992px){
  .merch-wall__masonry{ column-count: 2; }
}

/* mobile grid */
@media (max-width: 640px){
  .merch-wall__masonry{
    column-count: 1;
    column-gap: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    position: relative;
  }
}
@media (max-width: 420px){
  .merch-wall__masonry{ grid-template-columns: 1fr; }
}

.merch-tile{
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 1.25rem;
  vertical-align: top;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;

  overflow: hidden;
  border: 1px solid rgba(0, 46, 93, 0.9);
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);

  text-decoration: none;
  color: inherit;

  transition:
    transform 320ms cubic-bezier(.2,.8,.2,1),
    box-shadow 320ms ease;
}

@media (max-width: 640px){
  .merch-tile{ margin: 0; }
}

.merch-tile__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 550ms cubic-bezier(.2,.8,.2,1);
}

.merch-tile__overlay{
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.merch-tile__title{
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;

  color: #222D51;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;

  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
  background: rgba(137, 178, 196, 0.65);
  backdrop-filter: blur(6px);
}

@media (hover: hover){
  .merch-tile:hover{
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 22px 48px rgba(0,0,0,0.20);
    z-index: 2;
  }
  .merch-tile:hover .merch-tile__img{
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce){
  .merch-tile,
  .merch-tile__img{
    transition: none !important;
    transform: none !important;
  }
}

/* =========================================================
   Footer (2-col links desktop, 1-col mobile)
========================================================= */

.site-footer{
  background-color: #f6f7f8;
  color: #222D51;
}

.footer-title{
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-text,
.footer-contact{
  font-size: .9rem;
  line-height: 1.6;
}

.footer-link{
  font-weight: 700;
  color: #222D51;
  text-decoration: underline;
}

.footer-contact a,
.footer-links a{
  color: #222D51;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-link:hover{
  text-decoration: underline;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}

@media (max-width: 767.98px){
  .footer-links{ grid-template-columns: 1fr; }
}

.footer-links li{ line-height: 1.4; }

.footer-links a{
  font-size: .8rem;
  letter-spacing: .04em;
  transition: color .2s ease;
}

.footer-links a:hover{ color: #89B2C4; }

.footer-social-icons{
  display: flex;
  gap: 14px;
}

.footer-social-icons a{
  font-size: 1.3rem;
  color: #222D51;
  opacity: 0;
  transform: translateY(6px);
  animation: socialFadeUp .5s ease forwards;
}

.footer-social-icons a:nth-child(1){ animation-delay: .1s; }
.footer-social-icons a:nth-child(2){ animation-delay: .2s; }
.footer-social-icons a:nth-child(3){ animation-delay: .3s; }

.footer-social-icons a:hover{
  color: #89B2C4;
  transform: translateY(-1px);
}

@keyframes socialFadeUp{
  to{ opacity: 1; transform: translateY(0); }
}

.footer-bottom{
  background: #222D51;
  color: #fff;
  padding: 12px 0;
  font-size: .75rem;
}

/* =========================================================
   Surf Strokes Slideshow
========================================================= */

.ss-slideshow{
  width: 100%;
  max-width: 1100px;
  margin: 3rem auto;
  overflow: hidden;
  position: relative;
}

.ss-slides{
  position: relative;
  height: 420px;
  background: linear-gradient(135deg, #dfeef4, #f6fbfd);
}

.ss-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: ssFade 9s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ss-slide:nth-child(1){ animation-delay: 0s; }
.ss-slide:nth-child(2){ animation-delay: 3s; }
.ss-slide:nth-child(3){ animation-delay: 6s; }

@keyframes ssFade{
  0%{ opacity: 0; }
  8%{ opacity: 1; }
  33%{ opacity: 1; }
  41%{ opacity: 0; }
  100%{ opacity: 0; }
}

@media (max-width: 768px){
  .ss-slides{ height: 260px; }
}

@media (min-width: 992px){
  .ss-slideshow{
    max-width: 50vw;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1400px){
  .ss-slideshow{ max-width: 720px; }
}

@media (max-width: 991px){
  .ss-slideshow{ max-width: 100%; }
}

@media (max-width: 768px){
  .ss-slides{
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

