/*
Theme Name: Maison Project Theme
Theme URI: https://destinysoft.co
Author: Maison Project
Author URI: https://destinysoft.co
Description: Custom WordPress theme built for Maison.
Version: 1.0.7
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: maison-project
*/

:root {
  --maison-bg: #fcf9f4;
  --maison-bg-soft: #f6f3ee;
  --maison-navy: #0f1a2b;
  --maison-gold: #c6a75e;
  --maison-gold-dark: #745b19;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--maison-bg);
  color: var(--maison-navy);
  opacity: 0;
  transition: opacity 400ms ease;
}

body.is-ready {
  opacity: 1;
}

img {
  max-width: 100%;
  display: block;
}
