/* =========================================================
   PAGE HEADER
   ========================================================= */

.page-header {
  position: relative;
  width: 100%;

  background: #171817;

  overflow: hidden;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.page-header-container {
  max-width: 1500px;
  width: 90%;
  margin: auto;

  min-height: 390px;

  display: flex;
  align-items: center;

  position: relative;

  padding: 100px 0 80px;
}

/* =========================================================
   CONTENT
   ========================================================= */

.page-header-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
}

/* =========================================================
   TITLE
   ========================================================= */

.page-header-title {
  margin: 0;

  color: #f5efe2;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(60px, 5vw, 80px);
  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.035em;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

/* Breadcrumb Link */

.page-header-breadcrumb a {
  color: #d0b16a;

  text-decoration: none;

  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.page-header-breadcrumb a:hover {
  color: #f2d18a;
}

/* Separator */

.page-header-breadcrumb-separator {
  color: #8d7650;

  font-size: 13px;
}

/* Current Page */

.page-header-breadcrumb-current {
  color: #a9a39a;
}

/* =========================================================
   DECORATIVE LINE
   ========================================================= */

.page-header-decoration {
  position: absolute;

  right: 0;
  bottom: 75px;

  width: 40%;
  max-width: 560px;

  display: flex;
  align-items: center;

  pointer-events: none;
}

.page-header-decoration-line {
  width: 100%;
  height: 1px;

  background: rgba(208, 177, 106, 0.45);
}

.page-header-decoration-dot {
  position: absolute;

  right: 0;

  width: 9px;
  height: 9px;

  border: 1px solid #d0b16a;
  border-radius: 50%;

  background: #171817;
}

/* =========================================================
   SUBTLE DECORATIVE CIRCLES
   ========================================================= */

.page-header::before {
  content: "";

  position: absolute;

  top: -160px;
  right: -100px;

  width: 390px;
  height: 390px;

  border: 1px solid rgba(208, 177, 106, 0.1);

  border-radius: 50%;

  pointer-events: none;
}

.page-header::after {
  content: "";

  position: absolute;

  left: -180px;
  bottom: -220px;

  width: 430px;
  height: 430px;

  border: 1px solid rgba(208, 177, 106, 0.07);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .page-header-container {
    min-height: 300px;

    padding: 90px 0 70px;
  }

  .page-header-title {
    font-size: clamp(50px, 4vw, 70px);
  }

  .page-header-decoration {
    width: 32%;
    bottom: 62px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 576) {
  .page-header-container {
    width: 88%;

    min-height: 260px;

    padding: 80px 0 55px;

    align-items: center;
  }

  .page-header-title {
    font-size: clamp(54px, 16vw, 76px);

    line-height: 0.92;
  }

  .page-header-breadcrumb {
    margin-top: 25px;

    gap: 9px;

    font-size: 9px;

    letter-spacing: 0.12em;
  }

  .page-header-decoration {
    right: 0;
    bottom: 38px;

    width: 42%;
  }

  .page-header-decoration-dot {
    width: 7px;
    height: 7px;
  }

  .page-header::before {
    width: 230px;
    height: 230px;

    top: -100px;
    right: -120px;
  }

  .page-header::after {
    width: 260px;
    height: 260px;

    left: -150px;
    bottom: -150px;
  }
}
