/* ==========================================================================
   Central Vehicle Leasing — Buttons & Brand Icons
   ========================================================================== */

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

- Social Icons
- Buttons
- Brand Icons

*/


/* Social Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.social-icon {
  font-size: 28px;
  padding: 8px;
  color: #ffffff;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  color: var(--brand-yellow);
  transform: scale(1.1);
}

.social-icon-div {
  padding-bottom: 24px;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.02em;

  color: var(--button-text-color);
  background-color: var(--button-background-color);

  width: 100%;
  max-width: 600px;

  /* Mobile-optimised touch target */
  min-height: 56px;
  line-height: 56px;
  padding: 0 20px;

  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  margin-bottom: 14px !important;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;

  /* Glassmorphism-lite effect */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.button:hover {
  background-color: #ffffff;
  color: #06769e;
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Ensure good touch targets on mobile */
@media (max-width: 480px) {
  .button {
    min-height: 54px;
    line-height: 54px;
    font-size: 0.9em;
    border-radius: 10px;
  }
}


/* Brand Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.icon {
  right: 10px;
  bottom: 2px;
  position: relative;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  -webkit-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.button:hover .icon {
  -webkit-filter: brightness(0);
  -moz-filter: brightness(0);
  filter: brightness(0);
}

svg {
  color: white !important;
}

.vehicle-card {
    max-width:600px;

    margin:10px auto;
    --radius: 16px;

    display: grid;
    grid-template-rows: auto 1fr;
    text-decoration: none;
    color: inherit;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;

    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 10px 30px rgba(0, 0, 0, 0.06);

    transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease;
    -webkit-tap-highlight-color: transparent;
}

.vehicle-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}

.vehicle-card__body {
    padding: 14px 14px 16px;
}

.vehicle-card__title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color:#000;
}

.vehicle-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.08),
        0 18px 50px rgba(0, 0, 0, 0.12);
}

.vehicle-card:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 3px;
}
