
/* Reclaim leftover space that the theme reserved for the sidebar
   (sidebar include is commented out, but old spacing may still apply) */
#landing_page {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.landing-main-content {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 60px 40px !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
    color: #ffffff !important;
}

/* Color overlay on top of the background image */
.landing-main-content::before {
    content: "";
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(40, 80, 96, 0.6) !important; /* #285060 with opacity */
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Content needs to sit above the overlay.
   Margin goes here (not on .landing-main-content) so the background
   always spans the full box. */
.landing-main-content .thread-body {
    position: relative !important;
    z-index: 2 !important;
    margin: 0px 40px 0px 40px !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 1080px !important;
    background-color: transparent !important;
    color: #ffffff !important;
}

.landing-main-content .thread-body * {
    color: #ffffff !important;
}

.landing-main-content .search-form {
    position: relative !important;
    z-index: 2 !important;
    margin: 20px auto 40px auto !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 600px !important;
}

.landing-main-content .search-form form {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
}

.landing-main-content .search-form .search {
    text-align: left !important;
}

/* Heading — bold, uppercase, spaced like the reference design */
.landing-main-content .thread-body h1 {
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 2.5em !important;
    margin-bottom: 20px !important;
}

.landing-main-content .thread-body p {
    max-width: 980px !important;
    margin: 0 auto 0px auto !important;
    line-height: 1.6 !important;
    font-size: 1.05em !important;
}

/* Search input — white pill-shaped bar with soft shadow */
.landing-main-content .search-form input[type="text"] {
    width: 100% !important;
    max-width: 700px !important;
    padding: 16px 24px !important;
    border-radius: 8px !important;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.3) !important;
    font-size: 1.05em !important;
    box-sizing: border-box !important;
    color: #555555 !important;

}

.landing-main-content .search-form input[type="text"]::placeholder {
    color: #888888 !important;
    font-weight: 400 !important;
    border: #888888 2px !important;

}

/* Search button — transparent/outlined, white text, rounded */
.landing-main-content .search-form button.green.button {
    background: #285060 !important;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    padding: 10px 32px !important;
    border-radius: 6px !important;
    font-size: 1em !important;
    margin-top: 16px !important;
    cursor: pointer !important;
}

/*Footer*/
#our-footer{
    background: #285060 !important;
    color: #fff !important;
    margin: 0px !important;
    position: relative;
    text-align: center;
    font-size: 12px;
}

 #our-footer p {
    margin: 0px !important;
    padding: 15px 10px !important;
 }