/* ============================================================
   eZWay Promotions — Design System
   Theme: Golden × Dark Luxury
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  /* Golden palette */
  --ez-golden: linear-gradient(
    100deg,
    #c9930a 0%,
    #f5d870 40%,
    #e6c153 70%,
    #c9930a 100%
  );
  --ez-golden-shine: linear-gradient(
    90deg,
    #e7c255 0%,
    #faf0a0 50%,
    #e6c153 100%
  );
  --ez-golden-dk: #c9930a;
  --ez-golden-mid: #e6c153;
  --ez-golden-lt: #f5ea85;
  --ez-golden-text: #e3bb45;
  --ez-golden-glow: rgba(230, 193, 83, 0.15);
  --ez-golden-border: rgba(230, 193, 83, 0.22);

  /* Dark palette */
  --ez-dark: #07090d;
  --ez-dark2: #0e1118;
  --ez-mid: #161d2b;
  --ez-mid2: #1e2737;
  --ez-surface: #232d40;

  /* Neutrals */
  --ez-border: rgba(255, 255, 255, 0.07);
  --ez-muted: #8a94a8;
  --ez-muted2: #5a6275;
  --ez-white: #ffffff;
  --ez-light: #f0f2f7;

  /* Radii */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-gold: 0 0 48px rgba(230, 193, 83, 0.18);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.55);
  --shadow-nav:
    0 1px 0 rgba(230, 193, 83, 0.15), 0 12px 40px rgba(0, 0, 0, 0.45);

  /* ── Typography scale tokens ──
     These drive both the utility classes (.ez-h-1 … .ez-text-xs)
     and every component that references font-size.
     Update here once → propagates everywhere.           */
  --ez-fs-h1: clamp(48px, 10.5vw, 150px);
  --ez-fs-h2: clamp(32px, 5vw, 72px);
  --ez-fs-h3: clamp(28px, 4.2vw, 60px);
  --ez-fs-h4: clamp(24px, 3.3vw, 48px);
  --ez-fs-h5: clamp(20px, 2.5vw, 36px);
  --ez-fs-h6: clamp(16px, 1.7vw, 24px);
  --ez-fs-xl: clamp(17px, 1.7vw, 20px);
  --ez-fs-lg: clamp(15px, 1.4vw, 18px);
  --ez-fs-base: clamp(14px, 1.2vw, 16px);
  --ez-fs-md: clamp(14px, 1.1vw, 16px);
  --ez-fs-sm: clamp(12px, 0.97vw, 14px);
  --ez-fs-xs: 12px;
}

/* ============================================================
   Reset + Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--ez-dark);
  color: var(--ez-white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin-bottom: 0 !important;
}
blockquote{
  margin: 0 !important;
}
/* ============================================================
   Utility — Golden Text
   ============================================================ */
.ez-gold-text {
  background: var(--ez-golden-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Typography Classes
   ============================================================ */

/*
  Heading scale  — all values are responsive via clamp()
  ┌──────────┬──────────────┬─────────┬──────────────┐
  │  Class   │  Mobile min  │  Fluid  │  Desktop max │
  ├──────────┼──────────────┼─────────┼──────────────┤
  │ .ez-h-1  │    48 px     │ 10.5vw  │   150 px     │
  │ .ez-h-2  │    32 px     │  5 vw   │    72 px     │
  │ .ez-h-3  │    28 px     │ 4.2vw   │    60 px     │
  │ .ez-h-4  │    24 px     │ 3.3vw   │    48 px     │
  │ .ez-h-5  │    20 px     │ 2.5vw   │    36 px     │
  │ .ez-h-6  │    16 px     │ 1.7vw   │    24 px     │
  └──────────┴──────────────┴─────────┴──────────────┘

  Text scale
  ┌────────────────┬──────────┬──────────┬──────────┐
  │     Class      │   min    │  fluid   │   max    │
  ├────────────────┼──────────┼──────────┼──────────┤
  │ .ez-text-xl    │  17 px   │  1.7vw   │  20 px   │
  │ .ez-text-lg    │  15 px   │  1.4vw   │  18 px   │
  │ .ez-text-base  │  14 px   │  1.2vw   │  16 px   │
  │ .ez-text-md    │  14 px   │  1.1vw   │  16 px   │
  │ .ez-text-sm    │  12 px   │ 0.97vw   │  14 px   │
  │ .ez-text-xs    │         12 px (fixed)          │
  └────────────────┴──────────┴──────────┴──────────┘
*/

/* ── Heading Scale ── */

.ez-h-1 {
  font-size: var(--ez-fs-h1);
  font-weight: 700;
  line-height: clamp(62px, 13.2vw, 190px);
  letter-spacing: -0.035em;
  color: var(--ez-white);
}

.ez-h-2 {
  font-size: var(--ez-fs-h2);
  font-weight: 700;
  line-height: clamp(40px, 6.25vw, 90px);
  letter-spacing: -0.025em;
  color: var(--ez-white);
}

.ez-h-3 {
  font-size: var(--ez-fs-h3);
  font-weight: 500;
  line-height: clamp(36px, 5.4vw, 78px);
  letter-spacing: -0.02em;
  color: var(--ez-white);
}

.ez-h-4 {
  font-size: var(--ez-fs-h4);
  font-weight: 600;
  line-height: clamp(32px, 4.3vw, 62px);
  letter-spacing: -0.015em;
  color: var(--ez-white);
}

.ez-h-5 {
  font-size: var(--ez-fs-h5);
  font-weight: 600;
  line-height: clamp(26px, 3.2vw, 46px);
  letter-spacing: -0.01em;
  color: var(--ez-white);
}

.ez-h-6 {
  font-size: var(--ez-fs-h6);
  font-weight: 600;
  line-height: clamp(22px, 2.2vw, 32px);
  color: var(--ez-white);
}

/* ── Text Scale ── */

.ez-text-xl {
  font-size: var(--ez-fs-xl);
  font-weight: 400;
  line-height: clamp(25px, 2.6vw, 30px);
  color: var(--ez-muted);
}

.ez-text-lg {
  font-size: var(--ez-fs-lg);
  font-weight: 400;
  line-height: clamp(22px, 2.1vw, 27px);
  color: var(--ez-muted);
}

.ez-text-base {
  font-size: var(--ez-fs-base);
  font-weight: 400;
  line-height: clamp(21px, 1.9vw, 25px);
  color: var(--ez-muted);
}

.ez-text-md {
  font-size: var(--ez-fs-md);
  font-weight: 400;
  line-height: clamp(22px, 1.7vw, 26px);
  color: var(--ez-muted);
}

.ez-text-sm {
  font-size: var(--ez-fs-sm);
  font-weight: 400;
  line-height: clamp(18px, 1.5vw, 22px);
  color: var(--ez-muted);
}

.ez-text-xs {
  font-size: var(--ez-fs-xs);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ez-muted2);
}

/* Gold accent text utility */
.ez-text-gold {
  color: var(--ez-golden-text);
}
