/*
Theme Name: Art Academy Holding Page
Theme URI: https://twotenstudio.co.uk
Author: TwoTen Studio
Author URI: https://twotenstudio.co.uk
Description: Minimal holding-page theme displaying the administration notice for The Art Academy. Every URL on the site renders the notice.
Version: 1.0.0
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artacademy-holding
*/

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --rule: rgba(255, 255, 255, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.notice {
  max-width: 40rem;
  width: 100%;
}

.notice h1 {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.notice .status {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.75rem;
}

.notice hr {
  border: none;
  border-top: 1px solid var(--rule);
  width: 4rem;
  margin: 2rem auto;
}

.notice p {
  margin-bottom: 1.25rem;
}

.notice p:last-child {
  margin-bottom: 0;
}

.notice a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  margin-top: 4rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}

.site-footer a:hover {
  color: var(--text);
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .notice h1 {
    font-size: 1.5rem;
  }
}
