/*
Theme Name: RoCoLu Basic
Theme URI: https://rocolu.com
Author: RoCoLu
Author URI: https://rocolu.com
Description: A minimal coming-soon style theme for RoCoLu displaying the logo and contact email.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: rocolu-basic
*/

:root {
  --bg: #ffffff;
  --text: #0b2233;
  --muted: #53616b;
  --line: #d8dde1;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
}

.rocolu-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.rocolu-card {
  width: min(680px, 100%);
  margin: 0 auto;
}

.rocolu-logo {
  width: min(460px, 92vw);
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.rocolu-email {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.rocolu-email:hover {
  color: var(--muted);
}
