/*
Theme Name: Zootack Fresh
Theme URI: https://zootack.com
Author: Codex
Description: Minimal placeholder theme for the fresh Zootack installation.
Version: 1.0
Text Domain: zootack-fresh
*/

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1c1c1c;
  background: #f6f4ef;
}

a {
  color: #0f4c81;
}

.zf-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.zf-card {
  width: min(720px, 100%);
  background: #ffffff;
  border: 1px solid rgba(15, 33, 52, 0.08);
  box-shadow: 0 18px 50px rgba(15, 33, 52, 0.08);
  padding: 40px;
}

.zf-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a7480;
}

.zf-title {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.zf-copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #4c5560;
}

.zf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.zf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #0f2134;
}

.zf-button--primary {
  background: #0f2134;
  color: #fff;
}

.zf-button--secondary {
  background: transparent;
  color: #0f2134;
}

