.container-header {
background-color: #9dc183 !important;
}


/* Center the breadcrumbs when placed in banner */
.breadcrumbs-centre {
    text-align: center;
}

.breadcrumbs-centre nav {
    display: inline-block; /* shrink to fit content */
}


@charset "UTF-8";
:root {
    /*turn banner green*/
--cassiopeia-color-primary:#318531;
--cassiopeia-color-link:#224faa;
--link-color:#224faa;
--link-color-rgb:34,79,170;
/*also needed to give one colour across the top*/
--cassiopeia-color-hover:#364f34;
--link-hover-color:#424077;
--link-hover-color-rgb:66,64,119;
}
/*--cassiopeia-color-primary:#2a5511;*/
/*--cassiopeia-color-link:#224faa;*/
/*--cassiopeia-color-hover:#424077;*/

.image-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.image-row div {
  flex: 1 1 30%;
  max-width: 33%;
}

.image-row img {
  width: auto;
  height: 200px; /* shrink here */
  object-fit: cover;
  object-position: top;
  justify-content: center;  
  border-radius: 6px;
}
/* Ensure the header container is positioned relatively */
.header {
  position: relative;
}


/* Move the Menu module inline (left side of header) */
/*.header .mod-menu {
  position: absolute;   /* relative keeps it inline */
/*  top: 10px;            /* optional vertical adjustment */
/*  right: 400px;    /* optional spacing from left edge */
/*  z-index: 1000;
/*}*/

/* This section makes the links module responsive*/
#mod-custom112.mod-custom.custom {
    margin-left: auto;   /* pushes it to the right in the header */
    display: flex;        /* so your social links stay in a row */
    gap: 10px;            /* space between icons/links */
}

/* === Repair Cafe two-column section (responsive) === */
.repair-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5em;
}

.repair-text {
  flex: 1 1 65%;
  min-width: 300px;
}

.repair-image {
  flex: 1 1 25%;
  text-align: center;
}

.repair-image img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

/* Stack nicely on phones */
@media (max-width: 768px) {
  .repair-flex {
    flex-direction: column;
  }

  .repair-image img {
    max-width: 60%;
  }
}


/* Uncomment this block to place the picture before the text*/
/*@media (max-width: 768px) {
  .repair-flex {
    flex-direction: column-reverse;
  }
}
*/

/* hide heading inside the misc info block */
.com-contact.contact > h2:nth-of-type(2) {
  display: none !important;
}



