/*
Theme Name: Seamus Lynch Child
Description: Child theme of ThemeTrust Weston 2.2.0 for The Sad and Tawdry Story of Seamus Lynch. Consolidates CSS previously split across Appearance > Customize color settings and the Additional CSS panel into version-controlled files.
Author: John Washburn
Template: themetrust-weston
Version: 1.0
*/

/* ==========================================================================
   HEADER / NAV / FOOTER COLORS
   (previously generated dynamically from Customizer color-picker settings —
   now plain CSS so they're not tied to theme_mods_{slug} in the database)
   ========================================================================== */

body { color: #ebebeb; }

.entry-content a,
.entry-content a:visited { color: #13b1d8; }

#site-header { background-color: #212121; }

.main-nav ul li,
.secondary-nav span,
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after,
.secondary-nav a,
body #site-header.transparent.light .main-nav ul li,
body #site-header.transparent.light .menu-toggle.open,
body #site-header.transparent.light .secondary-nav span,
body #site-header.transparent.light .secondary-nav a {
    color: #ffffff !important;
}

#site-header .menu-button span { border-color: #ffffff !important; }

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after { background-color: #ffffff !important; }

#footer { background-color: #1c1c1c; }
#footer * { color: #9b9b9b !important; }

.logo .site-title img,
#site-header.light .logo .site-title img,
.logo .site-title.sticky img { max-width: 200px; }

@media only screen and (max-width: 780px) {
    #site-header .logo .site-title img { max-width: 200px !important; }
}

header.entry-header.main * { color: #191919 !important; }

/* nav-holder heights */
.inline-header #site-header .nav-holder,
.inline-header #site-header .logo { height: 70px; }

.inline-header #site-header .nav-holder,
.inline-header #site-header .main-nav ul > li,
.inline-header #site-header .main-nav ul > li > a,
#site-header .main-nav #menu-main-menu > li > span,
#site-header .secondary-nav a,
#site-header .secondary-nav span { line-height: 70px; height: 70px; }

#site-header.sticky .inside .nav-holder,
#site-header.sticky .logo { height: 70px !important; }

#site-header.sticky .nav-holder,
#site-header.sticky .main-nav ul > li,
#site-header.sticky .main-nav ul > li > a,
#site-header.sticky .main-nav ul > li > span,
#site-header.sticky .secondary-nav a,
#site-header.sticky .secondary-nav span { line-height: 70px; height: 70px; }

@media only screen and (max-width: 768px) {
    .logo { display: none; }
    .logo.mobile { display: table; }
    .top-header.stacked-header #main-container #site-header .logo { height: 60px; }
    .top-header.stacked-header #main-container #site-header .logo.mobile { height: 60px; } /* was "60" with no unit — invalid, silently did nothing */
    .top-header #main-container #site-header .logo.mobile { height: 60px; }
    body.top-header.stacked-header #main-container #site-header .nav-holder .secondary-nav span,
    body.top-header.stacked-header #main-container #site-header .nav-holder .secondary-nav a,
    body.top-header #main-container #site-header .nav-holder .secondary-nav span,
    body.top-header #main-container #site-header .nav-holder .secondary-nav a { height: 60px; line-height: 60px; }
    .top-header.stacked-header #main-container .nav-holder,
    .top-header #main-container .nav-holder { height: 60px; }
}

/* ==========================================================================
   STICKY HEADER BACKGROUND — FIXED
   Old version lived in Additional CSS, scoped only to
   @media (min-width: 768px) and (max-width: 991px) — so it silently never
   fired at any real desktop width (1024px+). Split into two clean,
   non-overlapping ranges instead of fighting the always-on Customizer rule.
   ========================================================================== */

@media (max-width: 767px) {
    .sticky-header #site-header.sticky,
    .sticky-header #site-header.sticky .header-search {
        background-color: #212121 !important;
    }
}

@media (min-width: 768px) {
    .sticky-header #site-header.sticky,
    .sticky-header #site-header.sticky .header-search {
        background-color: rgba(33, 33, 33, 0.8) !important;
    }
}

/* ==========================================================================
   CONTACT FORM (.seamus-form)
   ========================================================================== */

.seamus-form,
form.seamus-form { margin: 0 auto; }

.seamus-form .form-field { margin-bottom: 5px; } /* was "5dpx" — invalid unit, did nothing */

.seamus-form label {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 400;
}

.seamus-form input[type="text"],
.seamus-form input[type="email"] {
    width: 60%;
    padding: 6px;
    background: #ffffff;
    border: none;
    font-size: 13px;
    font-family: inherit;
    color: #000;
    box-sizing: border-box;
}

.seamus-form .checkbox-field label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
}

.seamus-form input[type="checkbox"],
.seamus-form input[type="radio"] {
    margin-right: 12px;
    margin-top: 1px;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 1 !important;
    position: relative !important;
    background-color: #fff;
}

.seamus-form .checkbox-field span {
    color: #ffffff;
    line-height: 3rem;
}

.seamus-form button[type="submit"] {
    background-color: #e8e8e8 !important;
    color: #666 !important;
    border: none !important;
    padding: 8px 20px !important;
    font-family: "Jost", "Arial", sans-serif !important; /* was "sans-serifserif" typo */
    font-size: 14px !important;
    font-weight: 200 !important;
    text-transform: uppercase !important;
    letter-spacing: .1rem !important; /* old "; !important;" after the semicolon was a dangling, ignored declaration */
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    margin-top: 10px;
}

.seamus-form button[type="submit"]:hover {
    background-color: #f5f5f5 !important;
    font-family: "Jost";
}

.seamus-form .checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.seamus-form .checkbox-row .checkbox-field { margin-bottom: 0; }
.seamus-form .checkbox-row .checkbox-field span { line-height: 1.4; }

.seamus-form textarea {
    width: 60%;
    padding: 8px;
    background: #ffffff;
    border: none;
    font-size: 15px;
    font-family: inherit;
    color: #000;
    box-sizing: border-box;
    resize: vertical;
}

/* ==========================================================================
   FOOTER / LABELS / MISC
   ========================================================================== */

#footer .secondary {
    padding: 20px;
    text-align: center;
    color: #747475;
    background-color: rgba(0, 0, 0, .04);
}

.label {
    font-family: "Jost", "Arial", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .1rem;
}

.label-about {
    font-family: "Jost", "Arial", sans-serif;
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .1rem;
    line-height: 6px;
    text-align: right;
    padding-bottom: 0px !important;
}

.label-fs {
    font-family: "Jost", "Arial", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .1rem;
    line-height: 1rem;
    display: block;
    padding-bottom: 0px;
}

@media (min-width: 769px) {
    .label-about {
        display: block;
        text-align: center;
        line-height: 1em !important;
    }
    .signify {
        display: block;
        text-align: right;
        line-height: 1em;
    }
}

@media (max-width: 768px) {
    .label-about {
        display: block;
        text-align: left;
        padding-top: 20px;
        padding-bottom: 0px !important;
    }
    p {
        padding-top: 10px;
        padding-bottom: 0px;
    }
    .signoff { padding-top: 20px; }
    .vc_custom_1783891556536 { font-size: 14px !important; }
}

/* Kept at original scope (768–991px only) — no evidence this one was meant
   to be broader, unlike the sticky-header rule above, so ported as-is. */
@media (min-width: 768px) and (max-width: 991px) {
    .content-col { width: 60% !important; }
    .content-col-left { margin-right: auto; }
    .content-col-right { margin-left: auto; }
}

.site-title {
    display: none;
    font-family: "Playfair Display";
    font-weight: 400;
}

.legalese { font-size: .8rem; }

.wpb_content_element { margin-bottom: 10px; }
