@import "../fonts/css/playfair-display-v37-latin.css";
@import "../fonts/css/nunito-v31-latin.css";
:root {
  --bs-font-sans-serif: 'Nunito', sans serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-headers-font: 'Playfair Display', serif;
  --icons-color: #355688;
}

body {
      background-color: #f8f9fa;
      font-family: var(--bs-body-font-family);
    }

    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--bs-headers-font);
    font-weight: 600;
    color: #4976ba;
    }

    .site-header,
    .site-footer {
      background: #ffffff;
    }

    .logo-box,
    .footer-logo-box {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 2px dashed #adb5bd;
      background: #f1f3f5;
      color: #6c757d;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .logo-box {
      width: 240px;
      height: 80px;
      max-width: 100%;
    }

    .footer-logo-box {
      width: 180px;
      height: 56px;
      max-width: 100%;
      font-size: 0.9rem;
    }

    .copyright {
      font-size: 70%;
      color: #7c7c7d;
      line-height: 1.2;
    }

    .nobr {
      white-space: nowrap;
    }

    .hero-static-wrap {
      border-radius: 1rem;
      height: 420px;
      box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .banner {
      background-attachment: scroll, fixed;
      background-position: center center;
      background-size: cover;
    }

    .hero-static-wrap .caption {
      border-radius: .6rem;
      width: auto;
      max-width: 85vw;
      padding: 1rem;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.35);
      bottom: 1rem;
      left: 1rem;
    }

    .hero-carousel .carousel-caption {
    z-index: 2;
    left: 4rem;
    }

    .hero-carousel .carousel-caption h1, .hero-static-wrap .caption h1 {
      font-style: italic;
      font-weight: 500;
      font-size: calc(1.1rem + 1.5vw);
      color: #ffffff;
      text-shadow: -2px 2px 0px rgba(54, 54, 54, 0.5);
    }
    
    .hero-carousel .carousel-caption p, .hero-static-wrap .caption p {
      font-size: 1.2rem;
      line-height: 1.2;
      color: #ffffff;
      text-shadow: -1px 1px 0px rgba(54, 54, 54, 0.5);
    }

    .hero-iframe {
      width: 100%;
      height: 420px;
      border: 0;
      display: block;
      background: #e9ecef;
    }

    .product-card {
      border: 0;
      border-radius: 1rem;
      box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      height: 100%;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.12);
    }

    .product-icon {
      font-size: 2rem;
      color: var(--icons-color);
    }

    .product-icon-sm {
      color: var(--icons-color);
    }

    .contact-link {
      color: inherit;
      text-decoration: none;
    }

    .contact-link:hover {
      color: var(--icons-color);
    }

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
      height: 420px;
      border-radius: 1rem;
      box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    }

  .hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Optional: dark overlay for text readability */
  .hero-carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.1);
  }

  .hero-carousel .carousel-caption {
    z-index: 2;
    left: 4rem;
  }

  .hero-carousel .carousel-caption h1 {
    font-style: italic;
    font-weight: 500;
    font-size: calc(1.1rem + 1.5vw);
    color: #ffffff;
    text-shadow: -2px 2px 0px rgba(54, 54, 54, 0.5);
  }
  
  .hero-carousel .carousel-caption p {
    font-size: 1.2rem;
    line-height: 1.2;
    text-shadow: -1px 1px 0px rgba(54, 54, 54, 0.5);
  }

      @media (max-width: 767.98px) {
      .logo-box {
        width: 200px;
        height: 70px;
      }

      .hero-iframe,
      .hero-carousel,
      .hero-carousel .carousel-inner,
      .hero-carousel .carousel-item  {
        height: 280px;
      }
    }
/* Enquiry modal */
.enquiry-modal .form-label,
.enquiry-modal legend.form-label {
  font-weight: 400;
  font-size: 80%;
}

.enquiry-company {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-input {
  max-width: 10rem;
}

.captcha-image-box {
  display: block;
  padding: 0;
}

h2.subhead {
  font-family: 'Playfair Display';
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #4976ba;

}

/* from SCSS */

.btn-primary {
  --bs-btn-bg: #4976ba;
  --bs-btn-border-color: #4976ba;
  --bs-btn-hover-bg: #355688;
  --bs-btn-hover-border-color: #355688;
  --bs-btn-active-bg: #2b466f;
  --bs-btn-active-border-color: #2b466f;
  --bs-btn-disabled-bg: #4976ba;
  --bs-btn-disabled-border-color: #4976ba;
}