/* ============================================================
   variables.css — Cafe & Bar Tirkku
   CSS Custom Properties (design tokens)

   Kaikki värit, typografia, välit ja animaatiot tässä tiedostossa.
   Muuttamalla arvoja täältä muuttuu koko sivuston ulkoasu.
   ============================================================ */

:root {

  /* ── Väripaletti ─────────────────────────────────────── */

  /* Pääväri: syvä viininpunainen / burgund */
  --color-primary:        #7B2D3E;
  --color-primary-dark:   #5A1F2C;
  --color-primary-light:  #9E4056;

  /* Korostusväri: lämmin kulta */
  --color-accent:         #C9973A;
  --color-accent-dark:    #A87A28;
  --color-accent-light:   #E0B660;

  /* Taustavärit */
  --color-bg:             #FAFAF7;   /* Lähes valkoinen, hieman lämmin */
  --color-bg-alt:         #F2EEE8;   /* Vaalea hiekka — vuorottelevat osiot */
  --color-bg-dark:        #1A1410;   /* Tumma tausta (footer, hero) */

  /* Tekstivärit */
  --color-text:           #2C2018;   /* Pääkopiointi — lähes musta */
  --color-text-muted:     #6B5B4E;   /* Toissijaiset tekstit */
  --color-text-light:     #F5F0E8;   /* Vaalea teksti tummalla taustalla */

  /* Reunat & viivat */
  --color-border:         #D9CFC4;
  --color-border-light:   #EDE8E0;

  /* Tila-värit */
  --color-success:        #4A7C59;
  --color-error:          #C0392B;

  /* ── Typografia ──────────────────────────────────────── */

  /* Otsikkofontti: elegantti serif */
  --font-heading:         'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Leipätekstifontti: selkeä sans-serif */
  --font-body:            'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Monospace (koodi, hinnat) */
  --font-mono:            'Courier New', Courier, monospace;

  /* Kirjasinkoot — modulaarinen skaala (1.25) */
  --text-xs:   0.64rem;    /*  ~10px */
  --text-sm:   0.8rem;     /*  ~13px */
  --text-base: 1rem;       /*  ~16px */
  --text-md:   1.25rem;    /*  ~20px */
  --text-lg:   1.563rem;   /*  ~25px */
  --text-xl:   1.953rem;   /*  ~31px */
  --text-2xl:  2.441rem;   /*  ~39px */
  --text-3xl:  3.052rem;   /*  ~49px */
  --text-hero: clamp(2.5rem, 6vw, 5rem);

  /* Rivivälit */
  --leading-tight:  1.2;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  /* ── Välit ───────────────────────────────────────────── */

  --space-1:   0.25rem;   /*  4px */
  --space-2:   0.5rem;    /*  8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */
  --space-32:  8rem;      /* 128px */

  /* Osioiden pystyvälit */
  --section-padding-y: clamp(4rem, 8vw, 8rem);

  /* ── Layout ──────────────────────────────────────────── */

  --container-max:        1200px;
  --container-narrow:     800px;
  --container-padding-x:  clamp(1rem, 4vw, 3rem);

  /* ── Reunapyöristykset ───────────────────────────────── */

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

  /* ── Varjot ──────────────────────────────────────────── */

  --shadow-sm:  0 1px 3px rgba(44, 32, 24, 0.08);
  --shadow-md:  0 4px 16px rgba(44, 32, 24, 0.12);
  --shadow-lg:  0 12px 40px rgba(44, 32, 24, 0.16);
  --shadow-xl:  0 24px 64px rgba(44, 32, 24, 0.20);

  /* ── Animaatiot ──────────────────────────────────────── */

  --transition-fast:    150ms ease;
  --transition-base:    250ms ease;
  --transition-slow:    400ms ease;
  --transition-x-slow:  700ms ease;

  /* ── Z-tasot ─────────────────────────────────────────── */

  --z-below:    -1;
  --z-base:      0;
  --z-raised:   10;
  --z-sticky:  100;
  --z-overlay: 200;
  --z-modal:   300;
  --z-toast:   400;
}

/* ── Tumma teema (tulevaisuutta varten) ─────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    /* Valinnainen: lisää dark mode -muuttujat tähän */
  }
}
