/*
=============================================================================
CarQid Website
Copyright (c) 2026 FreKon Digital
All rights reserved.

File: style.css
Purpose: Styling for the CarQid coming soon landing page.
=============================================================================
*/

:root {
  --background: #0b0b0b;
  --text: #f5f1e8;
  --muted: #a8a39a;
  --gold: #c7a66b;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at center,
      rgba(199, 166, 107, 0.08) 0%,
      rgba(11, 11, 11, 0) 42%
    ),
    var(--background);

  color: var(--text);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.coming-soon {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 48px 24px;
  text-align: center;
}

.carqid-logo {
  width: min(520px, 82vw);
  height: auto;
  display: block;

  margin-bottom: 42px;
}

.availability {
  margin: 0;

  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;

  color: var(--muted);
}

.publisher {
  margin-top: 72px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  font-size: 0.9rem;
  color: var(--muted);
}

.publisher span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.publisher strong {
  color: var(--gold);

  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .coming-soon {
    padding: 32px 20px;
  }

  .carqid-logo {
    width: min(420px, 88vw);
    margin-bottom: 32px;
  }

  .publisher {
    margin-top: 56px;
  }
}