  @font-face {
  font-family: 'jura';
  src: url('/user/themes/quark/fonts/jura.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
  
  
  /* Container applied at modular.html.twig level */
  .horizontal-wrapper {
    display: flex;
    flex-wrap: wrap;
    direction: row;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 60px;
    justify-content: space-evenly;
    align-items: stretch;
  }
   
  .horizontal-box {   
    border: 1px solid #ccc;
    border-radius: 12px;
    background: #fdfdfd !important;
    padding: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    flex: 1 1 300px!important;
    width: 100%;
    min-width: 260px !important;
    max-width: 350px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between;
    height: 100%;
  }

  /* Each individual item block */
  .future-card {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    max-width: 320px;
    min-width: 250px;
  }
  
  .future-card h2 {
    margin-top: 0;
    font-size: 1.3em;
    color: #333;
  }
  
  .card-content {
    font-size: 0.95em;
    color: #555;
  }
  .clean-layout {
    display: flex;
    flex-direction: column;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    min-width: 260px;
    max-width: 350px;
  }
  
  .card-image-wrapper {
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .card-image {
    width: 100%;
    display: block;
    border-radius: 8px;
  }
  
  .card-content {
    margin-bottom: 15px;
    color: #333;
    font-size: 0.95em;
  }
  
  .learn-more-button {
    align-self: flex-start;
    padding: 8px 16px;
    background-color: #2e89ff;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
  }
  
  .learn-more-button:hover {
    background-color: #1d6fe0;
    color: #fff;
  }

/* Apply custom font to all headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'jura', sans-serif !important;
  font-weight: 700 !important;
}
body {
  font-family: 'jura', sans-serif !important;
}

/* Force all text in hero block to be solid black */
.modular-hero h1,
.modular-hero h2,
.modular-hero p,
.modular-hero .hero-text,
.modular-hero .hero-content,
.modular-hero {
  color: #000000c9 !important;
}

.intro-text-block {
  padding: 60px 30px 40px;
  background-color: #fff;
  color: #222;
  text-align: justify;
}

.intro-text-block .container {
  max-width: 960px;
  margin: 0 auto;
}

.intro-text-block h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-content {
  font-size: 1.05em;
  line-height: 1.1;
}

.dragon-box {
  background-color: limegreen !important;
  box-shadow: 0 0 20px red !important;
  border: 3px solid black !important;
  padding: 50px !important;
  margin: 20px !important;
  z-index: 999 !important;
}

.header-transparent #header:not(.scrolled) {
    background: rgba(255, 255, 255, 0.9) !important;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.95em;
  line-height: 1.2;
}

.logo-info .company-name {
  font-weight: bold;
  color: #222;
  transition: opacity 0.2s ease;
}

.logo-info .company-phone a {
  color: #2e89ff;
  text-decoration: none;
  font-weight: 600;
}

.logo-info .company-phone a:hover {
  text-decoration: underline;
}

/* Hide company name when scrolled */
body.scrolled .company-name {
  display: none;
}

/* Optional: improve mobile layout */
@media (max-width: 768px) {
  .logo-info .company-name {
    display: none;
  }

  .logo-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo-info .company-phone a {
    color: #00000000; /* Or white, depending on header background */
    font-size: 0.95em;
    
  }
}

.footer .visit-count {
  color: inherit;
  font-weight: normal;
  font-size: inherit;
  margin-left: 10px;
}


