/* ==========================================
   CSS Variables & Root Configuration
   ========================================== */
:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;

  --scale: 0.80;
  
  /* Color Palette */
  --color-primary: #464b23;
  --color-secondary: #a78e68;
  --color-tertiary: #7c7049;
  --color-light: #d9ceb4;
  --color-white: #ffffff;
}

/* ==========================================
   Base Styles & Reset
   ========================================== */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

main,
section,
header,
nav,
article,
aside,
footer {
  display: block;
}

.main-container,
.main-container * {
  box-sizing: border-box;
}

input,
select,
textarea,
button {
  outline: 0;
}

/* ==========================================
   Main Layout
   ========================================== */
.main-container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: var(--color-primary);
  overflow-x: hidden;
  overflow-y: auto;
}

.content-wrapper {
  position: absolute;
  top: 93.4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(12px * var(--scale));
  z-index: 100;
  padding-bottom: 40px;
}

/* ==========================================
   Typography & Decorative Elements
   ========================================== */
.vector {
  width: calc(565.122px * var(--scale));
  height: calc(2px * var(--scale));
  background: url(images/vector-line.png) no-repeat center;
  background-size: cover;
  margin: calc(10px * var(--scale)) 0;
  border: none;
}

.great-heart {
  color: var(--color-light);
  font-family: Archivo, var(--default-font-family);
  font-size: calc(20px * var(--scale));
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 1px;
  margin: calc(16px * var(--scale)) 0;
}

.coming-soon {
  color: var(--color-secondary);
  font-family: Archivo, var(--default-font-family);
  font-size: calc(30px * var(--scale));
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2.4px;
  margin: calc(16px * var(--scale)) 0;
}

/* ==========================================
   Call-to-Action Button
   ========================================== */
.rectangle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(226.928px * var(--scale));
  height: calc(65.041px * var(--scale));
  border: 2px solid var(--color-tertiary);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-top: calc(10px * var(--scale));
  text-decoration: none;
}

.rectangle:hover {
  background: rgba(167, 142, 104, 0.1);
  border-color: var(--color-secondary);
}

.rectangle:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.find-out-more {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Archivo, var(--default-font-family);
  font-size: calc(18px * var(--scale));
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.38px;
}

.learn-more {
  color: var(--color-secondary);
  font-family: Archivo, var(--default-font-family);
  font-size: calc(22px * var(--scale));
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.38px;
  display: block;
}

.find-out-more-1 {
  color: var(--color-secondary);
  font-family: Archivo, var(--default-font-family);
  font-size: calc(12px * var(--scale));
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  display: block;
  margin-top: 4px;
}

.mask-group {
  position: relative;
  width: 89.6%;
  min-height: 550px;
  height: 66.7vh;
  top: -2.8%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 -15vw 10vw -10vw rgba(0, 0, 0, 0.7);
  padding-bottom: 50px;
  overflow: visible;
  z-index: 1;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.slideshow-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.slide-image.active {
  opacity: 1;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.flex-row-d {
  position: absolute;
  width: calc(471.48px * var(--scale));
  height: calc(116px * var(--scale));
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.pch-logo {
  position: absolute;
  width: calc(171.6px * var(--scale));
  height: calc(116px * var(--scale));
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  font-size: 0;
}

.pch-logo img, .group img, .group-2 img {
  width: 100%;
  height: 100%;
}

nav {
  display: contents;
}

.development {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 21%;
  left: 0;
  color: var(--color-primary);
  font-family: Archivo, var(--default-font-family);
  font-size: calc(11px * var(--scale));
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.56px;
  z-index: 10;
}

.investor {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 21%;
  right: 3%;
  color: var(--color-primary);
  font-family: Archivo, var(--default-font-family);
  font-size: calc(11px * var(--scale));
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.56px;
  z-index: 13;
}

/* ==========================================
   Decorative Elements
   ========================================== */
.group {
  position: absolute;
  width: 15.87%;
  height: 39.44%;
  top: 40.22%;
  left: 0.18%;
  z-index: 100;
}

.group-2 {
  position: absolute;
  width: 17.37%;
  height: 39.2%;
  top: 40.22%;
  left: 82.63%;
  z-index: 100;
}

/* ==========================================
   Content Section
   ========================================== */
.content-text {
  font-family: Inter, var(--default-font-family);
  font-size: calc(48px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

.next-to {
  position: relative;
  color: var(--color-light);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(48px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.white-space {
  position: relative;
  color: var(--color-white);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(48px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.green {
  position: relative;
  color: var(--color-white);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(72px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.comma {
  position: relative;
  color: var(--color-white);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(72px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.white-space-4 {
  position: relative;
  color: var(--color-white);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(48px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.next-to-5 {
  position: relative;
  color: var(--color-light);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(48px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.white-space-6 {
  position: relative;
  color: var(--color-white);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(48px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.green-7 {
  position: relative;
  color: var(--color-white);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(72px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.next-to-8 {
  position: relative;
  color: var(--color-light);
  font-family: STIX Two Text, var(--default-font-family);
  font-size: calc(48px * var(--scale));
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

/* ==========================================
   Responsive Design - Media Queries
   ========================================== */

/* Large Desktop: 1600px - 1919px */
@media screen and (max-width: 1919px) {
  :root {
    --scale: 0.85;
  }
}

/* Desktop: 1440px - 1599px */
@media screen and (max-width: 1599px) {
  :root {
    --scale: 0.85;
  }
}

/* Tablet */
@media screen and (max-width: 768px) {
  :root {
    --scale: 0.6;
  }

  .mask-group {
    width: 95%;
  }

  .content-wrapper {
    top: 95.7%;
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  :root {
    --scale: 0.5;
  }

  .group, .group-2 {
     width: 23%;
     height: 55%;
  }

  .group {
    left: -5%;
  }

  .group-2 {
    left: 85%;
  }

  .pch-logo {
    position: absolute;
    width: calc(209px * var(--scale));
    height: calc(130px * var(--scale));
  }

  .development, .investor {
    font-size: 8px;
  }

  .investor {
    right: -5%;
  }

  .development {
    left: -5%;
  }
  
  .rectangle {
    width: calc(280.928px * var(--scale));
    height: calc(80.041px * var(--scale));
  }

  .learn-more {
    font-size: 13px;
  }

  .find-out-more-1 {
    font-size: 8px;
  }
  
  .mask-group {
    background-position: 48% center;
  }

  .slide-image {
    background-position: 48% center;
  }
}

.coming-soon {
  display: inline-block;
  transition: 
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s ease,
    filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.coming-soon:hover {
  color: var(--color-light);
  transform: scale(1.1);
  filter: brightness(1.08);
  cursor: pointer;
}