/* =====================================================
   FULL CIRCLE YACHT — GALLERY PAGE
===================================================== */

.fcy-gallery-page {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(12,90,219,.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.fcy-gallery-page__intro {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.fcy-gallery-page__intro span {
  display: inline-block;
  color: #e84545;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fcy-gallery-page__intro h2 {
  color: #00194c;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 18px;
}

.fcy-gallery-page__intro p {
  color: #5a6a7e;
  font-size: 16px;
  line-height: 30px;
}

/* FILTER TABS */

.fcy-gallery-page__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.fcy-gallery-page__tabs button {
  border: 1px solid rgba(12,90,219,.14);
  background: rgba(255,255,255,.92);
  color: #00194c;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: .25s ease;
}

.fcy-gallery-page__tabs button i {
  color: #0c5adb;
}

.fcy-gallery-page__tabs button.active,
.fcy-gallery-page__tabs button:hover {
  background: #0c5adb;
  color: #fff;
  border-color: #0c5adb;
  transform: translateY(-2px);
}

.fcy-gallery-page__tabs button.active i,
.fcy-gallery-page__tabs button:hover i {
  color: #fff;
}

/* GALLERY GRID */

.fcy-gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.fcy-gallery-page__item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  display: block;
  background: #061426;
  box-shadow: 0 12px 34px rgba(4,20,36,.08);
  transition: opacity .25s ease, transform .25s ease;
}

.fcy-gallery-page__item.wide {
  grid-column: span 2;
}

.fcy-gallery-page__item.tall {
  grid-row: span 2;
}

.fcy-gallery-page__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
  display: block;
}

.fcy-gallery-page__item:hover img {
  transform: scale(1.06);
}

.fcy-gallery-page__item.is-hidden {
  display: none;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .fcy-gallery-page__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 575px) {
  .fcy-gallery-page {
    padding: 80px 0;
  }

  .fcy-gallery-page__intro h2 {
    font-size: 34px;
  }

  .fcy-gallery-page__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .fcy-gallery-page__item.wide,
  .fcy-gallery-page__item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .fcy-gallery-page__tabs {
    justify-content: flex-start;
  }
}

/* =====================================================
   FULL CIRCLE YACHT — GALLERY PAGE
===================================================== */

.fcy-gallery-page {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(12,90,219,.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

/* =====================================================
   INTRO
===================================================== */

.fcy-gallery-page__intro {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.fcy-gallery-page__intro span,
.fcy-gallery-seo__content span,
.fcy-video-gallery__heading span {
  display: inline-block;
  color: #e84545;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fcy-gallery-page__intro h2,
.fcy-gallery-seo__content h2,
.fcy-video-gallery__heading h2 {
  color: #00194c;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 18px;
}

.fcy-gallery-page__intro p,
.fcy-gallery-seo__content p,
.fcy-video-gallery__heading p {
  color: #5a6a7e;
  font-size: 16px;
  line-height: 30px;
}

/* =====================================================
   FILTER TABS
===================================================== */

.fcy-gallery-page__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.fcy-gallery-page__tabs button {
  border: 1px solid rgba(12,90,219,.14);
  background: rgba(255,255,255,.92);
  color: #00194c;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: .25s ease;
}

.fcy-gallery-page__tabs button i {
  color: #0c5adb;
}

.fcy-gallery-page__tabs button.active,
.fcy-gallery-page__tabs button:hover {
  background: #0c5adb;
  color: #fff;
  border-color: #0c5adb;
  transform: translateY(-2px);
}

.fcy-gallery-page__tabs button.active i,
.fcy-gallery-page__tabs button:hover i {
  color: #fff;
}

/* =====================================================
   GALLERY MOSAIC GRID
===================================================== */

.fcy-gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

/* ALL ITEMS */

.fcy-gallery-page__item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  display: block;
  background: #061426;
  box-shadow: 0 12px 34px rgba(4,20,36,.08);
}

/* MOSAIC SHAPES */

.fcy-gallery-page__item.wide {
  grid-column: span 2;
}

.fcy-gallery-page__item.tall {
  grid-row: span 2;
}

/* IMAGE */

.fcy-gallery-page__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
  display: block;
}

.fcy-gallery-page__item:hover img {
  transform: scale(1.06);
}

/* FILTER */

.fcy-gallery-page__item.is-hidden {
  display: none;
}

/* =====================================================
   SEO SECTION
===================================================== */

.fcy-gallery-seo {
  padding: 105px 0;
  background:
    linear-gradient(rgba(0,18,39,.92), rgba(0,18,39,.96)),
    url("../images/bg/full-circle-yacht_1800x400-04b2.webp") center / cover no-repeat;
}

.fcy-gallery-seo__grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 44px;
  align-items: center;
}

.fcy-gallery-seo__content h2 {
  color: #fff;
}

.fcy-gallery-seo__content p {
  color: rgba(255,255,255,.74);
}

.fcy-gallery-seo__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fcy-gallery-seo__cards div {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 24px;
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

.fcy-gallery-seo__cards i {
  color: #8cc9ff;
  font-size: 24px;
  margin-bottom: 14px;
}

.fcy-gallery-seo__cards strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.fcy-gallery-seo__cards span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 23px;
}
/* =====================================================
   GALLERY SEO BUTTONS
===================================================== */

.fcy-gallery-seo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.fcy-gallery-seo__btn-main,
.fcy-gallery-seo__btn-call {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.fcy-gallery-seo__btn-main {
  background: #e84545;
}

.fcy-gallery-seo__btn-call {
  background: #0c5adb;
}

.fcy-gallery-seo__btn-main:hover,
.fcy-gallery-seo__btn-call:hover {
  background: #fff;
  color: #00194c;
  transform: translateY(-2px);
}
/* =====================================================
   VIDEO GALLERY
===================================================== */

.fcy-video-gallery {
  padding: 110px 0;
  background: #ffffff;
}

.fcy-video-gallery__heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.fcy-video-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fcy-video-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(12,90,219,.10);
  box-shadow: 0 18px 50px rgba(4,20,36,.08);
}

.fcy-video-card video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #061426;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

  .fcy-gallery-page__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .fcy-gallery-seo__grid,
  .fcy-video-gallery__grid {
    grid-template-columns: 1fr;
  }

  .fcy-gallery-seo__cards {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {

  .fcy-gallery-page,
  .fcy-gallery-seo,
  .fcy-video-gallery {
    padding: 80px 0;
  }

  .fcy-gallery-page__intro h2,
  .fcy-gallery-seo__content h2,
  .fcy-video-gallery__heading h2 {
    font-size: 34px;
  }

  .fcy-gallery-page__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .fcy-gallery-page__item.wide,
  .fcy-gallery-page__item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .fcy-gallery-seo__cards {
    grid-template-columns: 1fr;
  }

  .fcy-gallery-page__tabs {
    justify-content: flex-start;
  }
}
