/* ======================================== */
/* GLOBAL.CSS — MOBILE-FIRST ARCHITECTURE  */
/* ======================================== */

/* ---------------------------------------- */
/* 1. CSS VARIABLES (Design Tokens)          */
/* ---------------------------------------- */
:root {
  /* Brand Colors */
  --bvm-primary: #008BAC;      /* Teal */
  --bvm-secondary: #29BEEA;    /* Aqua Blue */
  --bvm-accent: #AED49A;       /* Soft Green */
  --bvm-text-dark: #2C3E50;    /* Deep Slate */
  --bvm-text-light: #ffffff;
  --bvm-bg-light: #ffffff;
  --bvm-bg-grey: #f5f5f5;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  /* Font Sizes (Mobile-first) */
  --fs-h1: 2rem;
  --fs-h2: 1.75rem;
  --fs-h3: 1.3rem;
  --fs-body: 1rem;
  --fs-small: 0.9rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-soft: 0px 4px 12px rgba(0, 139, 172, 0.1);
  --shadow-card: 0px 6px 18px rgba(44, 62, 80, 0.08);
}

/* ---------------------------------------- */
/* 2. GLOBAL RESET                          */
/* ---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--bvm-text-dark);
  background: var(--bvm-bg-light);
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul { list-style: none; }
button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

/* ---------------------------------------- */
/* 3. TYPOGRAPHY                            */
/* ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--bvm-text-dark);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { font-size: var(--fs-body); line-height: 1.6; }

/* ---------------------------------------- */
/* 4. BUTTONS                               */
/* ---------------------------------------- */
.btn-primary {
  background: var(--bvm-primary);
  color: var(--bvm-text-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  display: inline-block;
}
.btn-secondary {
  background: var(--bvm-secondary);
  color: var(--bvm-text-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  display: inline-block;
}
.btn-light-outline {
  border: 2px solid var(--bvm-primary);
  color: var(--bvm-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  display: inline-block;
}
.btn-outline {
  border: 2px solid var(--bvm-text-dark);
  color: var(--bvm-text-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* ---------------------------------------- */
/* 5. SECTIONS (Global structure)           */
/* ---------------------------------------- */
section {
  padding: var(--space-lg) var(--space-md);
}
.section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
  text-align: center;
}

/* ---------------------------------------- */
/* 6. RESPONSIVE BREAKPOINTS (Mobile-first) */
/* ---------------------------------------- */
@media (min-width: 600px) {
  :root {
    --fs-h1: 2.4rem;
    --fs-h2: 2rem;
    --fs-h3: 1.4rem;
  }
}
@media (min-width: 992px) {
  :root {
    --fs-h1: 3rem;
    --fs-h2: 2.4rem;
  }
}
