/* =================================
   PAGE
================================= */

.custom-full-container {
  width: 100%;
  padding: 0;
}

#content {
  padding: 0;
}

/* =================================
   HERO
================================= */

.fc-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.88) 0%,
      rgba(255,255,255,.92) 100%
    ),
    url('/images/furniture-collections/Vivaldi.jpg') center center / cover no-repeat;
}

.fc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: 40px 20px;
}

.fc-hero__subtitle {
  display: inline-block;
  margin-bottom: 24px;

  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b89563;
}

.fc-hero h1 {
  margin: 0 0 28px;

  font-size: 68px;
  line-height: 1.05;
  font-weight: 300;
  color: #232323;
}

.fc-hero p {
  max-width: 760px;
  margin: 0 auto;

  font-size: 20px;
  line-height: 1.8;
  color: #555;
}

/* =================================
   COLLECTIONS
================================= */

.fc-collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;

  padding: 40px 28px 80px;
}

.fc-card {
  position: relative;
  display: block;
  overflow: hidden;

  aspect-ratio: 18 / 11;

  border-radius: 30px;
  text-decoration: none;

  background: #eee;
  box-shadow: 0 28px 80px rgba(0,0,0,.10);
}

.fc-card__image {
  position: absolute;
  inset: 0;
}

.fc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;

  transition: transform 1.6s ease;
}

.fc-card:hover .fc-card__image img {
  transform: scale(1.05);
}

.fc-card__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.03) 0%,
      rgba(0,0,0,.22) 48%,
      rgba(0,0,0,.58) 100%
    );

  transition: opacity .5s ease;
}

.fc-card:hover .fc-card__overlay {
  opacity: .9;
}

.fc-card__content {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 52px;
  z-index: 3;

  display: grid;
  grid-template-rows: 22px 78px 72px;
  align-content: end;

  max-width: 560px;
  transition: transform .5s ease;
}

.fc-card:hover .fc-card__content {
  transform: translateY(-8px);
}

.fc-card__content span {
  display: inline-block;
  margin-bottom: 18px;

  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d6b27d;
}

.fc-card__content h2 {
  margin: 0;

  font-size: 64px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
}

.fc-card__content p {
  margin: 0;

  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,.92);
}

/* =================================
   MOBILE
================================= */

@media (max-width: 1200px) {

  .fc-card {
    aspect-ratio: 18 / 11;
  }

  .fc-card__content h2 {
    font-size: 54px;
  }

  .fc-hero h1 {
    font-size: 52px;
  }

}

@media (max-width: 991px) {

  .fc-collections {
    grid-template-columns: 1fr;
    padding: 32px 16px 70px;
  }

  .fc-card {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .fc-hero {
    min-height: 520px;
  }

  .fc-hero h1 {
    font-size: 42px;
  }

  .fc-hero p {
    font-size: 18px;
  }

}

@media (max-width: 640px) {

  .fc-card {
    aspect-ratio: 4 / 5.2;
    border-radius: 18px;
  }

  .fc-card__content {
    left: 26px;
    right: 26px;
    bottom: 26px;
    grid-template-rows: 20px 58px 84px;
  }

  .fc-card__content h2 {
    font-size: 42px;
  }

  .fc-card__content p {
    font-size: 16px;
    min-height: 84px;
  }

  .fc-hero h1 {
    font-size: 34px;
  }

}

/* =================================
   MOBILE FIX FOR COLLECTION CARDS
================================= */

@media (max-width: 991px) {
  .fc-card {
    height: 620px !important;
    aspect-ratio: auto !important;
  }

  .fc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (max-width: 640px) {
  .fc-card {
    height: 540px !important;
    aspect-ratio: auto !important;
  }

  .fc-card__image img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .fc-card__content {
    left: 28px;
    right: 28px;
    bottom: 34px;
  }
}

@media (max-width: 420px) {
  .fc-card {
    height: 500px !important;
  }
}
