/*
Theme Name: Pantocrator Vision — Under Construction
Theme URI: https://pantocrator.ro/
Author: Pantocrator
Description: O temă minimalistă și elegantă pentru pagina temporară Pantocrator Vision.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: pantocrator-vision
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --pv-bg: #131311;
  --pv-bg-soft: #1b1a17;
  --pv-gold: #c5a35f;
  --pv-gold-light: #ead49a;
  --pv-ivory: #f4f0e6;
  --pv-muted: #aaa394;
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--pv-ivory);
  background:
    radial-gradient(circle at 50% 25%, rgba(197, 163, 95, .09), transparent 30rem),
    linear-gradient(145deg, #171714 0%, var(--pv-bg) 58%, #0d0d0c 100%);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

.pv-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.pv-page::before,
.pv-page::after {
  position: absolute;
  width: min(42vw, 34rem);
  aspect-ratio: 1;
  border: 1px solid rgba(197, 163, 95, .11);
  border-radius: 50%;
  content: "";
}

.pv-page::before { top: -25%; left: -12%; }
.pv-page::after { right: -15%; bottom: -30%; }

.pv-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 68rem);
  padding: clamp(2.25rem, 7vw, 6.5rem) clamp(1.5rem, 7vw, 6rem);
  border: 1px solid rgba(197, 163, 95, .35);
  background: rgba(21, 21, 18, .62);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, .3), inset 0 0 0 5px var(--pv-bg), inset 0 0 0 6px rgba(197, 163, 95, .08);
  text-align: center;
}

.pv-brand { margin-bottom: clamp(2rem, 6vw, 4.5rem); }

.pv-logo-link { display: inline-flex; color: inherit; text-decoration: none; }
.pv-logo-link img { display: block; width: auto; max-width: min(15rem, 60vw); max-height: 7rem; }

.pv-monogram {
  display: grid;
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 auto;
  place-items: center;
  border: 1px solid var(--pv-gold);
  border-radius: 50%;
  color: var(--pv-gold-light);
  font-size: 2rem;
  line-height: 1;
}

.pv-kicker {
  margin: 0 0 1.25rem;
  color: var(--pv-gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.pv-title {
  max-width: 15ch;
  margin: 0 auto;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
  text-wrap: balance;
}

.pv-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 9rem;
  margin: clamp(2rem, 5vw, 3.5rem) auto;
}

.pv-rule::before, .pv-rule::after { height: 1px; flex: 1; background: rgba(197, 163, 95, .5); content: ""; }
.pv-rule span { width: .42rem; height: .42rem; border: 1px solid var(--pv-gold); transform: rotate(45deg); }

.pv-note {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--pv-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  line-height: 1.75;
}

.pv-footer {
  margin-top: clamp(2.5rem, 7vw, 5rem);
  color: #777166;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .pv-page { padding: .85rem; }
  .pv-frame { min-height: calc(100svh - 1.7rem); display: flex; flex-direction: column; justify-content: center; }
  .pv-title { font-size: clamp(2.2rem, 12vw, 3.35rem); }
}

@media (prefers-reduced-motion: no-preference) {
  .pv-frame { animation: pv-appear .9s ease-out both; }
  @keyframes pv-appear { from { opacity: 0; transform: translateY(10px); } }
}

