/*
Theme Name: Bromley Commons Custom Theme
Theme URI: https://bromleycommons.com/
Author: Bromley Commons
Description: Standalone custom WordPress theme for Bromley Commons with a pure white site canvas.
Version: 5.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: bromley-commons
*/

/* =========================================================
   Bromley Commons Landing Page — Style 1 Final
   Paste this full block into one WordPress Custom HTML block.
   ========================================================= */

/* Hide Bromley Hall theme header/footer ONLY on this page */
header,
footer,
.site-header,
.site-footer,
#masthead,
#colophon,
.header,
.footer,
.navigation,
.site-navigation,
.page-header,
.entry-header,
.entry-title,
.page-title,
.post-title,
.wp-block-post-title,
#menu-toggle,
.offcanvas,
.mobile-menu {
    display: none !important;
}

/* Remove spacing left behind by the theme */
body,
.site,
.site-content,
.content-area,
.entry-content,
main,
.wp-site-blocks,
.wp-block-post-content {
    margin: 0 !important;
    padding: 0 !important;
}

html,
body {
    overflow-x: hidden;
}

:root {
    --bc-blue: #003f6a;
    --bc-powder: #A1ABB6;
    --bc-gold: #FFA23D;
    --bc-butter: #FED174;
    --bc-cream: #ffffff;
    --bc-shadow: #101720;
    --bc-white: #ffffff;
    --bc-moss: #4E5134;
    --bc-salmon: #DE8366;
    --bc-leather: #57351D;
    --bc-green: #1F3B2D;
    --bc-hunter-green: #183325;
}

/* Base */
.bc-page,
.bc-page * {
    box-sizing: border-box;
}

.bc-page {
    font-family: "Raleway", Arial, sans-serif;
    color: var(--bc-shadow);
    background: var(--bc-white);
    overflow: hidden;
}

.bc-page h1,
.bc-page h2,
.bc-page h3,
.bc-page p {
    margin: 0;
}

.bc-page h1,
.bc-page h2,
.bc-page h3 {
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.bc-page p {
    font-size: 18px;
    line-height: 1.65;
}

.bc-section {
    padding: 90px 7vw;
}

.bc-label {
    color: var(--bc-gold);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .16em;
    margin-bottom: 16px;
}

.bc-title {
    color: var(--bc-blue);
    font-size: clamp(42px, 5vw, 78px);
    margin-bottom: 60px;
}

.bc-button {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 999px;
    background: var(--bc-gold);
    color: var(--bc-shadow);
    text-decoration: none;
    font-weight: 900;
    margin-top: 28px;
    box-shadow: 0 10px 26px rgba(16,23,32,.16);
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.bc-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 16px 34px rgba(16,23,32,.22);
}

.bc-button.secondary {
    background: var(--bc-blue);
    color: var(--bc-white);
}

/* Hero */
.bc-hero {
    min-height: 94vh;
    background:
        linear-gradient(90deg, rgba(0,63,106,.82), rgba(0,63,106,.35), rgba(0,63,106,.05)),
        url("https://bromleyhall.com/wp-content/uploads/2026/06/Main-Entrance-Night.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 8vw;
    color: var(--bc-white);
}

.bc-hero-content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.bc-brand-small {
    color: var(--bc-gold);
    font-size: 15px;
    letter-spacing: 4px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: -10px;
    text-shadow: 0 3px 10px rgba(0,0,0,.25);
}

.bc-brand-title {
    font-size: clamp(70px, 9vw, 140px);
    color: var(--bc-white);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 8px 26px rgba(0,0,0,.18);
}

.bc-opening {
    display: block;
    width: fit-content;
    background: var(--bc-gold);
    color: var(--bc-blue);
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 2px;
}

.bc-hero-copy {
    max-width: 670px;
    color: var(--bc-white);
    font-size: 22px;
    line-height: 1.8;
    text-shadow:
        0 2px 6px rgba(0,0,0,.28),
        0 6px 18px rgba(0,0,0,.20),
        0 12px 30px rgba(0,0,0,.12);
}

/* Split sections */
.bc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bc-split .bc-title {
    margin-bottom: 50px;
}

.bc-split p {
    margin-top: 10px;
    max-width: 700px;
}

.bc-split-image {
    height: 560px;
}

.bc-split img,
.bc-full-image img,
.bc-card img,
.bc-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-split img,
.bc-full-image img {
    border-radius: 34px;
}

/* Stats */
.bc-stats {
    background: var(--bc-blue);
    color: var(--bc-white);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    text-align: center;
}

.bc-stat strong {
    color: var(--bc-gold);
    font-size: clamp(36px, 5vw, 70px);
    display: block;
    line-height: 1;
}

.bc-stat span {
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 14px;
}

/* Feature image with butter frame */
.bc-feature-section {
    background: var(--bc-powder);
    border-radius: 38px;
    padding: 26px;
    margin: 80px 7vw;
}

.bc-full-image {
    height: 680px;
    position: relative;
    border-radius: 34px;
    overflow: hidden;
}

.bc-overlay {
    position: absolute;
    inset: 0;
    border-radius: 34px;
    padding: 55px 60px;
    z-index: 2;
    pointer-events: none;
}

.bc-overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Designed for connection */
.bc-overlay-top {
    position: absolute;
    left: 60px;
    bottom: 130px;
    width: max-content;
    white-space: nowrap;
    padding-left: 18px;
}

/* Built for success */
.bc-overlay-bottom {
    position: absolute;
    right: 60px;
    bottom: 40px;
    text-align: right;
    max-width: 700px;
    padding-right: 18px;
}

.bc-overlay h2 {
    font-size: clamp(52px, 5vw, 78px);
    line-height: .95;
    margin: 0;
    color: var(--bc-gold);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-shadow:
        0 2px 6px rgba(0,0,0,.25),
        0 6px 18px rgba(0,0,0,.18);
}

/* Amenities */
.bc-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin-top: 45px;
}

.bc-card {
    background: var(--bc-butter);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(16,23,32,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.bc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(16,23,32,.13);
    transform: scale(1.08);
}

.bc-card-img {
    height: 340px;
    width: 100%;
    display: block;
    transition: transform .45s ease;
}

.bc-card-content {
    padding: 34px;
}

.bc-card h3 {
    color: var(--bc-blue);
    font-size: 34px;
    margin-bottom: 14px;
}

/* Location */
.bc-location {
    background: var(--bc-white);
}

.bc-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.bc-location .bc-title {
    margin-bottom: 45px !important;
}

.bc-location p {
    margin-top: 10px;
}

.bc-location-list {
    display: grid;
    gap: 16px;
}

.bc-location-item {
    padding: 20px 24px;
    border-radius: 22px;
    background: var(--bc-cream);
    color: var(--bc-blue);
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(255,162,61,.20);
    transition: all .25s ease;
}

.bc-location-item:hover {
    background: #FED174;   /* Butter on hover */
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255,162,61,.28);
}

/* Gallery with butter frame */
.bc-gallery-section {
    background: var(--bc-powder);
    border-radius: 38px;
    padding: 26px;
    margin: 80px 7vw;
}

.bc-gallery-inner {
    background: var(--bc-powder);
    border-radius: 28px;
    padding: 70px;
}

.bc-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.bc-gallery img {
    height: 330px;
    border-radius: 26px;
    transition: transform .25s ease, filter .25s ease;
}

.bc-gallery img:hover {
    transform: scale(1.015);
    filter: brightness(1.04);
}

/* CTA */
.bc-cta {
    background:
        linear-gradient(rgba(0,63,106,.82), rgba(0,63,106,.82)),
        url("https://bromleyhall.com/wp-content/uploads/2026/06/Outdoor-Patio-Space-1.png") center/cover no-repeat;
    color: var(--bc-white);
    text-align: center;
    padding: 120px 7vw;
}

.bc-cta h2 {
    font-size: clamp(44px, 6vw, 88px);
    max-width: 900px;
    margin: 0 auto 24px;
}

.bc-cta p {
    max-width: 680px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 900px) {
    .bc-split,
    .bc-location-grid,
    .bc-amenities {
        grid-template-columns: 1fr;
    }

    .bc-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .bc-gallery {
        grid-template-columns: 1fr;
    }

    .bc-section {
        padding: 70px 24px;
    }

    .bc-feature-section,
    .bc-gallery-section {
        margin: 40px 16px;
        padding: 16px;
        border-radius: 28px;
    }

    .bc-gallery-inner {
        padding: 40px 22px;
        border-radius: 22px;
    }

    .bc-split-image,
    .bc-full-image {
        height: 420px;
    }

    .bc-brand-title {
        font-size: clamp(58px, 16vw, 90px);
        letter-spacing: -2px;
    }

    .bc-brand-small {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .bc-overlay {
        padding: 30px;
    }

    .bc-overlay-top {
        left: 0;
        bottom: 105px;
        padding-left: 0;
    }

    .bc-overlay-bottom {
        right: 0;
        bottom: 25px;
        padding-right: 0;
    }

    .bc-overlay h2 {
        font-size: clamp(30px, 8vw, 48px);
    }
}


/* =========================================================
   Added Brand Design Elements
   State-inspired editorial accents using Bromley brand colors
   ========================================================= */

.bc-page {
    position: relative;
    background: #ffffff;
}

/* Stronger editorial underline below section titles */
.bc-title {
    position: relative;
    z-index: 1;
}

.bc-title::after {
    content: "";
    display: block;
    width: 105px;
    height: 8px;
    background: var(--bc-gold);
    border-radius: 999px;
    margin-top: 22px;
}

/* Hero decorative circles */
.bc-hero {
    position: relative;
    overflow: hidden;
}

.bc-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -90px;
    width: 310px;
    height: 310px;
    border-radius: 999px;
    background: var(--bc-gold);
    opacity: .92;
    z-index: 0;
}

.bc-hero::before {
    content: "";
    position: absolute;
    left: -95px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: var(--bc-blue);
    opacity: .65;
    z-index: 0;
}

.bc-hero-content {
    position: relative;
    z-index: 2;
}

.bc-hero-badge {
    position: absolute;
    right: 7vw;
    bottom: 7vw;
    z-index: 2;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    border: 3px solid rgba(255,255,255,.8);
    color: var(--bc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    backdrop-filter: blur(4px);
}

/* Section graphic accents */
.bc-section,
.bc-feature-section,
.bc-gallery-section {
    position: relative;
}

.bc-split:first-of-type::before {
    content: "";
    position: absolute;
    left: -70px;
    top: 50px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: var(--bc-butter);
    opacity: .55;
    z-index: -1;
}

.bc-split:first-of-type::after {
    content: "+ + +\A+ + +\A+ + +";
    white-space: pre;
    position: absolute;
    right: 2vw;
    bottom: 40px;
    color: var(--bc-moss);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 12px;
    opacity: .36;
    z-index: -1;
}

/* Stats playful background shapes */
.bc-stats {
    position: relative;
    overflow: hidden;
}

.bc-stats::before {
    content: "";
    position: absolute;
    left: -70px;
    top: -110px;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: var(--bc-gold);
    opacity: .9;
}

.bc-stats::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 255px;
    height: 255px;
    border-radius: 999px;
    background: var(--bc-powder);
    opacity: .48;
}

.bc-stat {
    position: relative;
    z-index: 2;
}

/* Feature frame accents */
.bc-feature-section::before {
    content: "";
    position: absolute;
    left: -25px;
    top: -25px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: var(--bc-blue);
    z-index: 1;
}

.bc-feature-section::after {
    content: "× × ×";
    position: absolute;
    right: 38px;
    top: 30px;
    color: var(--bc-moss);
    font-weight: 900;
    font-size: 34px;
    letter-spacing: 10px;
    opacity: .75;
    z-index: 1;
}

/* Amenity card image zoom */
.bc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(16,23,32,.13);
}

.bc-card-img {
    overflow: hidden;
}

.bc-card-img img {
    transition: transform .55s ease, filter .35s ease;
}

.bc-card:hover .bc-card-img img {
    transform: scale(1.07);
    filter: brightness(1.04);
}

.bc-amenities {
    position: relative;
}

.bc-amenities::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -85px;
    width: 155px;
    height: 155px;
    border-radius: 999px;
    background: var(--bc-salmon);
    opacity: .28;
    z-index: -1;
}

/* Location editorial accents */
.bc-location {
    overflow: hidden;
}

.bc-location::before {
    content: "";
    position: absolute;
    right: -90px;
    top: 70px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: var(--bc-powder);
    opacity: .35;
    z-index: 0;
}

.bc-location-grid {
    position: relative;
    z-index: 2;
}

.bc-location-item {
    position: relative;
    overflow: hidden;
}

.bc-location-item::after {
    content: "→";
    position: absolute;
    right: 24px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .25s ease;
}

.bc-location-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Gallery accents */
.bc-gallery-section::before {
    content: "";
    position: absolute;
    left: -45px;
    bottom: -45px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: var(--bc-blue);
    z-index: 1;
}

.bc-gallery-section::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: var(--bc-gold);
    z-index: 1;
}

.bc-gallery-inner {
    position: relative;
    z-index: 2;
    overflow: hidden;
}


.bc-gallery-inner::after {
    content: "+ + + +\A+ + + +\A+ + + +";
    white-space: pre;
    position: absolute;
    right: 55px;
    top: 50px;
    color: var(--bc-green);
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 10px;
    font-weight: 900;
    opacity: .28;
}
.bc-gallery-inner::after {
    color: #1F3B2D !important;
    opacity: .75 !important;
    z-index: 5 !important;
}

.bc-gallery img {
    box-shadow: 0 12px 28px rgba(16,23,32,.13);
}

/* CTA graphic shapes */
.bc-cta {
    position: relative;
    overflow: hidden;
}

.bc-cta::before {
    content: "";
    position: absolute;
    left: -80px;
    top: -90px;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background: var(--bc-gold);
    opacity: .9;
}

.bc-cta::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: var(--bc-powder);
    opacity: .65;
}

.bc-cta h2,
.bc-cta p,
.bc-cta .bc-button {
    position: relative;
    z-index: 2;
}

/* Mobile cleanup */
@media (max-width: 900px) {
    .bc-hero::before,
    .bc-hero::after,
    .bc-hero-badge,
    .bc-split:first-of-type::before,
    .bc-split:first-of-type::after,
    .bc-feature-section::before,
    .bc-feature-section::after,
    .bc-gallery-section::before,
    .bc-gallery-section::after,
    .bc-gallery-inner::after,
    .bc-location::before {
        display: none;
    }

    .bc-title::after {
        width: 76px;
        height: 6px;
        margin-top: 16px;
    }
}



/* =========================================================
   Remove Decorative Circles
   ========================================================= */
.bc-page::before,
.bc-page::after,
.bc-hero::before,
.bc-hero::after,
.bc-split:first-of-type::before,
.bc-stats::before,
.bc-stats::after,
.bc-feature-section::before,
.bc-gallery-section::before,
.bc-gallery-section::after,
.bc-location::before,
.bc-cta::before,
.bc-cta::after,
.bc-amenities::before {
    display: none !important;
}

/* Also remove the floating Fall 2027 badge */
.bc-hero-badge{
    display:none !important;
}


/* =========================================================
   Click-to-Zoom Gallery Lightbox
   ========================================================= */
.bc-lightbox-toggle {
    display: block;
    cursor: zoom-in;
    border-radius: 26px;
    overflow: hidden;
}

.bc-lightbox-toggle img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 26px;
}

.bc-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(16,23,32,.92);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 36px;
}

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

.bc-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    position: relative;
    z-index: 1000001;
}

.bc-lightbox-close {
    position: fixed;
    inset: 0;
    cursor: zoom-out;
    z-index: 1000000;
}

.bc-lightbox-close-button {
    position: fixed;
    top: 24px;
    right: 32px;
    color: var(--bc-white);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    z-index: 1000002;
}

.bc-lightbox-close-button:hover {
    color: var(--bc-gold);
}

@media (max-width: 900px) {
    .bc-lightbox {
        padding: 20px;
    }

    .bc-lightbox img {
        max-width: 94vw;
        max-height: 82vh;
        border-radius: 18px;
    }

    .bc-lightbox-close-button {
        top: 18px;
        right: 22px;
        font-size: 42px;
    }
}


/* =========================================================
   Follow / Sister Community / Footer
   ========================================================= */

.bc-follow{
    text-align:center;
    padding:120px 7vw 80px;
    background:var(--bc-white);
    display:flex;
    flex-direction:column;
    align-items:center;
}

.bc-follow .bc-label{
    text-align:center;
}

.bc-follow .bc-title{
    text-align:center;
    margin-bottom:25px;
}

.bc-follow .bc-title::after{
    content:"";
    display:block;
    width:105px;
    height:8px;
    background:var(--bc-gold);
    border-radius:999px;
    margin:22px auto 0;
}

.bc-follow-copy{
    width:600px;
    max-width:90%;
    margin:0 auto 55px;
    font-size:20px;
    line-height:1.8;
    color:#555;
    text-align:center !important;
}

.bc-social-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 2px solid var(--bc-butter);
    border-bottom: 2px solid var(--bc-butter);
    padding: 28px 0;
    margin: 50px auto 0;
    max-width: 980px;
}

.bc-social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--bc-blue);
    font-size: 22px;
    font-weight: 800;
    transition: .30s;
}

.bc-social-link img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.bc-social-link:hover {
    color: var(--bc-gold);
    transform: translateY(-3px);
}

.bc-bromleyhall {
    padding: 100px 7vw 120px;
    background: var(--bc-white);
}

.bc-bh-card {
    background: var(--bc-blue);
    border-radius: 36px;
    padding: 80px;
    text-align: center;
    color: var(--bc-white);
    max-width: 950px;
    margin: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.bc-bh-card::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(254,209,116,.08);
    top: -180px;
    right: -150px;
}

.bc-bh-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,162,61,.08);
    bottom: -120px;
    left: -80px;
}

.bc-bh-card > * {
    position: relative;
    z-index: 2;
}

.bc-bh-card .bc-label {
    color: var(--bc-butter);
}

.bc-bh-logo {
    width: 380px;
    max-width: 90%;
    display: block;
    margin: 40px auto;
    transition: .35s;
}

.bc-bh-logo:hover {
    transform: scale(1.04);
}

.bc-bh-card p {
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,.92);
}

.bc-bh-card .bc-button {
    margin-top: 15px;
}

.bc-footer {
    background: var(--bc-shadow);
    color: rgba(255,255,255,.82);
    text-align: center;
    padding: 34px 7vw;
    font-size: 15px;
    line-height: 1.7;
}

.bc-footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.bc-footer-links a {
    color: var(--bc-butter);
    text-decoration: none;
    font-weight: 800;
}

.bc-footer-links a:hover {
    color: var(--bc-gold);
}

@media (max-width: 900px) {
    .bc-follow {
        padding: 80px 24px 60px;
    }

    .bc-social-bar {
        gap: 24px;
        padding: 24px 0;
    }

    .bc-social-link {
        font-size: 18px;
    }

    .bc-social-link img {
        width: 32px;
        height: 32px;
    }

    .bc-bromleyhall {
        padding: 70px 24px 90px;
    }

    .bc-bh-card {
        padding: 56px 24px;
        border-radius: 28px;
    }

    .bc-bh-card::before,
    .bc-bh-card::after {
        display: none;
    }

    .bc-bh-logo {
        width: 300px;
    }
}


/* =========================================================
   Mobile Hero Text
   ========================================================= */
@media (max-width: 900px) {

    .bc-overlay {
        padding: 0 !important;
    }

    .bc-overlay-content {
        width: 100% !important;
        height: 100% !important;
    }

    .bc-overlay-top {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 65px !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 4px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .bc-overlay-top h2 {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        white-space: nowrap !important;
        font-size: clamp(17px, 5.4vw, 25px) !important;
        line-height: 1 !important;
        letter-spacing: -0.05em !important;
    }

    .bc-overlay-bottom {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 10px !important;
        width: 100% !important;
        padding: 0 4px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .bc-overlay-bottom h2 {
        font-size: clamp(22px, 7vw, 30px) !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
}
/* =========================================================
   Standalone Theme Reset — Pure White WordPress Canvas
   ========================================================= */

:root {
    --wp--preset--color--base: #ffffff !important;
    --wp--preset--color--background: #ffffff !important;
}

html,
body,
#page,
.site,
.site-container,
.site-content,
.content-area,
.site-main,
main,
article,
.entry-content,
.wp-site-blocks,
.wp-block-group,
.wp-block-post-content,
.wp-block-template-part,
.wp-block-cover,
.wp-block-columns,
.wp-block-column {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100%;
}

body::before,
body::after,
.site::before,
.site::after,
.site-content::before,
.site-content::after,
.content-area::before,
.content-area::after,
.entry-content::before,
.entry-content::after,
.wp-site-blocks::before,
.wp-site-blocks::after {
    display: none !important;
    content: none !important;
}

body.bromley-commons-site {
    background: #ffffff !important;
}

body.bromley-commons-site .bc-page,
body.bromley-commons-site .bc-section,
body.bromley-commons-site .bc-split,
body.bromley-commons-site .bc-location,
body.bromley-commons-site .bc-follow,
body.bromley-commons-site .bc-bromleyhall {
    background-color: #ffffff !important;
}

/* Preserve intentionally colored Bromley Commons sections */
body.bromley-commons-site .bc-stats {
    background: var(--bc-blue) !important;
}

body.bromley-commons-site .bc-feature-section,
body.bromley-commons-site .bc-gallery-section,
body.bromley-commons-site .bc-gallery-inner {
    background: var(--bc-powder) !important;
}

body.bromley-commons-site .bc-cta {
    background:
        linear-gradient(rgba(0,63,106,.82), rgba(0,63,106,.82)),
        url("https://bromleyhall.com/wp-content/uploads/2026/06/Outdoor-Patio-Space-1.png") center/cover no-repeat !important;
}

body.bromley-commons-site .bc-bh-card {
    background: var(--bc-blue) !important;
}

body.bromley-commons-site .bc-footer {
    display: block !important;
    background: var(--bc-shadow) !important;
}

/* Location cards should be white rather than cream */
body.bromley-commons-site .bc-location-item {
    background: #ffffff !important;
}

/* Desktop feature text positioning */
@media (min-width: 901px) {
    .bc-overlay-top {
        position: absolute !important;
        left: 40px !important;
        right: auto !important;
        top: auto !important;
        bottom: 175px !important;
        max-width: 900px !important;
        width: auto !important;
        white-space: nowrap !important;
        padding: 0 !important;
    }

    .bc-overlay-bottom {
        position: absolute !important;
        right: 90px !important;
        left: auto !important;
        top: auto !important;
        bottom: 95px !important;
        max-width: 700px !important;
        width: auto !important;
        white-space: nowrap !important;
        text-align: right !important;
        padding: 0 !important;
    }

    .bc-overlay h2 {
        font-size: clamp(60px, 5vw, 82px) !important;
        line-height: .9 !important;
        margin: 0 !important;
    }
}

