/*
Theme Name: FBS Beauty Quiz Theme
Theme URI: https://fbs.beauty/
Author: FBS Beauty
Description: Lightweight dedicated theme for the FBS Beauty multilingual quiz.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: fbs-quiz-theme
*/

:root {
  color-scheme: light;
  --fbs-page-bg: #f7f5f0;
  --fbs-text: #273026;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--fbs-page-bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 9%, rgba(217, 175, 163, 0.18), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(134, 151, 120, 0.18), transparent 31%),
    var(--fbs-page-bg);
  color: var(--fbs-text);
  font-family: Inter, Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

.fbs-theme-site {
  display: flex;
  min-height: 100vh;
  padding: 28px 18px;
  align-items: center;
}

.fbs-theme-main {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.fbs-theme-content > :first-child {
  margin-top: 0;
}

.fbs-theme-content > :last-child {
  margin-bottom: 0;
}

.fbs-theme-missing {
  max-width: 680px;
  margin: 10vh auto;
  padding: 42px;
  border: 1px solid rgba(134, 151, 120, 0.25);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(54, 67, 51, 0.12);
  text-align: center;
}

.fbs-theme-missing h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
}

.fbs-theme-missing p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .fbs-theme-site {
    padding: 10px 7px;
    align-items: flex-start;
  }
}

