/* Transfer Antalya — Color tokens
   Sampled directly from the official Transfer Antalya logo:
     navy  #0E2242  (wordmark, TA monogram, hero surfaces, primary text)
     blue  #0F63C4  (the road swoosh / action color — CTAs, links, focus)
     gold  #F5C400  (the swoosh highlight — accents, ratings, badges)
   Neutrals are a cool grey ramp. No gradients as fill; depth = shadow + navy. */
:root {
  --white: #ffffff;

  /* ---- Brand: Navy ---- */
  --brand-navy:      #0E2242;
  --brand-navy-700:  #1a355f;
  --brand-navy-800:  #112a4f;
  --brand-navy-900:  #081428;
  --brand-navy-100:  #d5dced;
  --brand-navy-50:   #eef1f8;

  /* ---- Brand: Blue (action) ---- */
  --brand-blue:      #0F63C4;
  --brand-blue-700:  #0b4c9b;
  --brand-blue-600:  #1268c7;
  --brand-blue-200:  #a9c9ee;
  --brand-blue-100:  #cfe0f7;
  --brand-blue-50:   #eaf2fc;

  /* ---- Brand: Gold ---- */
  --brand-gold:      #F5C400;
  --brand-gold-700:  #c99f00;
  --brand-gold-600:  #e0b200;
  --brand-gold-100:  #fdefb8;
  --brand-gold-50:   #fff8df;

  /* ---- Neutral ramp (cool grey) ---- */
  --ink-900: #0E2242;
  --ink-800: #22314c;
  --ink-700: #33425e;
  --ink-600: #4a5a76;
  --ink-500: #697690;
  --ink-400: #94a0b5;
  --grey-300: #cfd6e2;
  --grey-200: #e3e8f0;
  --grey-100: #eef1f6;
  --grey-50:  #f6f8fb;

  /* ---- Semantic surfaces & text ---- */
  --bg:            #f6f8fb;
  --surface:       #ffffff;
  --surface-2:     #f6f8fb;
  --surface-3:     #eaf2fc;   /* soft blue wash — selected rows, info */
  --surface-gold:  #fff8df;   /* soft gold wash */
  --surface-navy:  #0E2242;   /* dark hero band */
  --surface-inv:   #0E2242;

  --fg:              #0E2242;
  --fg-muted:        #4a5a76;
  --fg-subtle:       #697690;
  --fg-on-dark:      #ffffff;
  --fg-on-dark-muted: rgba(255,255,255,0.72);
  --fg-on-accent:    #ffffff;

  --border:          rgba(14,34,66,0.10);
  --border-strong:   #cfd6e2;

  /* ---- Action aliases ---- */
  --accent:        #0F63C4;
  --accent-hover:  #0b4c9b;
  --accent-soft:   #eaf2fc;
  --accent-fg:     #ffffff;

  /* ---- Feedback ---- */
  --green-500:  #1e9e6a;
  --red-500:    #db4a4a;
  --amber-500:  #f5a623;
  --sky-500:    #2e96e0;
  --yellow-500: #F5C400;

  /* ---- Inputs ---- */
  --input-bg:     #ffffff;
  --input-border: #cfd6e2;
  --input-focus:  #0F63C4;
  --input-ring:   rgba(15,99,196,0.14);
}
