/* ===================================================================
   Athena Eye Care — Brand Variables
   Verified via DevTools inspection of athenaeyecare.com
   =================================================================== */

:root {
  /* ----- COLORS ----- */
  --color-sky-blue: #5EC3F0;       /* CTA strips, contact section, footer */
  --color-teal-dark: #159297;       /* Logo primary */
  --color-teal-bright: #19CDD7;     /* Logo accent */
  --color-navy-teal: #1B597C;       /* Section headings on sub-pages + Reviews heading on home (F12-verified) */
  --color-black: #000000;           /* Body text, buttons */
  --color-white: #FFFFFF;           /* Body backgrounds, hero text */

  /* Semantic aliases — name the role, not the color.
     Used by .awards-section__title and .cta-strip__text. Previously
     these resolved to nothing (variable undefined) and silently fell
     back to inherited black. Defining it explicitly removes the latent
     bug and gives us one place to retheme later. */
  --color-text: var(--color-black);

  /* Utility shades */
  --color-gray-100: #f7f7f7;
  --color-gray-200: #e8e8e8;
  --color-gray-300: #cccccc;
  --color-gray-500: #808080;
  --color-gray-700: #4a4a4a;

  /* ----- TYPOGRAPHY ----- */

  /* Font families */
  /* --font-jost is now historically named but maps to Nunito Sans.
     RATIONALE: The original Weebly site uses "Birdseye" (Avenir Next
     Ultra Light) as its display font. Jost was the original
     approximation. After visual comparison, Nunito Sans was chosen as
     a closer-feeling match (rounder letterforms, softer terminals).
     The variable name `--font-jost` was kept to avoid having to update
     every reference across pages.css / base.css / components.css /
     responsive.css. If you want to rename it for clarity later, grep
     all CSS files for `--font-jost` first to catch every usage. */
  --font-jost: 'Nunito Sans', 'Avenir Next', 'Avenir', sans-serif;
  --font-playfair: 'Playfair Display', Georgia, serif;
  --font-montserrat: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-times: 'Times New Roman', Times, serif;

  /* Font sizes */
  --fs-hero-h1: 40px;
  --fs-hero-subtitle: 15.6px;
  --fs-section-h2: 24px;
  --fs-h3: 20px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-button: 12px;

  /* Line heights */
  --lh-hero-h1: 46px;
  --lh-hero-subtitle: 17.94px;
  --lh-section-h2: 30px;
  --lh-body: 28px;       /* = 1.75 ratio */

  /* Font weights */
  --fw-thin: 100;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Letter spacing */
  --ls-button: 0.36px;
  --ls-hero-subtitle: 1px;

  /* ----- SPACING ----- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* ----- LAYOUT ----- */
  --container-max-width: 1200px;
  --container-padding-mobile: 16px;
  --container-padding-tablet: 24px;
  --container-padding-desktop: 32px;

  /* ----- BUTTONS ----- */
  /* Button padding — horizontal widened from 30px to 40px by visual
     comparison: the original's hero buttons read noticeably wider than
     the build's. Vertical kept at 14px. This is an eyeball match from
     screenshot comparison, not a clean pixel measurement (the button
     box couldn't be cleanly isolated against the dark hero video) —
     verify against the original and nudge if needed. */
  /* Button padding — measured from exact isolated-button crops
     (build vs original, same scale). The build's buttons were ~1.38x
     too TALL and ~1.1x too WIDE.
     - padding-y 14 → 6: removes ~16px height to match original
     - padding-x 40 → 30: the 40 was a wrong guess from an earlier round;
       the crop ratios show ~30 is correct (reverts that mistake) */
  --button-padding-y: 6px;
  --button-padding-x: 30px;
  --button-border-radius: 0;

  /* ----- TRANSITIONS ----- */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* ----- SHADOWS ----- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}
