/* ============================================================
   POCONO VISTAS - site.css
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B2E4B;
  --navy-dark:  #111D2B;
  --sage:       #7A9E8E;
  --sage-light: #A8C4A0;
  --cream:      #F5F0E8;
  --cream-dark: #E8E3D8;
  --text-mid:   #3D4F63;
  --text-light: #5A6A7A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── COMING SOON LAYOUT ── */
.pv-coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.pv-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 0;
}

.pv-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(122,158,142,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(122,158,142,0.08) 0%, transparent 60%);
}

.pv-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 32px;
  max-width: 680px;
}

.pv-logo {
  display: block;
  max-width: 340px;
  height: auto;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1);
}

.pv-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}

.pv-divider {
  width: 48px;
  height: 1px;
  background: var(--sage);
  margin: 0 auto 48px;
  opacity: 0.5;
}

.pv-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.pv-headline em {
  font-style: italic;
  color: var(--sage-light);
}

.pv-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pv-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pv-btn-primary {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  padding: 15px 32px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.pv-btn-primary:hover { background: var(--cream); }

.pv-btn-ghost {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 15px 32px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
  cursor: pointer;
}
.pv-btn-ghost:hover { border-color: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
.pv-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 32px;
  background: var(--navy-dark);
  border-top: 1px solid rgba(122,158,142,0.12);
}

.pv-footer-copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.3);
}

/* ── MOUNTAIN SILHOUETTE ── */
.pv-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.pv-mountains svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pv-logo { max-width: 260px; }
  .pv-tagline { font-size: 18px; margin-bottom: 36px; }
  .pv-headline { font-size: 28px; }
  .pv-body { font-size: 14px; }
  .pv-content { padding: 32px 24px; }
  .pv-cta-row { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .pv-logo { max-width: 200px; }
  .pv-headline { font-size: 24px; }
  .pv-tagline { font-size: 16px; }
}
