/* ============================================================
   variables.css — Design Tokens (Single Source of Truth)
   ============================================================
   HOW TO USE
   ──────────
   Load this file FIRST on every page, before style.css and
   before index.css (index pages only).

   <link rel="stylesheet" href="css/variables.css">
   <link rel="stylesheet" href="css/style.css">
   <!-- index pages only: -->
   <link rel="stylesheet" href="css/index.css">

   HOW TO EDIT
   ───────────
   Colors     → Edit the --color-* values below.
   SVG Icons  → Find the fill= inside the data URI string
                and update the RGB/hex to recolor without
                touching any other rule.
   Shadows /
   Transitions→ Edit --shadow-* and --transition-* below.

   KNOWN COLOR CONFLICT (resolved here)
   ─────────────────────────────────────
   style2019.css had  --color-accent: #801f6c
   index2019-2.css had --color-accent: #7e1d6b  (slightly darker)
   ⚠ Both values have been unified to #801f6c (style.css value).
     If the index pages looked visually different, change only
     the index.css :root block instead of editing here.

   Also resolved:
   index2019-2.css redeclared --color-accent-dark: #801f6c
   (same as style.css --color-accent).  Kept style.css value
   (#521546) as the hover/pressed state; the index value looked
   like a copy-paste error.
   ============================================================ */

:root {

  /* ── Brand Colours ───────────────────────────────────── */
  --color-accent:        #801f6c; /* primary purple-red          */
  --color-accent-dark:   #521546; /* hover / pressed state       */
  --color-accent-light:  rgba(128, 31, 108, 0.15); /* tint       */
  --color-primary:       #465696; /* index wrappers / view-more  */
  --color-blue:          #6184d8; /* info / swiper               */
  --color-teal:          #95dbd3; /* news tab accent             */
  --color-yellow:        #ffc857; /* feature section bg          */
  --color-gold:          #fec964; /* footer menu label           */
  --color-red:           #943838; /* footer bar bg               */
  --color-danger:        #dc3545; /* important-message           */
  --color-dark:          #3b3b3b; /* tab inactive bg             */
  --color-white:         #ffffff;
  --color-black:         #000000;
  --color-body-bg:       rgb(253, 234, 219); /* warm cream bg    */

  /* ── Text & Surface Grays ────────────────────────────── */
  --color-text-dark:     #444444; /* muted heading text          */
  --color-blue-light:    #f1f5ff; /* tab inactive text           */
  --color-orange-light:  #ffe3ca; /* mobile dropdown hover       */
  --color-gray:          #cccccc; /* generic mid gray            */
  --color-gray-light:    #eeeeee;
  --color-gray-medium:   #cccccc;
  --color-gray-light2:   #bbbbbb;
  --color-gray-pale:     #dddddd;
  --color-gray-mid:      #999999;
  --color-footer-dark:   #111111; /* footer bottom bar           */
  --color-purple-light:  #ede0ff;

  /* ── Shadows ─────────────────────────────────────────── */
  --shadow-glow-white:       0 0 10px rgba(255, 255, 255, 0.6);
  --shadow-nav:              5px 5px 10px rgba(255, 255, 255, 0.6);
  --shadow-glow-white-alpha: rgba(255, 255, 255, 0.6); /* for drop-shadow() */
  --shadow-card-alpha:       rgba(0, 0, 0, 0.1);       /* for box-shadow    */

  /* ── Transitions ─────────────────────────────────────── */
  --transition-default: all 0.3s ease;
  --transition-fast:    all 0.2s ease;
  --transition-slow:    all 0.5s;

  /* ── SVG Icon Data URIs ──────────────────────────────── */
  /* To recolor: find fill= inside the SVG string and      */
  /* update the hex/RGB value there.                       */
  --svg-arrow-left:   url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" id="left-arrow-circle" data-name="Flat Color" xmlns="http://www.w3.org/2000/svg" class="icon flat-color"><circle id="primary" cx="12" cy="12" r="10" style="fill: rgba(0, 0, 0, .7);"></circle><path id="secondary" d="M17,11H11V9.86a1,1,0,0,0-1.5-.69L6.38,11.31a.82.82,0,0,0,0,1.38L9.5,14.83a1,1,0,0,0,1.5-.69V13h6a1,1,0,0,0,0-2Z" style="fill: rgb(255, 255, 255);"></path></svg>') ;
  --svg-arrow-right:  url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" id="right-arrow-circle" data-name="Flat Color" xmlns="http://www.w3.org/2000/svg" class="icon flat-color"><circle id="primary" cx="12" cy="12" r="10" style="fill: rgba(0, 0, 0, .7);"></circle><path id="secondary" d="M17.62,11.31,14.5,9.17a1,1,0,0,0-1.5.69V11H7a1,1,0,0,0,0,2h6v1.14a1,1,0,0,0,1.5.69l3.12-2.14A.82.82,0,0,0,17.62,11.31Z" style="fill: rgb(255, 255, 255);"></path></svg>');
  --svg-arrow-left-hover:   url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" id="left-arrow-circle" data-name="Flat Color" xmlns="http://www.w3.org/2000/svg" class="icon flat-color"><circle id="primary" cx="12" cy="12" r="10" style="fill: rgba(255, 255, 255, 1);"></circle><path id="secondary" d="M17,11H11V9.86a1,1,0,0,0-1.5-.69L6.38,11.31a.82.82,0,0,0,0,1.38L9.5,14.83a1,1,0,0,0,1.5-.69V13h6a1,1,0,0,0,0-2Z" style="fill: rgba(0, 0, 0, .7);"></path></svg>') ;
  --svg-arrow-right-hover:  url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" id="right-arrow-circle" data-name="Flat Color" xmlns="http://www.w3.org/2000/svg" class="icon flat-color"><circle id="primary" cx="12" cy="12" r="10" style="fill: rgba(255, 255, 255, 1);"></circle><path id="secondary" d="M17.62,11.31,14.5,9.17a1,1,0,0,0-1.5.69V11H7a1,1,0,0,0,0,2h6v1.14a1,1,0,0,0,1.5.69l3.12-2.14A.82.82,0,0,0,17.62,11.31Z" style="fill: rgba(0, 0, 0, .7);"></path></svg>');
  --svg-icon-youtube:      url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23CD201F" fill-rule="evenodd" d="M9.522,15.553 L9.52125,8.80975 L16.00575,12.193 L9.522,15.553 Z M23.76,7.64125 C23.76,7.64125 23.52525,5.9875 22.806,5.25925 C21.89325,4.303 20.87025,4.2985 20.4015,4.243 C17.043,4 12.00525,4 12.00525,4 L11.99475,4 C11.99475,4 6.957,4 3.5985,4.243 C3.129,4.2985 2.10675,4.303 1.19325,5.25925 C0.474,5.9875 0.24,7.64125 0.24,7.64125 C0.24,7.64125 0,9.58375 0,11.5255 L0,13.3465 C0,15.289 0.24,17.23075 0.24,17.23075 C0.24,17.23075 0.474,18.8845 1.19325,19.61275 C2.10675,20.569 3.306,20.539 3.84,20.63875 C5.76,20.82325 12,20.88025 12,20.88025 C12,20.88025 17.043,20.87275 20.4015,20.62975 C20.87025,20.5735 21.89325,20.569 22.806,19.61275 C23.52525,18.8845 23.76,17.23075 23.76,17.23075 C23.76,17.23075 24,15.289 24,13.3465 L24,11.5255 C24,9.58375 23.76,7.64125 23.76,7.64125 L23.76,7.64125 Z"/></svg>') ;
  --svg-icon-youtube-hover:url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFFFFF" fill-rule="evenodd" d="M9.522,15.553 L9.52125,8.80975 L16.00575,12.193 L9.522,15.553 Z M23.76,7.64125 C23.76,7.64125 23.52525,5.9875 22.806,5.25925 C21.89325,4.303 20.87025,4.2985 20.4015,4.243 C17.043,4 12.00525,4 12.00525,4 L11.99475,4 C11.99475,4 6.957,4 3.5985,4.243 C3.129,4.2985 2.10675,4.303 1.19325,5.25925 C0.474,5.9875 0.24,7.64125 0.24,7.64125 C0.24,7.64125 0,9.58375 0,11.5255 L0,13.3465 C0,15.289 0.24,17.23075 0.24,17.23075 C0.24,17.23075 0.474,18.8845 1.19325,19.61275 C2.10675,20.569 3.306,20.539 3.84,20.63875 C5.76,20.82325 12,20.88025 12,20.88025 C12,20.88025 17.043,20.87275 20.4015,20.62975 C20.87025,20.5735 21.89325,20.569 22.806,19.61275 C23.52525,18.8845 23.76,17.23075 23.76,17.23075 C23.76,17.23075 24,15.289 24,13.3465 L24,11.5255 C24,9.58375 23.76,7.64125 23.76,7.64125 L23.76,7.64125 Z"/></svg>') ;
  --svg-icon-font:         url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>ic_fluent_text_font_size_24_filled</title><desc>Created with Sketch.</desc><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="ic_fluent_text_font_size_24_filled" fill="%23801f6c" fill-rule="nonzero"><path d="M9.96973134,16.1676988 L14.5597933,3.65629281 C14.8658898,2.82190042 16.0062636,2.7839735 16.3882035,3.54251203 L16.4374349,3.65629281 L21.9389727,18.6530071 C22.1291829,19.1715035 21.8630543,19.7460237 21.3445578,19.9362339 C20.8630969,20.1128576 20.3333297,19.8960056 20.1078122,19.4489883 L20.0613311,19.3418191 L18.6507313,15.4986988 L12.3457313,15.4986988 L10.9040947,19.4185072 L10.9040947,19.4185072 L10.8631472,19.4974307 L10.8631472,19.4974307 L10.7910689,19.6055793 L10.7910689,19.6055793 L10.7134865,19.6954421 L10.7134865,19.6954421 L10.6286155,19.7731048 L10.6286155,19.7731048 L10.5461422,19.8334381 L10.5461422,19.8334381 L10.4957113,19.8642525 L10.4957113,19.8642525 L10.411619,19.9074431 L10.411619,19.9074431 L10.3076065,19.9480193 L10.3076065,19.9480193 L10.2029659,19.9761277 L10.2029659,19.9761277 L10.0696716,19.9950212 L10.0696716,19.9950212 L9.96236211,19.997081 L9.96236211,19.997081 L9.89175982,19.9920615 L9.89175982,19.9920615 L9.78921006,19.9756858 L9.78921006,19.9756858 L9.63922865,19.9311953 L9.63922865,19.9311953 L9.56990029,19.901584 L9.56990029,19.901584 L9.46987671,19.8472224 L9.46987671,19.8472224 L9.35831456,19.7671539 L9.35831456,19.7671539 L9.26665026,19.680721 L9.26665026,19.680721 L9.20269015,19.6050585 L9.20269015,19.6050585 L9.14144021,19.5150962 L9.14144021,19.5150962 L9.08735353,19.4126293 L9.08735353,19.4126293 L8.34173134,17.4996988 L4.65473134,17.4996988 L3.93200399,19.3598611 C3.74612765,19.8378261 3.23314027,20.091838 2.74868178,19.9654159 L2.63755197,19.9294171 C2.15958693,19.7435407 1.90557508,19.2305533 2.03199719,18.7460949 L2.06799601,18.634965 L5.56653421,9.63877441 C5.88137646,8.82918461 6.9873796,8.79063271 7.37757051,9.52311873 L7.43054218,9.63877441 L9.96973134,16.1676988 L14.5597933,3.65629281 L9.96973134,16.1676988 Z M6.49853819,12.7602387 L5.43273134,15.4996988 L7.56373134,15.4996988 L6.49853819,12.7602387 Z M15.4986141,6.90424881 L13.0787313,13.4986988 L17.9167313,13.4986988 L15.4986141,6.90424881 Z"></path></g></g></svg>');
  --svg-icon-font-hover:   url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>ic_fluent_text_font_size_24_filled</title><desc>Created with Sketch.</desc><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="ic_fluent_text_font_size_24_filled" fill="%23ffffff" fill-rule="nonzero"><path d="M9.96973134,16.1676988 L14.5597933,3.65629281 C14.8658898,2.82190042 16.0062636,2.7839735 16.3882035,3.54251203 L16.4374349,3.65629281 L21.9389727,18.6530071 C22.1291829,19.1715035 21.8630543,19.7460237 21.3445578,19.9362339 C20.8630969,20.1128576 20.3333297,19.8960056 20.1078122,19.4489883 L20.0613311,19.3418191 L18.6507313,15.4986988 L12.3457313,15.4986988 L10.9040947,19.4185072 L10.9040947,19.4185072 L10.8631472,19.4974307 L10.8631472,19.4974307 L10.7910689,19.6055793 L10.7910689,19.6055793 L10.7134865,19.6954421 L10.7134865,19.6954421 L10.6286155,19.7731048 L10.6286155,19.7731048 L10.5461422,19.8334381 L10.5461422,19.8334381 L10.4957113,19.8642525 L10.4957113,19.8642525 L10.411619,19.9074431 L10.411619,19.9074431 L10.3076065,19.9480193 L10.3076065,19.9480193 L10.2029659,19.9761277 L10.2029659,19.9761277 L10.0696716,19.9950212 L10.0696716,19.9950212 L9.96236211,19.997081 L9.96236211,19.997081 L9.89175982,19.9920615 L9.89175982,19.9920615 L9.78921006,19.9756858 L9.78921006,19.9756858 L9.63922865,19.9311953 L9.63922865,19.9311953 L9.56990029,19.901584 L9.56990029,19.901584 L9.46987671,19.8472224 L9.46987671,19.8472224 L9.35831456,19.7671539 L9.35831456,19.7671539 L9.26665026,19.680721 L9.26665026,19.680721 L9.20269015,19.6050585 L9.20269015,19.6050585 L9.14144021,19.5150962 L9.14144021,19.5150962 L9.08735353,19.4126293 L9.08735353,19.4126293 L8.34173134,17.4996988 L4.65473134,17.4996988 L3.93200399,19.3598611 C3.74612765,19.8378261 3.23314027,20.091838 2.74868178,19.9654159 L2.63755197,19.9294171 C2.15958693,19.7435407 1.90557508,19.2305533 2.03199719,18.7460949 L2.06799601,18.634965 L5.56653421,9.63877441 C5.88137646,8.82918461 6.9873796,8.79063271 7.37757051,9.52311873 L7.43054218,9.63877441 L9.96973134,16.1676988 L14.5597933,3.65629281 L9.96973134,16.1676988 Z M6.49853819,12.7602387 L5.43273134,15.4996988 L7.56373134,15.4996988 L6.49853819,12.7602387 Z M15.4986141,6.90424881 L13.0787313,13.4986988 L17.9167313,13.4986988 L15.4986141,6.90424881 Z"></path></g></g></svg>');
  --svg-icon-search:       url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 6C13.7614 6 16 8.23858 16 11M16.6588 16.6549L21 21M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="%23801f6c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --svg-icon-search-hover: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 6C13.7614 6 16 8.23858 16 11M16.6588 16.6549L21 21M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  --svg-icon-globe:        url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23801f6c" width="800px" height="800px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"><title>globe</title><path d="M16 0.75c-8.422 0-15.25 6.828-15.25 15.25s6.828 15.25 15.25 15.25c8.422 0 15.25-6.828 15.25-15.25v0c-0.010-8.418-6.832-15.24-15.249-15.25h-0.001zM16.004 28.391c-1.216-1.16-2.219-2.532-2.951-4.057l-0.036-0.084h5.978c-0.765 1.611-1.77 2.983-2.985 4.135l-0.006 0.006zM12.075 21.75c-0.402-1.328-0.672-2.866-0.752-4.454l-0.002-0.046h9.359c-0.081 1.634-0.348 3.172-0.782 4.639l0.035-0.139zM3.313 17.25h5.483c0.075 1.633 0.311 3.174 0.696 4.656l-0.034-0.156h-4.822c-0.683-1.306-1.152-2.831-1.318-4.446l-0.004-0.054zM15.996 3.609c1.264 1.215 2.299 2.657 3.040 4.263l0.036 0.087-6.144-0.030c0.773-1.683 1.805-3.116 3.062-4.315l0.006-0.005zM19.989 10.464c0.365 1.263 0.612 2.729 0.688 4.239l0.002 0.047h-9.359c0.078-1.571 0.326-3.050 0.729-4.464l-0.034 0.139zM8.796 14.75h-5.483c0.165-1.616 0.611-3.093 1.288-4.433l-0.033 0.072 4.845 0.023c-0.325 1.276-0.545 2.762-0.615 4.288l-0.002 0.049zM23.204 17.25h5.483c-0.17 1.669-0.64 3.194-1.355 4.57l0.033-0.070h-4.823c0.35-1.326 0.587-2.867 0.66-4.451l0.002-0.049zM23.204 14.75c-0.070-1.552-0.285-3.016-0.632-4.429l0.032 0.155 4.881 0.024c0.614 1.237 1.040 2.677 1.197 4.196l0.005 0.054zM25.908 7.992l-4.090-0.020c-0.634-1.616-1.425-3.012-2.381-4.275l0.032 0.044c2.609 0.756 4.806 2.245 6.421 4.227l0.018 0.023zM12.53 3.742c-0.914 1.203-1.697 2.58-2.287 4.056l-0.042 0.119-4.038-0.020c1.626-1.957 3.795-3.411 6.277-4.132l0.090-0.022zM6.296 24.25h3.975c0.623 1.53 1.382 2.851 2.291 4.052l-0.032-0.044c-2.507-0.727-4.627-2.126-6.22-3.99l-0.015-0.018zM19.469 28.258c0.877-1.157 1.636-2.478 2.217-3.891l0.043-0.117h3.976c-1.608 1.882-3.728 3.281-6.145 3.985l-0.090 0.023z"></path></svg>');
  --svg-icon-globe-hover:  url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23ffffff" width="800px" height="800px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"><title>globe</title><path d="M16 0.75c-8.422 0-15.25 6.828-15.25 15.25s6.828 15.25 15.25 15.25c8.422 0 15.25-6.828 15.25-15.25v0c-0.010-8.418-6.832-15.24-15.249-15.25h-0.001zM16.004 28.391c-1.216-1.16-2.219-2.532-2.951-4.057l-0.036-0.084h5.978c-0.765 1.611-1.77 2.983-2.985 4.135l-0.006 0.006zM12.075 21.75c-0.402-1.328-0.672-2.866-0.752-4.454l-0.002-0.046h9.359c-0.081 1.634-0.348 3.172-0.782 4.639l0.035-0.139zM3.313 17.25h5.483c0.075 1.633 0.311 3.174 0.696 4.656l-0.034-0.156h-4.822c-0.683-1.306-1.152-2.831-1.318-4.446l-0.004-0.054zM15.996 3.609c1.264 1.215 2.299 2.657 3.040 4.263l0.036 0.087-6.144-0.030c0.773-1.683 1.805-3.116 3.062-4.315l0.006-0.005zM19.989 10.464c0.365 1.263 0.612 2.729 0.688 4.239l0.002 0.047h-9.359c0.078-1.571 0.326-3.050 0.729-4.464l-0.034 0.139zM8.796 14.75h-5.483c0.165-1.616 0.611-3.093 1.288-4.433l-0.033 0.072 4.845 0.023c-0.325 1.276-0.545 2.762-0.615 4.288l-0.002 0.049zM23.204 17.25h5.483c-0.17 1.669-0.64 3.194-1.355 4.57l0.033-0.070h-4.823c0.35-1.326 0.587-2.867 0.66-4.451l0.002-0.049zM23.204 14.75c-0.070-1.552-0.285-3.016-0.632-4.429l0.032 0.155 4.881 0.024c0.614 1.237 1.040 2.677 1.197 4.196l0.005 0.054zM25.908 7.992l-4.090-0.020c-0.634-1.616-1.425-3.012-2.381-4.275l0.032 0.044c2.609 0.756 4.806 2.245 6.421 4.227l0.018 0.023zM12.53 3.742c-0.914 1.203-1.697 2.58-2.287 4.056l-0.042 0.119-4.038-0.020c1.626-1.957 3.795-3.411 6.277-4.132l0.090-0.022zM6.296 24.25h3.975c0.623 1.53 1.382 2.851 2.291 4.052l-0.032-0.044c-2.507-0.727-4.627-2.126-6.22-3.99l-0.015-0.018zM19.469 28.258c0.877-1.157 1.636-2.478 2.217-3.891l0.043-0.117h3.976c-1.608 1.882-3.728 3.281-6.145 3.985l-0.090 0.023z"></path></svg>');
  --svg-icon-font-down:    url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23ffffff" width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M11.178 19.569a.998.998 0 0 0 1.644 0l9-13A.999.999 0 0 0 21 5H3a1.002 1.002 0 0 0-.822 1.569l9 13z"/></svg>');
}
