/*
Theme Name: Company Vehicle Solutions - Holding Page
Author: Indever Web Design
Version: 1.0
*/

:root {
  --brand: #5d2b6f;
  --text: #333333;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
}

.holding-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 25px;
}

.holding-page__content {
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.logo {
  display: block;
  width: min(420px, 85%);
  height: auto;
  margin: 0 auto 70px;
}

.holding-page__message h1 {
  margin: 0 0 25px;
  color: var(--brand);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  font-weight: 600;
}

.holding-page__message p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
}

.holding-page__message a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.holding-page__message a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .holding-page {
    padding: 40px 20px;
  }

  .logo {
    width: 90%;
    margin-bottom: 50px;
  }

  .holding-page__message p {
    font-size: 16px;
    line-height: 1.6;
  }
}
