/* =========================================
   LOCATION PAGE
========================================= */

.location-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;
}

.location-page-banner-content {
  max-width: 750px;
}

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

  color: #ff0055;

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

  letter-spacing: 2px;
}

.location-page-banner-content h1 {
  margin: 12px 0;

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

  background:
    linear-gradient(
      90deg,
      #ffcc70,
      #ff0055
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-page-banner-content p {
  margin: 0;

  color: #cfcfcf;

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


/* =========================================
   LOCATION GRID SECTION
========================================= */

.location-page-section {
  padding: 80px 20px;

  background: #05000a;
}

.location-page-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
}


/* HEADING */

.location-page-heading {
  max-width: 700px;

  margin: 0 auto 42px;

  text-align: center;
}

.location-page-heading > span {
  display: inline-block;

  margin-bottom: 10px;

  color: #ff0055;

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

  letter-spacing: 2px;
}

.location-page-heading h2 {
  margin: 0 0 14px;

  color: #ffffff;

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

.location-page-heading p {
  margin: 0;

  color: #bdbdbd;

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


/* GRID */

.location-page-grid {
  display: grid;

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

  gap: 16px;
}


/* CARD */

.location-page-card {
  min-height: 92px;

  padding: 18px 20px;

  display: flex;
  align-items: center;

  gap: 16px;

  box-sizing: border-box;

  text-decoration: none;

  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;

  color: #ffffff;

  backdrop-filter: blur(10px);

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

.location-page-icon {
  width: 50px;
  height: 50px;

  flex-shrink: 0;

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

  border-radius: 12px;

  background:
    rgba(255,0,85,0.08);

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

  color: #ff0055;

  font-size: 18px;
}

.location-page-text {
  flex: 1;
}

.location-page-text h3 {
  margin: 0 0 4px;

  color: #ffffff;

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

.location-page-text p {
  margin: 0;

  color: #888;

  font-size: 12px;
}

.location-page-card > .fa-arrow-right {
  color: #ff0055;

  font-size: 16px;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}


/* HOVER */

.location-page-card:hover {
  color: #ffffff;
  text-decoration: none;

  transform: translateY(-4px);

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

  background:
    rgba(255,0,85,0.055);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.3);
}

.location-page-card:hover
.location-page-icon {
  background:
    rgba(255,0,85,0.13);
}

.location-page-card:hover
> .fa-arrow-right {
  color: #ffcc70;

  transform: translateX(5px);
}


/* =========================================
   LOCATION INFO
========================================= */

.location-info-section {
  padding: 75px 20px;

  background:
    linear-gradient(
      135deg,
      #10000b,
      #07000e
    );
}

.location-info-container {
  max-width: 900px;

  margin: 0 auto;

  text-align: center;
}

.location-info-content > span {
  display: inline-block;

  color: #ff0055;

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

  letter-spacing: 2px;
}

.location-info-content h2 {
  margin: 12px 0 18px;

  color: #ffffff;

  font-size: 32px;
}

.location-info-content p {
  margin: 0 0 15px;

  color: #c5c5c5;

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


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

@media (max-width: 768px) {

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

    padding: 55px 20px;
  }

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

  .location-page-banner-content p {
    font-size: 14px;
  }


  .location-page-section {
    padding: 55px 16px;
  }

  .location-page-heading {
    margin-bottom: 30px;
  }

  .location-page-heading h2 {
    font-size: 30px;
  }


  .location-page-grid {
    grid-template-columns: 1fr;

    gap: 10px;
  }


  .location-page-card {
    min-height: 78px;

    padding: 14px 15px;

    gap: 13px;
  }

  .location-page-icon {
    width: 44px;
    height: 44px;

    border-radius: 10px;

    font-size: 16px;
  }

  .location-page-text h3 {
    font-size: 15px;
  }


  .location-info-section {
    padding: 55px 18px;
  }

  .location-info-content h2 {
    font-size: 26px;
  }

}