/* ============================================================
   LaBosquescuela UBA — Design Tokens
   Identidad visual: amarillo neón + naturaleza + orgánico
   ============================================================ */

:root {
  /* ── Colors ── */
  --accent:           #EEFF00;
  --accent-dark:      #c4d900;
  --accent-darker:    #a8b800;
  --accent-alpha-40:  rgba(238, 255, 0, 0.4);
  --accent-alpha-80:  rgba(238, 255, 0, 0.8);

  --bg-light:         #ffffff;
  --bg-dark:          #2C3E50;
  --bg-black:         #1a1a1a;
  --bg-gallery:       #0f0f0f;

  --text-primary:     #1a1a1a;
  --text-secondary:   #555555;
  --text-muted:       #666666;
  --text-white:       #ffffff;

  --overlay-light:    rgba(255, 255, 255, 0.98);
  --overlay-dark:     rgba(10, 10, 10, 0.97);
  --overlay-nav:      rgba(255, 255, 255, 0.1);

  /* ── Typography ── */
  --font-heading:     'Outfit', sans-serif;
  --font-body:        'Manrope', sans-serif;
  --font-logo:        'Poppins', sans-serif;

  /* Type Scale */
  --text-h1-hero:     72px;
  --text-h2-section:  56px;
  --text-h2-large:    64px;
  --text-h2-cta:      48px;
  --text-h3-card:     26px;
  --text-body-large:  22px;
  --text-body:        20px;
  --text-body-small:  18px;
  --text-base:        16px;
  --text-nav:         15px;
  --text-label:       14px;
  --text-caption:     13px;
  --text-logo:        20px;

  /* Font Weights */
  --weight-regular:   400;
  --weight-medium:    500;
  --weight-semibold:  600;
  --weight-bold:      700;

  /* Line Heights */
  --leading-tight:    1.1;
  --leading-normal:   1.6;
  --leading-relaxed:  1.8;

  /* ── Spacing ── */
  --space-2xs:  8px;
  --space-xs:   12px;
  --space-sm:   16px;
  --space-md:   20px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  40px;
  --space-3xl:  48px;
  --space-4xl:  60px;
  --space-5xl:  80px;
  --space-6xl:  100px;
  --space-7xl:  120px;

  /* ── Layout ── */
  --max-width:        1400px;
  --padding-section:  120px 60px;
  --padding-nav:      20px 60px;
  --padding-footer:   60px 60px 40px;

  /* ── Border Radius ── */
  --radius-pill:  50px;
  --radius-card:  0;
  --radius-small: 6px;

  /* ── Shadows ── */
  --shadow-card:    0 12px 40px rgba(0, 0, 0, 0.3);
  --shadow-blob:    0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-button:  0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-accent:  0 10px 30px rgba(238, 255, 0, 0.3);
  --shadow-lightbox: 0 20px 80px rgba(0, 0, 0, 0.5);

  /* ── Transitions ── */
  --transition-fast:    0.2s ease;
  --transition-base:    0.3s ease;
  --transition-slow:    0.4s ease;
  --transition-slide:   1.5s ease-in-out;
  --transition-blob:    0.6s ease-out;

  /* ── Z-Index ── */
  --z-nav:       1000;
  --z-lightbox:  2000;
  --z-dropdown:  1100;
}

/* ── Custom Scrollbar ── */
html {
  scroll-behavior: smooth;
  scrollbar-width: auto;
  scrollbar-color: var(--accent) rgba(0, 0, 0, 0.08);
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 7px;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-dark) 0%, var(--accent-darker) 100%);
}
