/*
Theme Name: Tokyo Colours Modern
Theme URI: https://tokyocolours.com
Author: Monochrome Design
Author URI: https://monochromedesign.com
Description: A modern block theme for Tokyo Colours.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tokyocolours
*/

/* 
 * NOTE: Styles are managed via Vite in `src/styles/`.
 * This file exists only for WordPress theme recognition.
 */

/* Critical loader styles to mask language switch flash (loaded early by WP). */
html {
  background: #fff;
}

html:not(.tc-loaded) body {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease, visibility 0s linear 0s;
  z-index: 99999;
  pointer-events: none;
  content: "";
}

body::before {
  background: #fff;
}

html.tc-loaded body::before {
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 0s linear 600ms;
}
