/* ============================================================
   AppVerticals — Global Stylesheet
   Shared base styles for all pages.
   Load this BEFORE header.css and footer.css.
   ============================================================ */

/* ── Gilroy Font Family ── */
/* woff-only: woff2 files not yet available; SemiBold→Bold, Heavy→ExtraBold fallback */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.woff') format('woff');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.woff') format('woff');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ── CSS Reset & Box Model ── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Gilroy', Arial, sans-serif;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.home {
  background: #0a0a0a !important;
  color: #fff !important;
}

/* Prevent scroll when mobile menu is open */
body.openmenu {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Gilroy', Arial, sans-serif;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Design Tokens ── */
:root {
  --red:        #e80101;
  --dark-red:   #c30010;
  --black:      #000000;
  --deep-black: #0a0a0a;
  --white:      #ffffff;
  --font:       'Gilroy', Arial, sans-serif;
}

/* ── Container ── */
.container-fluid {
  width: 100%;
  padding: 0 50px;
}

@media (max-width: 1200px) {
  .container-fluid { padding: 0 30px; }
}

@media (max-width: 991px) {
  .container-fluid { padding: 0 24px; }
}

@media (max-width: 575px) {
  .container-fluid { padding: 0 16px; }
}

/* ── Page Layout Wrapper ── */
#page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#page-content {
  flex: 1;
}

/* ── Utility: screen-reader only ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border-width: 0;
}
