/* ============================================================
   Fourwinds Hub Page — Pixel-matched CSS from JotForm design
   ============================================================ */

/* ── Reset scoped to hub page ──────────────────────────────── */
.fw-hub-wrap *,
.fw-hub-wrap *::before,
.fw-hub-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Page Wrapper ──────────────────────────────────────────── */
.fw-hub-wrap {
  min-height: 100vh;
  background-color: #e8f4fb;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation Bar ────────────────────────────────────────── */
.fw-nav {
  background-color: #ffffff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 32px;
  height: 60px;
  border-bottom: 1px solid #e0e0e0;
}

.fw-nav a {
  color: #333333;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  margin-left: 28px;
  white-space: nowrap;
}

.fw-nav a:hover {
  color: #19a0d8;
}

/* ── Hero Section ──────────────────────────────────────────── */
.fw-hero {
  background-color: #19a0d8;
  padding: 48px 20px 88px;
  text-align: center;
}

/* Logo — output by the_custom_logo() wraps in <a class="custom-logo-link"> */
.fw-hero .custom-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.fw-hero .custom-logo-link img,
.fw-hero .fw-hero__logo {
  display: block;
     max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 18px;
}

.fw-hero__subtitle {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: #fff;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 34px;
    line-height: 40px;
    font-weight: bold;
    letter-spacing: 2.72px;
    padding: 0 0 12px;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: bold;
}

/* ── Card Wrapper (light blue bg continues below hero) ──────── */
.fw-card-section {
  background-color: #e8f4fb;
  display: flex;
  justify-content: center;
  padding: 0 16px 48px;
}

/* ── White Card (overlaps hero) ────────────────────────────── */
.fw-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 28px 24px 32px;
  width: 100%;
  max-width: 700px;
  margin-top: -52px;          /* pulls card up over hero bottom */
  position: relative;
  z-index: 1;
}

/* ── Button Grid ───────────────────────────────────────────── */
.fw-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── Base Button ───────────────────────────────────────────── */
.fw-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a9ed9;
  color: #ffffff !important;
	    cursor: pointer !important;
  border: none;
  border-radius: 50px;          /* full pill — exact JotForm value */
  padding: 14px 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}

.fw-btn:hover,
.fw-btn:focus-visible {
  background-color: #1585b8;
  outline: none;
}

.fw-btn:active {
  transform: scale(0.97);
}

/* Order Food — small width, centered */
.fw-btn--full {
  grid-column: 1 / -1;
  justify-self: center;
  width: 160px;
}

/* ── Quick Dials Block ─────────────────────────────────────── */
.fw-quick-dials {
  margin-top: 20px;
}

.fw-quick-dials__title {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* ── Responsive: single column on narrow phones ────────────── */
@media (max-width: 380px) {
  .fw-hero {
    padding: 36px 16px 80px;
  }

  .fw-hero .custom-logo-link img,
  .fw-hero .fw-hero__logo {
    max-width: 240px;
  }

  .fw-hero__subtitle {
    font-size: 17px;
  }

  .fw-card {
    padding: 20px 14px 24px;
    margin-top: -48px;
  }

  .fw-btn {
    font-size: 13px;
    padding: 12px 12px;
  }

  .fw-quick-dials__title {
    font-size: 16px;
  }
}


/* ============================================================
   ADD TO HOME SCREEN POPUP
   ============================================================ */
 
/* Overlay */
.fw-a2hs-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}
 
/* Modal */
.fw-a2hs-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 28px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.20);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
 
/* Close × */
.fw-a2hs-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: #ffffff;
  color: #666666;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
}
.fw-a2hs-close:hover { background-color: #f5f5f5; }
 
/* Logo inside popup */
.fw-a2hs-modal .custom-logo-link img,
.fw-a2hs-logo {
  display: block;
  max-width: 150px;
  height: auto;
  margin: 0 auto 20px;
}
 
/* Title */
.fw-a2hs-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 10px;
}
 
/* Description */
.fw-a2hs-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 22px;
}
 
/* Buttons */
.fw-a2hs-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.15s;
}
/* Green install button */
.fw-a2hs-btn--green {
  background-color: #5cb85c;
  color: #ffffff;
}
.fw-a2hs-btn--green:hover { background-color: #4cae4c; }
 
/* Ghost dismiss button */
.fw-a2hs-btn--ghost {
  background-color: transparent;
  color: #888888;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 13px;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
}
.fw-a2hs-btn--ghost:hover { background-color: #f5f5f5; }
 
/* Numbered steps */
.fw-a2hs-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
}
.fw-a2hs-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #222222;
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
  line-height: 1.5;
}
.fw-a2hs-steps li:last-child { border-bottom: none; }
.fw-a2hs-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background-color: #1a9ed9;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
/* Share icon */
.fw-a2hs-steps svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 2px;
  display: inline-block;
}
/* Responsive */
@media (max-width: 400px) {
  .fw-pwa-modal {
    padding: 28px 18px 22px;
  }

  .fw-pwa-title {
    font-size: 15px;
  }

  .fw-pwa-btn {
    width: 100%;
    min-width: unset;
  }
}
