/* Production Tracker Section Styles */
#production-tracker {
  background-color: #0D1F3C;
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}

#production-tracker * {
  box-sizing: border-box;
}

.pt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* LEFT SIDE */
.pt-left {
  flex: 0 0 42%;
  max-width: 42%;
}

.pt-label {
  color: #C9A84C;
  font-family: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pt-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #F5F0E8;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.75rem 0;
}

.pt-body {
  font-family: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
  color: #F5F0E8;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.88;
  margin-bottom: 2rem;
}

.pt-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pt-bullets li {
  font-family: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
  color: #F5F0E8;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  opacity: 0.9;
}

.pt-bullets li::before {
  content: '◆';
  color: #C9A84C;
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 0.6rem;
  line-height: 1.6;
}

.pt-closing {
  font-family: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
  color: #C9A84C;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* RIGHT SIDE */
.pt-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pt-screenshot-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.4s ease;
}

.pt-screenshot-wrapper:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0.5deg);
}

.pt-screenshot-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(201, 168, 76, 0.15);
  display: block;
}

/* Subtle glow behind the screenshot */
.pt-screenshot-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  z-index: -1;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pt-container {
    gap: 2.5rem;
  }
  .pt-left {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .pt-heading {
    font-size: 2.25rem;
  }
  .pt-screenshot-wrapper {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  #production-tracker {
    padding: 3.5rem 0;
  }
  .pt-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  .pt-left {
    flex: none;
    max-width: 100%;
  }
  .pt-heading {
    font-size: 2rem;
  }
  .pt-right {
    width: 100%;
  }
  .pt-screenshot-wrapper {
    max-width: 100%;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  }
}

@media (max-width: 480px) {
  #production-tracker {
    padding: 2.5rem 0;
  }
  .pt-heading {
    font-size: 1.65rem;
  }
  .pt-body {
    font-size: 0.95rem;
  }
  .pt-bullets li {
    font-size: 0.92rem;
  }
  .pt-screenshot-wrapper {
    transform: none;
  }
}

/* Nav link addition styles */
.pt-nav-link {
  color: rgba(245, 240, 232, 0.8) !important;
  font-size: 0.875rem !important;
  font-family: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  white-space: nowrap !important;
}

.pt-nav-link:hover {
  color: #C9A84C !important;
}

/* Mobile menu link */
.pt-mobile-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(245, 240, 232, 0.8);
  font-family: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pt-mobile-link:hover {
  color: #C9A84C;
}
