.container-banner .banner-overlay {
    height: 50vh;
} 

.container-banner .banner-overlay#mod-custom112 {
   height: 20vh;
}


.container-header {
  background-color:#000000; /* Was #1D3805 */
  background-image:none;
}

.container-footer {
  background-color:#000000; /* Was #1D3805 */
  background-image:none;
}


/* Force Cassiopeia header into two columns */
.container-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}

/* Logo stays on the left */
.container-header .grid-child.logo {
    grid-column: 1;
}

/* Menu moves to the right */
.container-header .grid-child.menu {
    grid-column: 2;
    justify-self: end;
}

/* Make menu horizontal */
.container-header .mod-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}



/* Services section */
/* Force the container to be horizontal */
.icon-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 40px !important;
  width: 100% !important;
}

/* Override Bootstrap + Cassiopeia anchor styling */
.icon-grid .icon-item {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 160px !important; /* adjust as needed */
  text-align: center !important;
  text-decoration: none !important;
  color: #333 !important;
  font-weight: 600 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Icon styling */
.icon-grid .icon-item img {
  width: 100px !important;
  height: 100px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  background: #f5f5f5 !important;
  padding: 15px !important;
  margin-bottom: 12px !important;
}

/* Centre the module */
/* Center the whole module block */
.icon-grid {
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}







.icon-grid::before,
.icon-grid::after {
    content: "" !important;
    display: none !important;
}


/* Fix font for services */
.icon-grid .icon-item {
  font-family: var(--cassiopeia-font-family-body, sans-serif) !important;
}

/* Grey background to services with round*/
.icon-gridZZ {
  background: #f2f2f2;   /* soft grey */
  padding: 30px 20px;    /* breathing room */
  border-radius: 12px;   /* optional: rounded corners */
}

/* Grey background to services with square */
.icon-grid {
  background: #f2f2f2;
  padding: 40px 0;
  border-radius: 0;
}

/* Stack top-a modules vertically */
.container-top-a {
  display: block !important;
}

.container-top-a .grid-child {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}


/* Entertainment Options */
.services-block {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.services-title {
  font-size: 2rem;
  margin-bottom: 0.2em;
}

.services-subtitle {
  font-size: 1.4rem;
  margin-bottom: 1em;
  font-weight: 600;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.service-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-item p {
  line-height: 1.4;
}


/* Rehearsal Times */
.rehearsal-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.rehearsal-image img {
  width: 100%;
  border-radius: 8px;
}

.rehearsal-title {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.rehearsal-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rehearsal-box {
  background: #f5f5f5;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.rehearsal-box h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.rehearsal-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Remove Rehearsal Times title */
.top-a.card:not(.recent-news) {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}





/* Hall Hire */
.hall-hero {
  background-image: url("/images/bandhall.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* makes the image stay still */
  padding: 120px 20px;
  position: relative;
  color: white;
  text-align: left;
}

/* Optional: subtle dark overlay for readability */
.hall-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hall-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  background: rgba(255,255,255,0.85);
  padding: 25px 30px;
  border-radius: 8px;
  color: #333;
}

.hall-content h2 {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
}

.hall-content p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.hall-button {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.hall-button:hover {
  background: #005fcc;
}


/* Latest News */
/* Blue background section */
/* Blue background section */
.recent-news {
  background: #005bbb;
  padding: 60px 20px;
  border-radius: 0;
}

/* Remove Bootstrap card styling */
.recent-news .card-header,
.recent-news .card-body {
  background: transparent;
  border: none;
  padding: 0;
}

/* Module title */
.recent-news .card-header {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}

/* Turn the UL into a 3-column grid */
.recent-news .mod-articles-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each article card */
.recent-news .mod-articles-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  padding: 0;
}

/* Image */
.recent-news .mod-articles-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Title */
.recent-news .mod-articles-title {
  margin: 15px 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

/* Remove bullets */
.recent-news ul,
.recent-news li {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* Style the RECENT NEWS heading */
/* Force the heading to display properly */
.recent-news .card-header {
  background: none !important;
  border: none !important;
  color: #ffffff !important;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 40px 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}



/* FORCE the Recent News heading to display */
.top-a.card.recent-news > .card-header {
  display: block !important;
  background: none !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin: 0 0 40px 0 !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Stop top-a modules from stretching vertically */
.container-top-a {
  display: block !important;
}

.container-top-a > * {
  flex: none !important;
  margin: 0 !important;
}


.container-top-a,
.container-top-a > .grid-child {
  display: block !important;
  flex: none !important;
  width: 100% !important;
}


/* Fix the space between images and text */
figure.left.item-image {
  margin-right: 20px !important;
  margin-bottom: 20px !important;
}


.view-article figure.item-image {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.view-article figure.item-image img {
  max-width: 280px;   /* tweak this to taste */
  height: auto;
  border-radius: 6px; /* optional: makes it look nicer */
}


/* remove breadcrumbs from front page */



/* Fix centering on the recent news images */
/* Center images in Recent News cards */
.recent-news .mod-articles-image {
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  float: none !important;
}

.recent-news .mod-articles-image img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}



/* Black footer styling */
/* Wrapper for each footer module */
.footer-black,
.footer-black .moduletable {
    background-color: #000;
    color: #fff;
    padding: 30px 20px;
}

/* Headings */
.footer-black h3,
.footer-black h4 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Text and list items */
.footer-black p,
.footer-black li {
    color: #fff;
    margin-bottom: 8px;
}

/* Links */
.footer-black a {
    color: #fff;
    text-decoration: none;
}

.footer-black a:hover {
    color: #ccc;
}

/* Gallery thumbnails (if your gallery module outputs images) */
.footer-black img {
    border-radius: 4px;
    margin-bottom: 10px;
    max-width: 100%;
    height: auto;
}


/* Black footer container */
/* Make the whole bottom-b area black */
#bottom-b,
#bottom-b .container,
#bottom-b .row,
#bottom-b .grid-child {
    background-color: #000 !important;
}


/* Make the whole strip behind the modules black */
.container-bottom-b {
    background-color: #000;
    padding: 30px 0;
}

/* Make all four cards sit on black and remove white card background */
.container-bottom-b .card {
    background-color: #000;
    color: #fff;
    border: none;
}

/* Headings inside cards */
.container-bottom-b .card h3,
.container-bottom-b .card h4 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links */
.container-bottom-b .card a {
    color: #fff;
    text-decoration: none;
}

.container-bottom-b .card a:hover {
    color: #ccc;
}




/* Remove Cassiopeia's built‑in padding from the footer row */
.site-grid .container-bottom-b.grid-child {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Make the entire footer strip black */
.site-grid .container-bottom-b {
    background: #000 !important;
}


/* Footer */
footer.container-footer .grid-child > #mod-custom111 {
    grid-column: 1 / -1 !important;
    flex-basis: 100% !important;
    width: 100% !important;
}


/* Horizontal line in history */
.blog .items-row > div,
.blog .items-leading > div {
    border-bottom: 1px solid #ccc;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

/* Card layout for history */
.blog .items-leading > div {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


/* Lightbox for history */
.tb-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 9999;
}


/*
.tb-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}*/

.tb-lightbox:target {
  display: flex;
}

.tb-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}





/*  * { outline: 1px solid red; } */

