/*
 Theme Name:   Vaximo Child
 Description:  Vaximo Child Theme
 Author:       EnvyTheme
 Author URI:   https://envytheme.com
 Template:     vaximo
 Version:      3.6
 Text Domain:  vaximo-child
*/

/* =========================================
   UNIFIED TYPOGRAPHY SYSTEM - Big & Bold
   Matches modern agency style (invoads)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  /* Font Family */
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale - BIG */
  --fs-body: 16px;
  --fs-lead: 18px;
  --fs-small: 14px;
  --fs-caption: 13px;

  /* Headings - Large Scale */
  --fs-h1: clamp(48px, 7vw, 80px);
  --fs-h2: clamp(36px, 5vw, 56px);
  --fs-h3: 32px;
  --fs-h4: 22px;
  --fs-h5: 18px;

  /* Line Heights */
  --lh-body: 1.65;
  --lh-headings: 1.12;
  --lh-lead: 1.7;

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Colors */
  --ink: #131924;
  --muted: #657184;
  --brand: #223c81;
  --brand-light: #149bd7;
}

/* Base */
html{ font-size: 16px; }
body{
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings Global Reset */
h1, h2, h3, h4, h5, h6{
  font-family: var(--font-body);
  margin-top: 0;
  color: var(--ink);
}

h1{ font-size: var(--fs-h1); font-weight: var(--fw-extrabold); line-height: 1.08; letter-spacing: -0.03em; }
h2{ font-size: var(--fs-h2); font-weight: var(--fw-bold); line-height: var(--lh-headings); letter-spacing: -0.02em; }
h3{ font-size: var(--fs-h3); font-weight: var(--fw-bold); line-height: 1.2; letter-spacing: -0.01em; }
h4{ font-size: var(--fs-h4); font-weight: var(--fw-semibold); line-height: 1.3; }
h5{ font-size: var(--fs-h5); font-weight: var(--fw-semibold); line-height: 1.4; }

/* Paragraphs */
p{
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--muted);
  margin-top: 0;
}
p.lead{
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
}
p.small, .text-small{
  font-size: var(--fs-small);
  line-height: 1.5;
}

/* Eyebrow / Subtitle */
.eyebrow, .subtitle{
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 12px;
}
.eyebrow.light, .subtitle.light{
  color: rgba(255,255,255,0.9);
}

/* Section Title */
.section-title{
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-title h2{
  margin-bottom: 20px;
}
.section-title p{
  font-size: var(--fs-body);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Gradient Text */
.gradient-text{
  color: transparent;
  background: linear-gradient(139deg, var(--brand), var(--brand-light) 85%, #169bd7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Links */
.nav-link{
  font-size: 15px;
  font-weight: var(--fw-semibold);
}

/* Buttons */
.btn-text{
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
}

/* Cards */
.card-title{
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}
.card-text{
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--muted);
}

/* Utility */
.text-center{ text-align: center; }
.text-left{ text-align: left; }
.text-right{ text-align: right; }

/* =========================================
   RESPONSIVE CONTAINER - Nextwebi Exact
   ========================================= */

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1630px;
  }
}
