/* ============================================================
   Don Chepe — Main Styles
   ============================================================ */

/* CSS Custom Properties */
:root {
  /* === Brand Palette === */
  --color-white:        #FFFFFF;
  --color-red:          #DB0502;
  --color-gold:         #FFC000;
  --color-navy-deep:    #052739;
  --color-navy:         #002D5D;
  --color-black:        #111111;
  --color-black-pure:   #000000;

  /* === Overlays === */
  --color-white-30:     rgba(255, 255, 255, 0.30);
  --color-copper-44:    rgba(201, 142, 70, 0.44);
  --color-transparent:  transparent;

  /* === Semantic Aliases === */
  --color-primary:      var(--color-red);
  --color-secondary:    var(--color-navy-deep);
  --color-accent:       var(--color-gold);
  --color-background:   var(--color-white);
  --color-text:         var(--color-black);

  /* Typography
     --font-display  → Catchy Melody (local)       — logo, títulos decorativos
     --font-heading  → Espiritu (Adobe Fonts)       — headings h1–h4
                        variantes disponibles:
                        font-family: 'espiritu-condensed', sans-serif;
                        font-family: 'espiritu-expanded', sans-serif;
     --font-body     → Proxima Nova (Adobe Fonts)   — texto, nav, UI
                        weights disponibles: 400 (regular), 500 (medium)
  */
  --font-display:  'Catchy Melody', cursive;
  --font-heading:  'espiritu', sans-serif;
  --font-body:     'proxima-nova', sans-serif;

  /* Spacing scale */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;

  /* Layout */
  --container-max: 1680px;
  --container-pad: clamp(1rem, 5vw, 2rem);

  /* Border radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
}

/* Base */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-background);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
