/* =========================================
   GALLERY PAGE BANNER
========================================= */

.gallery-page-banner {
  min-height: 330px;

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

  padding: 70px 20px;

  text-align: center;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 0, 85, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 204, 112, 0.08),
      transparent 35%
    ),
    #05000a;
}

.gallery-page-banner-content {
  width: 100%;
  max-width: 750px;
}

.gallery-page-banner-content span {
  display: inline-block;

  margin-bottom: 10px;

  color: #ff0055;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;
}

.gallery-page-banner-content h1 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 48px;
  line-height: 1.15;
}

.gallery-page-banner-content p {
  max-width: 650px;

  margin: 0 auto;

  color: #cfcfcf;

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .gallery-page-banner {
    min-height: 270px;

    padding: 55px 20px;
  }

  .gallery-page-banner-content h1 {
    font-size: 36px;
  }

  .gallery-page-banner-content p {
    font-size: 14px;
    line-height: 1.7;
  }

}

/* =========================================
   GALLERY INTRO
========================================= */

.gallery-intro-section {
  padding: 70px 20px 55px;
  background: #05000a;
}

.gallery-intro-container {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.gallery-intro-heading {
  text-align: center;
  margin-bottom: 28px;
}

.gallery-intro-heading span {
  display: inline-block;

  color: #ff0055;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.gallery-intro-heading h2 {
  margin: 10px 0 0;

  color: #ffffff;
  font-size: 34px;
  line-height: 1.2;
}

.gallery-intro-content {
  max-width: 850px;
  margin: 0 auto;

  padding: 30px 35px;

  background: rgba(255,255,255,0.025);

  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 15px;
}

.gallery-intro-content p {
  margin: 0 0 17px;

  color: #c5c0cc;
  font-size: 15px;
  line-height: 1.85;
}

.gallery-intro-content p:last-child {
  margin-bottom: 0;
}


/* MOBILE */

@media (max-width: 768px) {

  .gallery-intro-section {
    padding: 55px 16px 40px;
  }

  .gallery-intro-heading h2 {
    font-size: 29px;
  }

  .gallery-intro-content {
    padding: 24px 20px;
  }

  .gallery-intro-content p {
    font-size: 14px;
    line-height: 1.8;
  }

}

/* =========================================
   GALLERY GRID SECTION
========================================= */

.gallery-grid-section {
  padding: 40px 20px 85px;
  background: #05000a;
}

.gallery-grid-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.gallery-grid-heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.gallery-grid-heading span {
  display: inline-block;

  color: #ff0055;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
}

.gallery-grid-heading h2 {
  margin: 10px 0 12px;

  color: #ffffff;

  font-size: 34px;
  line-height: 1.2;
}

.gallery-grid-heading p {
  margin: 0;

  color: #aaa4b2;

  font-size: 14px;
  line-height: 1.7;
}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}


/* =========================================
   GALLERY CARD
========================================= */

.gallery-card {
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.015)
    );

  border: 1px solid
    rgba(255,255,255,0.08);

  border-radius: 14px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(255,0,85,0.30);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.35);
}


/* =========================================
   IMAGE
========================================= */

.gallery-image {
  width: 100%;

  aspect-ratio: 3 / 4;

  overflow: hidden;

  background: #0c0711;
}

.gallery-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.45s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.04);
}


/* =========================================
   CARD INFORMATION
========================================= */

.gallery-card-info {
  padding: 14px 15px;
}


/* TOP ROW */

.gallery-card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 10px;

  margin-bottom: 9px;
}

.gallery-card-top h3 {
  margin: 0;

  color: #ffffff;

  font-size: 15px;
  font-weight: 600;
}

.gallery-card-top span {
  color: #88818f;

  font-size: 10px;
}


/* =========================================
   META ROW
========================================= */

.gallery-card-meta {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-top: 9px;

  border-top:
    1px solid rgba(255,255,255,0.07);
}

.gallery-card-meta span {
  color: #aaa4b2;

  font-size: 11px;
}

.gallery-card-meta strong {
  color: #ffcc70;

  font-size: 12px;
  font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .gallery-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 15px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .gallery-grid-section {
    padding: 35px 16px 60px;
  }

  .gallery-grid-heading {
    margin-bottom: 28px;
  }

  .gallery-grid-heading h2 {
    font-size: 29px;
  }

  .gallery-grid-heading p {
    font-size: 13px;
  }


  .gallery-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;
  }


  .gallery-card {
    border-radius: 11px;
  }


  .gallery-card-info {
    padding: 10px 11px;
  }


  .gallery-card-top {
    margin-bottom: 7px;

    gap: 5px;
  }


  .gallery-card-top h3 {
    font-size: 13px;
  }


  .gallery-card-top span {
    font-size: 9px;
  }


  .gallery-card-meta {
    padding-top: 7px;
  }


  .gallery-card-meta span,
  .gallery-card-meta strong {
    font-size: 10px;
  }

}

/* =========================================
   GALLERY CHOICE SECTION
========================================= */

.gallery-choice-section {
  padding: 80px 20px;

  background:
    linear-gradient(
      135deg,
      #080312,
      #0d020b
    );
}

.gallery-choice-wrap {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;

  display: grid;

  grid-template-columns: 60% 40%;

  gap: 55px;

  align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.gallery-choice-content {
  padding-right: 25px;
}

.gallery-choice-content > span {
  display: inline-block;

  margin-bottom: 12px;

  color: #ff0055;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
}

.gallery-choice-content h2 {
  margin: 0 0 22px;

  color: #ffffff;

  font-size: 38px;
  line-height: 1.2;
}

.gallery-choice-content p {
  margin: 0 0 18px;

  color: #c5c0cc;

  font-size: 15px;
  line-height: 1.85;
}

.gallery-choice-content p:last-child {
  margin-bottom: 0;
}


/* =========================================
   RIGHT FEATURE CARDS
========================================= */

.gallery-choice-features {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.gallery-choice-card {
  display: flex;

  align-items: center;

  gap: 17px;

  padding: 20px;

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.015)
    );

  border: 1px solid
    rgba(255,255,255,0.08);

  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.gallery-choice-card:hover {
  transform: translateX(4px);

  border-color:
    rgba(255,0,85,.30);

  background:
    rgba(255,0,85,.045);
}


/* ICON */

.gallery-choice-icon {
  flex-shrink: 0;

  width: 45px;
  height: 45px;

  display: flex;

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

  border-radius: 10px;

  color: #ffcc70;

  background:
    rgba(255,0,85,.08);

  border: 1px solid
    rgba(255,0,85,.15);

  font-size: 16px;
}


/* CARD TEXT */

.gallery-choice-card h3 {
  margin: 0 0 5px;

  color: #ffffff;

  font-size: 16px;
  line-height: 1.3;
}

.gallery-choice-card p {
  margin: 0;

  color: #9993a2;

  font-size: 12.5px;
  line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .gallery-choice-wrap {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .gallery-choice-content {
    padding-right: 0;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .gallery-choice-section {
    padding: 60px 16px;
  }

  .gallery-choice-content h2 {
    font-size: 30px;
  }

  .gallery-choice-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .gallery-choice-card {
    padding: 17px;

    gap: 13px;
  }

  .gallery-choice-icon {
    width: 42px;
    height: 42px;

    font-size: 14px;
  }

  .gallery-choice-card h3 {
    font-size: 15px;
  }

  .gallery-choice-card p {
    font-size: 12px;
  }

}