/*
Theme Name: Coming Soon Theme
Theme URI: https://example.com/
Author: Original
Author URI: https://example.com/
Description: A minimal original theme that displays a preparation message while the website is being built.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coming-soon-theme
*/

:root {
  --page-bg: #f7f4ee;
  --text: #202124;
  --muted: #5f6368;
  --line: #d9d2c3;
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(180, 83, 9, 0.10), transparent 38%),
    var(--page-bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

.site-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
}

.coming-soon {
  width: min(100%, 720px);
  text-align: center;
}

.coming-soon__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.coming-soon__label::before,
.coming-soon__label::after {
  width: 36px;
  height: 1px;
  background: var(--line);
  content: "";
}

.coming-soon__title {
  margin: 0;
  font-size: clamp(3rem, 12vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
}

.coming-soon__message {
  max-width: 34rem;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.9;
}

@media (max-width: 480px) {
  .site-main {
    padding-inline: 18px;
  }

  .coming-soon__label::before,
  .coming-soon__label::after {
    width: 24px;
  }
}
