/**
Theme Name: Astra Child
Author: Stage360
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/


/* ==== Global scrollbar styling (Astra Child) ==== */
/* Brand colours + defaults */
:root{
  --sb-track: #fceef5;     /* track/background */
  --sb-thumb: #e8509d;     /* thumb (matches your button) */
  --sb-thumb-hover: #e8509d;
  --sb-size: 14px;         /* width/height */
}

/* Firefox */
*{
  scrollbar-width: auto; /* auto | thin | none */
  scrollbar-color: var(--sb-thumb) var(--sb-track);
}

/* Chrome/Edge/Safari */
*::-webkit-scrollbar{
  width: var(--sb-size);
  height: var(--sb-size); /* for horizontal bars */
}
*::-webkit-scrollbar-track{
  background: var(--sb-track);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb{
  background-color: var(--sb-thumb);
  border-radius: 999px;               /* pill */
  border: 4px solid var(--sb-track);  /* creates space around thumb */
}
*::-webkit-scrollbar-thumb:hover{
  background-color: var(--sb-thumb-hover);
}

/* Optional: slightly larger on desktops only */
@media (hover:hover) and (pointer:fine){
  :root{ --sb-size: 16px; }
}


/* === PAGE STYLES START HERE === */

/* === 404 page styles (scoped) === */
.error404 .mx-404 { background:#fdeef5; padding:64px 0; } /* outer spacing */
.error404 .mx-404__inner{
  max-width:1100px;
  margin:0 auto;
  background:#fff;
  padding:72px 40px;                  /* inner spacing */
  border-radius:14px;
  text-align:center;
}
.error404 .mx-404 h1{
  font-size:clamp(64px,9vw,160px);    /* bigger 404 */
  margin:0 0 16px;
  line-height:1;
}
.error404 .mx-404__lead{
  font-size:clamp(16px,2vw,20px);
  color:#414141;
  margin:0 auto 24px;                 /* more spacing */
  max-width:720px;
  line-height:1.6;
}
.error404 .mx-404__actions{ margin-top:24px; }

/* Base button layout */
.error404 .ast-button.mx-404__btn{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  margin:10px 12px;
  padding:13px 22px;
  text-decoration:none;
}

/* Pill button (solid color, no gradient) */
.error404 .mx-404__btn--home{
  border-radius:9999px;              /* pill */
  background-image:none !important;  /* kill any theme gradients */
  background-color:#ee4fa2;          /* ← set your brand color */
  color:#fff;                        /* white text on solid fill */
  border:0;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  transition:background-color .18s ease, box-shadow .18s ease; /* no transform */
}

/* Hover/focus states (no movement) */
.error404 .mx-404__btn--home:hover,
.error404 .mx-404__btn--home:focus-visible{
  background-color:#e34998;          /* hover color */
  box-shadow:0 4px 14px rgba(0,0,0,.12);
}

/* Arrow SVG animation (arrow slides, button stays still) */
.error404 .mx-404__icon{
  transition:transform 180ms ease;
}
.error404 .mx-404__btn--home:hover .mx-404__icon,
.error404 .mx-404__btn--home:focus-visible .mx-404__icon{
  transform:translateX(-4px);        /* slide a bit to the left */
}

/* Optional: focus ring for keyboard users */
.error404 .mx-404__btn--home:focus-visible{
  outline:2px solid rgba(0,0,0,.35);
  outline-offset:2px;
}

