.logo-image img {
  max-width: 200px;
  height: auto;
}

/* Reset all major layout wrappers to eliminate padding/margin */
.t4-section,
.t4-section-inner,
.container,
.section-inner,
.section-ct {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Remove spacing utility classes if present */
.top-large,
.bottom-large,
.mt-5,
.mb-5,
.pt-5,
.pb-5 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Reduce default spacing around all sections */
.t4-section {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Style for the service top info bar */
#t4-servicetop .custom > div {
  background: #f9f9f9 !important;
  padding: 5px 10px !important;      /* controls top/bottom and left/right padding */
  margin: 0 auto !important;
  text-align: center !important;
  font-size: 0.95rem !important;
  border-bottom: 1px solid #ddd !important;
  max-width: 100% !important;
  color: #000 !important; /* Ensure readable in light mode */
}

/* Link styling */
#t4-servicetop a {
  color: #007bff !important;
  text-decoration: none !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

#t4-servicetop a:hover {
  text-decoration: underline !important;
}

/* Dark mode compatibility */
body[data-theme="dark"] #t4-servicetop .custom > div {
  background: #333 !important;
  color: #fff !important;
}

body[data-theme="dark"] #t4-servicetop a {
  color: #66ccff !important;
}

.btn-get-involved {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-get-involved:hover {
  background-color: #0056b3;
}

.event-button img {
  width: 300px;          /* fix width */
  height: 200px;         /* fix height */
  object-fit: cover;     /* crop to fit without distortion */
  display: block;        /* remove extra space below image */
  margin: 0 auto;        /* center image horizontally */
}

/* The text container below the image */
.event-text {
  text-align: center;
  margin-top: 8px;       /* some space between image and text */
  font-size: 1rem;       /* normal size text */
  color: #333;           /* example text color */
}

/* Ensure hero banner container is relative */
.t4-hero > div {
  position: relative;
  /* Keep existing background image and padding intact */
}

/* Hero content container */
.hero-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  max-width: 400px; /* Adjust max width as needed */
  z-index: 10;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* Hero heading and paragraph */
.hero-content h1 {
  margin: 0 0 10px 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-content p {
  margin: 0 0 15px 0;
  font-size: 1.2rem;
}

/* Buttons container */
.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Buttons styling */
.hero-buttons .btn {
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #007bff;
}

.t4-offcanvas-toggle:first-of-type {
  display: none;
}

.service-info-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  margin: -60px auto 30px auto;
  position: relative;
  z-index: 10;
  text-align: left;
}

.service-info-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  line-height: 1.4;
}

.label {
  font-weight: bold;
  color: #333;
}

.value {
  color: #333;
  text-align: right;
}

.directions-link {
  text-align: center;
  margin-top: 10px;
}

.directions-link a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.directions-link a:hover {
  text-decoration: underline;
}

.carousel-container {
  width: 90vw;
  overflow: hidden;
  border: 2px solid #ccc;
  background: #111;
  cursor: pointer;
  margin: 20px auto; /* center on page */
}
.carousel-track {
  display: flex;
  animation: scroll-left 20s linear infinite;
}
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}
.carousel-item {
  flex: 0 0 auto;
  width: 150px;
  margin-right: 10px;
}
.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  user-select: none;
  pointer-events: none;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
