@import url('/media/FA7/css/all.min.css');
/* ====== WMNR – Homepage essentials ====== */
:root{
  --cassiopeia-color-primary: #004177;
  --cassiopeia-color-link: #30638d;
  --link-color: #30638d;
  --link-color-rgb: 48, 99, 141;
  --cassiopeia-color-hover: #004177;
  --link-hover-color: #004177;
  --link-hover-color-rgb: 149, 75, 86;
  --wmnr-bg: #ffffff;
  --wmnr-text: #0f172a;
  --wmnr-muted: #6b7280;
  --wmnr-primary: #004177;     /* brand blue */
  --wmnr-primary-weak: #e6f0ff;
  --wmnr-accent: #F37D1F;      /* accent orange */
  --wmnr-border: #e5e7eb;
  --wmnr-card: #ffffff;
  --wmnr-green: #009900;       /* checkmark green */
}

.wmnr-homepage{ color:var(--wmnr-text); background:var(--wmnr-bg); font-size:16px; line-height:1.6; }
.wmnr-container{ max-width:1100px; margin:0 auto; padding:0 1rem; }
.wmnr-center{ text-align:center; }
.wmnr-muted{ color:var(--wmnr-muted); }
.wmnr-lead{ font-size:1.125rem; }

/* Hero (top padding reduced ~50%) */
.wmnr-hero{ position:relative; overflow:hidden; padding:2rem 0 1.5rem; background:linear-gradient(180deg, #f7faff 0%, #ffffff 100%); }
.wmnr-hero-inner{ position:relative; }
.wmnr-hero h1{ font-size:2.25rem; line-height:1.2; margin:0 0 .75rem; }
.wmnr-subtitle{ max-width:760px; margin:0 auto 1rem; color:#334155; }
.wmnr-hero-img{ max-width:820px; width:100%; height:auto; display:block; margin:1.25rem auto 0; }

.wmnr-cta{ display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; margin-top:.75rem; }
.wmnr-btn{ display:inline-block; padding:.75rem 1.25rem; border-radius:.6rem; font-weight:600; text-decoration:none; border:1px solid transparent; }
.wmnr-btn-primary{ background:var(--wmnr-primary); color:#fff; border-color:var(--wmnr-primary); }
.wmnr-btn-primary:hover{ filter:brightness(1.05); }
.wmnr-btn-ghost{ background:#fff; color:var(--wmnr-primary); border-color:var(--wmnr-primary); }
.wmnr-btn-ghost:hover{ background:var(--wmnr-primary-weak); }

.wmnr-section{ padding:3rem 0; }
.wmnr-section-alt{ background:#f8fafc; }

.wmnr-grid{ display:grid; gap:1.25rem; }
.wmnr-grid-2{ grid-template-columns:repeat(2, minmax(0,1fr)); }
.wmnr-grid-3{ grid-template-columns:repeat(3, minmax(0,1fr)); }

@media (max-width: 900px){
  .wmnr-grid-2, .wmnr-grid-3{ grid-template-columns:1fr; }
}

.wmnr-card{ background:var(--wmnr-card); border:1px solid var(--wmnr-border); border-radius:14px; padding:1.25rem; }
.wmnr-card h3{ margin:.5rem 0 .25rem; font-size:1.1rem; }
.wmnr-card p{ margin:0; color:var(--wmnr-muted); }

/* Iconed lists */
.wmnr-list-icons{ list-style:none; padding:0; margin:1rem 0 0; display:grid; gap:.5rem; }
.wmnr-li-ico{ width:24px; height:24px; vertical-align:middle; margin-right:.5rem; }

/* Feature list with check icons */
.wmnr-feature-list{ max-width:880px; margin:1.25rem auto 0; display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:.5rem 1rem; padding:0; list-style:none; }
.wmnr-feature-list li{ display:flex; align-items:flex-start; gap:.5rem; }
.wmnr-feature-list.tight{ gap:.5rem 1rem; }

.wmnr-chip{ width:20px; height:20px; vertical-align:middle; margin-top:.15rem; }

/* Optional: tint check icons if you ever use SVG again
.wmnr-chip svg{ fill:var(--wmnr-green); }
*/

.wmnr-icon{ width:48px; height:48px; display:block; margin-bottom:.5rem; }

/* ---- Keep your existing header/back-to-top/mobile styles below as-is ---- */
/* Move back to top button from right to left */

.back-to-top-link {
  z-index: 10000;
  color: var(--cassiopeia-color-primary, #112855);
  pointer-events: all;
  background-color: var(--white, #fff);
  border: 1px solid var(--cassiopeia-color-primary, #112855);
  opacity: 0;
  inset-inline-end: 1rem;
  border-radius: .25rem;
  padding: .5em;
  transition: opacity .2s ease-in;
  position: fixed;
  right: 200px; /* Adjust this value to your preference */
}

.back-to-top-link.visible {
  opacity: 1;
}

.back-to-top-link:hover, .back-to-top-link:focus {
  color: var(--white, #fff);
  background-color: var(--cassiopeia-color-hover);
  border-color: var(--white, #fff);
}

/* Hide the back-to-top button on mobile devices */
@media all and (max-width: 768px) {
    .back-to-top-link {  /* Replace .back-to-top with the actual class or element selector */
        display: none;
    }
}

/* on the home page, set the background colour of the header to transparent and make it fixed */

.ishome .container-header {
  background-color: transparent;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s;
}

/* set the background colour of the header on regular pages and when the page has scrolled*/
.container-header,
.container-header.scrolled {
  background-color: #004177;
  background-image: unset;
}

/* remove the margin from the module containing the logo */
.mod-custom p {
  margin: 0;
}

/* set the large banner to take up the full height of the viewport */
.container-banner .banner-overlay {
  height: 100vh;
}

@media (max-width: 768px) {
  .ishome .container-header, /* only required if using the full screen image on the home page */
  .container-header {
      position: fixed!important;
      top: auto;
      bottom: 0;
      width: 100%;
      padding: 0;
      background-color: #004177;
      background-image: unset;
  }
 .navbar-collapse {
      position: fixed;
      bottom: 60px;
      left: 0;
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 15px;
      width: 100%;
      background: #004177;
      height: auto;
      overflow: auto;
  }
  .navbar-collapse.collapsing {
    height: auto;
    transition: left 0.3s ease;
    left: -100%;
  }

  .navbar-collapse.show {
    left: 0;
    transition: left 0.3s ease-in;
  }
 .navbar-toggler {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    display: block;
    width: 70px;
    height: 70px;
    background-color: #004177;
    border: 4px solid #ffff00 !important;
    border-radius: 40px;
    right: 10px;
  }
  .container-header img {
    max-width: 75%;
  }


   /* Scope styles to this block only */
  .hosting-pricing {
    --green: #006600;
    --blue:  #000099;
    --maroon:#6d0200;
    --light: #efede9;
    --accent:#800000;
    --price:#ff0000;

    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    display: grid;
    gap: 1rem;
  }

  .hosting-pricing .intro {
    max-width: 70ch;
  }

  /* Card grid */
  .hosting-pricing .plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  @media (min-width: 700px) {
    .hosting-pricing .plans {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .hosting-card {
    border: 3px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
  }
  .hosting-card .head {
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .hosting-card.home   .head { background: var(--green); }
  .hosting-card.small  .head { background: var(--blue); }
  .hosting-card.medium .head { background: var(--maroon); }

  .hosting-card .body {
    padding: 1rem 1.25rem;
  }

  .hosting-card .features {
    display: grid;
    gap: .5rem;
  }
  .hosting-card .feature {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: .5rem .75rem;
    border-radius: 8px;
    background: #fff;
    align-items: center;
  }
  .hosting-card:nth-child(2) .feature:nth-child(odd),
  .hosting-card:nth-child(3) .feature:nth-child(odd),
  .hosting-card:nth-child(4) .feature:nth-child(odd) {
    background: var(--light);
  }

  .hosting-card .label {
    color: var(--accent);
    font-weight: 600;
  }
  .hosting-card .value {
    text-align: right;
    font-weight: 600;
  }
  .hosting-card .muted {
    font-weight: 400;
    opacity: .8;
    font-size: .9rem;
  }

  .hosting-card .price {
    text-align: center;
    padding: 1rem .75rem 0;
    font-size: 1.15rem;
  }
  .hosting-card .price strong {
    color: var(--price);
    font-size: 1.35rem;
  }

  .hosting-card .cta {
    padding: 1rem 1.25rem 1.25rem;
    margin-top: auto;
  }
  .hosting-card .cta input[type="image"] {
    display: block;
    margin: 0 auto;
  }

  /* Small type helpers */
  .small-note { font-size: .9rem; opacity: .9; }


