/* PK Partners – custom styles (supplement to Tailwind CDN) */

html {
  scroll-behavior: smooth;
}

/* Soft glow behind hero */
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

/* Hero background image */
.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.55;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #12161c 0%, rgba(18,22,28,0.85) 40%, rgba(18,22,28,0.4) 75%, rgba(18,22,28,0.15) 100%),
    linear-gradient(180deg, rgba(18,22,28,0.7) 0%, transparent 30%, transparent 70%, #12161c 100%);
}
@media (max-width: 768px) {
  .hero-image img { opacity: 0.28; }
}

/* Form fields */
.field {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #2a313c;
  background-color: #12161c;
  padding: 0.7rem 0.9rem;
  color: #eef1f5;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease;
}
.field::placeholder {
  color: #5c6673;
}
.field:focus {
  border-color: #f5a623;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
/* Portrait frame (Vores Vision) */
.portrait-frame {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #2a313c;
  background-color: #181d25;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 0.5rem;
  pointer-events: none;
  z-index: 1;
}
.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .portrait-frame {
    max-width: 320px;
    margin: 0 auto;
  }
}
