/* ---------------------------
  PointScheduler page styles
   (works with your style.css)
   portraits: fixed at sides
---------------------------- */

/* Prevent body scroll when modal open */
.no-scroll { overflow: hidden; }

/* Hero main logo */
.ps-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-right: 14px;
}


/* HERO */
.ps-hero {
  background: #fff7ee; /* light orange hero */
  padding: 60px 20px;
  text-align: center;
  position: relative;
}
.ps-hero-inner { gap: 18px; display:flex; align-items:center; justify-content:center; }
.ps-small-logo { width:64px; height:64px; object-fit:contain; margin-right:14px; }
.ps-title { font-size:38px; font-weight:700; color:#ff8c00; margin:0; }
.ps-sub { color:#444; margin-top:6px; font-size:16px; }
.ps-sub-muted { color:#666; margin-top:6px; font-size:15px; }

/* FEATURE BOXES */
.ps-feature-box {
  background:#fff;
  border-radius:12px;
  padding:24px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:transform .25s ease;
  height:100%;
}
.ps-feature-box:hover { transform:translateY(-6px); }
.ps-feature-box h3 { color:#ff8c00; font-size:18px; margin-bottom:8px; }

/* APP PREVIEW IMAGES */
.ps-preview img {
  width:100%;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

/* GREEN BOOK A DEMO BUTTON (page) */
.ps-btn {
  display:inline-block;
  padding:12px 34px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  font-size:16px;
}
.ps-btn-green { background:#28a745; border:2px solid #1f8b3c; box-shadow:0 6px 16px rgba(40,167,69,0.15); }
.ps-btn-green:hover { background:#218c3b; }

/* ==========================
  Fixed portraits (Option A)
========================== */
.portrait {
  position: fixed;
  top: 18%;
  width:160px;
  max-width:12vw;
  opacity:0.95;
  z-index: 5;
  border-radius:14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-10%);
  pointer-events: none; /* they won't intercept clicks */
}
.portrait-left { left: 12px; transform: rotate(-6deg) translateY(-10%); }
.portrait-right { right: 12px; transform: rotate(6deg) translateY(-10%); }

/* Hide portraits on small screens */
@media (max-width: 900px) {
  .portrait { display:none; }
}

/* ----------------------------
  Modal (popup) - contact form style
  (orange -> green gradient like contact)
----------------------------- */
.demo-modal {
  display:none;
  position:fixed;
  z-index:9999;
  left:0; top:0; width:100%; height:100%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  justify-content:center;
  align-items:center;
  padding:20px;
}
.demo-modal-content{
  width:100%;
  max-width:520px;
  background:linear-gradient(180deg, #ffb66b 0%, #fff 40%, #eaf6ea 70%, #178a2a 100%);
  border-radius:14px;
  padding:26px;
  box-shadow:0 14px 40px rgba(0,0,0,0.25);
  position:relative;
}
.demo-modal-content h2 { margin-top:0; color:#222; text-align:center; font-size:26px; }
.demo-modal-content p { text-align:center; color:#333; margin-bottom:14px; }

/* Close */
.demo-close {
  position:absolute; right:18px; top:14px; font-size:26px;
  cursor:pointer; color:#ff8c00;
}

/* form fields (match contact) */
#demoForm input, #demoForm textarea {
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.08);
  margin-bottom:12px;
  font-size:15px;
  background:#fff;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}

/* submit button (green like contact) */
.demo-submit {
  background:#28a745;
  color:#fff;
  border:none;
  padding:12px 30px;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  display:block;
  margin: 8px auto 0;
}
.demo-submit:hover { background:#218c3b; }

/* Playstore */
.playstore-area { text-align:center; margin-top:16px; }
.playstore-btn img { width:170px; border-radius:10px; box-shadow:0 6px 16px rgba(0,0,0,0.12); transition:transform .18s ease; }
.playstore-btn img:hover { transform:scale(1.04); }

/* small screens */
@media (max-width:600px){
  .demo-modal-content { padding:18px; border-radius:12px; }
  .ps-title { font-size:28px; }
}

/* small cosmetic fix so footer does not overlap */
body { position:relative; }


.portrait {
    top: 25%;
}

/* Banner above key features */
.ps-feature-banner img {
    width: 90%;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin: 10px auto 40px;
}

.ps-play-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: .2s ease;
}

.ps-play-inline:hover {
    transform: scale(1.05);
}

.ps-play-icon {
    width: 30px;
    height: 30px;
}
