/* ==========================================================================
   Central Vehicle Leasing — LinkStack Theme
   Mobile-first, clean & professional
   ========================================================================== */

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––

- CSS Custom Properties
- Grid / Layout
- Base Styles
- Background
- Typography
- Links
- Spacing
- Utilities
- Misc
- Credit footer

*/


/* CSS Custom Properties
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {

  /* Font */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-size: 16px;

  /* Brand colours */
  --brand-teal: #06769e;
  --brand-light-blue: #e4f3f7;
  --brand-yellow: #fcfc5b;
  --brand-lavender: #a9b7f0;
  --brand-coral: #fc7779;

  /* Page */
  --background-color: #06769e;

  /* Avatar */
  --image-border-color: rgba(255, 255, 255, 0.3);
  --image-border-px: 3px;
  --image-width: 120px;
  --image-height: 120px;

  /* Typography colours */
  --title-color: #ffffff;
  --description-color: rgba(255, 255, 255, 0.85);

  /* Social icons */
  --svg-color: #ffffff;

  /* Buttons */
  --button-background-color: rgba(255, 255, 255, 0.15);
  --button-text-color: #ffffff;
  --button-text-hover-color: #06769e;

  /* Footer */
  --footer-background-color: transparent;
  --footer-text-color: rgba(255, 255, 255, 0.6);
  --footer-link-text-color: rgba(255, 255, 255, 0.8);
}

::selection {
  background: var(--brand-yellow);
  color: #06769e;
}

::-moz-selection {
  background: var(--brand-yellow);
  color: #06769e;
}


/* Grid / Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container {
  position: relative;
  width: 100%;
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.column {
  position: center;
  width: 100%;
  float: center;
  box-sizing: border-box;
}

/* Mobile: full-width with comfortable padding */
@media (min-width: 400px) {
  .container {
    width: 92%;
    padding: 0 16px;
  }
}

/* Tablet and up */
@media (min-width: 550px) {
  .container {
    width: 80%;
    padding: 0;
  }

  .column,
  .columns {
    margin-left: 0;
  }

  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: var(--font-family) !important;
  background-color: var(--background-color);
  color: var(--title-color);
  font-size: var(--font-size);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Background
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(160deg, #06769e 0%, #055a7a 50%, #044d69 100%);
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */

h1 {
  color: var(--title-color);
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

p {
  color: var(--description-color);
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 10px;
}

.badge {
  padding-bottom: 7px;
}

.badge-body {
  fill: rgba(255, 255, 255, 0.15);
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: var(--brand-yellow);
}

.spacing {
  padding: 0 10px;
  padding-top: 40px;
}


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */

code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

button,
.button {
  margin-bottom: 1rem;
  display: block !important;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
p,
ol {
  margin-bottom: 2rem;
}


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */

hr {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  border-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hidden Scrollbar */
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}


/* Credit footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.credit-txt {
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.credit-icon {
  display: none;
  right: 5px;
}

.credit-footer {
  position: relative;
  right: 15px;
}

.credit-footer:hover {
  opacity: 1;
}

.credit-txt-clr {
  color: rgba(255, 255, 255, 0.5) !important;
}
