.font-weight-bold { font-weight: bold; }
.font-weight-semibold { font-weight: 500; }
@media (min-width: 768px) {
  a.sz-login-link { margin-right: 1rem !important; }
  .nav-sitename { margin-left: 1rem !important; }
}
a.sz-login-link:hover { color: #8c2633 !important; font-weight: 500 !important; }
.nav-sitename a.link-secondary { margin-left: 0.3rem; }
.nav-sitename a.link-secondary:first-of-type { margin-left: 1rem; }
body { overflow-x: clip; }
div.edjs-columns { margin:0; padding:0; }
main.mx-2 .edjs-stretched { width: calc(100% + 14px); margin-left: -7px; margin-right: -7px; max-width: unset; }
@media (min-width: 768px) {
  main.mx-md-4 .edjs-stretched { width: calc(100% + 42px); margin-left: -21px; margin-right: -21px; }
}
div.col-12 .edjs-stretched { width: calc(100% + 21px); margin-left: -10.5px; margin-right: -10.5px; }
.text-right { text-align: right !important; }
div.edjs-delimiter { font-size:  30px; letter-spacing: 0.6em; font-weight: 900; height: 30px; line-height: 30px; }
div.edjs-toggle > a { color: #4E5155; }
div.edjs-toggle > a:hover { color: #2e56bb; }
.navbar-nav .dropdown-menu a.dropdown-item:hover { font-weight: 500; }
span.dropdown-item:hover, span.dropdown-item:has(~ div.dropdown-menu:hover) { color: #0f0d1d; cursor: pointer; font-weight: 500; }
.feature-hover-2 .nav { border-bottom: 0 !important; }
/* FullCalendar styling */
th.fc-col-header-cell a { color: #615a5c !important; }
.fc-event, .event-title { padding: 0 1px; white-space: normal; } /* Handles word wrapping */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { color: #4E5155; }

.hero-section {
    position: relative;
    height: 50vh; /* Adjust as needed, e.g., 100vh for full viewport */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15); /* Optional semi-transparent overlay for text readability */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-title {
    font-size: 3rem; /* Responsive: Adjust for mobile */
    font-weight: bold;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; /* Thin black outline */
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; /* Matching outline */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}