/* ==========================================================================
   Sections — All Section Styles
   Breast Connect Theme
   ========================================================================== */

/* ---------- Hero (Full) ---------- */

.bc-hero {
    position: relative;
    height: 90vh;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bc-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transform: scale(1.02);
}

.bc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 54, 61, 0.15) 0%,
        rgba(26, 54, 61, 0.1) 30%,
        rgba(26, 54, 61, 0.45) 60%,
        rgba(26, 54, 61, 0.88) 100%
    );
    z-index: 1;
}

.bc-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding) 100px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.bc-hero__label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-body);
    display: inline-block;
    margin-bottom: 16px;
}

.bc-hero__label .heart {
    color: var(--coral);
}

.bc-hero__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.bc-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.bc-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- Hero (Short / Inner Page) ---------- */

.bc-hero-short {
    position: relative;
    height: 480px; /* taller to extend behind fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* No margin-top — extends behind fixed header like full hero */
}

.bc-hero-short__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bc-hero-short__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.bc-hero-short__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 54, 61, 0.65);
    z-index: 1;
}

.bc-hero-short__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-padding);
}

.bc-hero-short__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    font-weight: 400;
}

.bc-hero-short__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ---------- Mission Card ---------- */

.bc-mission-card-wrap {
    position: relative;
    z-index: 10;
    margin-top: -70px;
    margin-bottom: -70px;
    padding: 0 var(--container-padding);
}

.bc-mission-card {
    max-width: 860px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all var(--transition-medium);
}

.bc-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.bc-mission-card__heading {
    font-size: 1.6rem;
}

.bc-mission-card__accent {
    font-style: italic;
    color: var(--teal);
}

.bc-mission-card__divider {
    width: 60px;
    height: 3px;
    background-color: var(--teal);
    margin: 20px auto;
    border-radius: 2px;
}

.bc-mission-card__text {
    color: var(--gray-text);
    font-size: 1.02rem;
    line-height: 1.85;
}

/* ---------- Explore CTA ---------- */

.bc-explore {
    background-color: var(--navy);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.bc-explore__bg {
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/uploads/2026/04/survivors-helping-survivors-1.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    opacity: 0.18;
    z-index: 0;
}

.bc-explore__inner {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.bc-explore__content {
    flex: 1;
}

.bc-explore__heading {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.bc-explore__text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.bc-explore__image {
    width: 340px;
    flex-shrink: 0;
    height: 440px;
}

.bc-explore__image .bc-img-container {
    height: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bc-explore__image:hover .bc-img-container img {
    transform: scale(1.03) rotate(1deg);
}

.bc-explore__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- Programs Section ---------- */

.bc-programs {
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.bc-programs::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(180,199,202,0.08) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 30%, rgba(180,199,202,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.bc-programs__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.bc-programs__subtitle {
    color: var(--gray-text);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* ---------- Program Row ---------- */

.bc-program-row {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 90px;
    position: relative;
}

.bc-program-row:last-child {
    margin-bottom: 0;
}

.bc-program-row--reversed {
    flex-direction: row-reverse;
}

.bc-program-row__image {
    flex: 0 0 55%;
    height: 420px;
    position: relative;
}

.bc-program-row__image .bc-img-container {
    height: 100%;
    border-radius: 16px;
}

.bc-program-row__image .bc-img-container img {
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s;
}

.bc-program-row:hover .bc-program-row__image .bc-img-container img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(26,54,61,0.15);
}

.bc-program-row__polka {
    position: absolute;
    z-index: 0;
}

.bc-program-row__content {
    flex: 1;
}

.bc-program-row__title {
    font-size: 1.85rem;
    color: var(--navy);
    margin-bottom: 16px;
    transition: color var(--transition-fast);
}

.bc-program-row:hover .bc-program-row__title {
    color: var(--teal);
}

.bc-program-row__text {
    color: var(--gray-text);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ---------- Membership CTA ---------- */

.bc-membership {
    background-color: var(--navy);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.bc-membership__image {
    flex: 0 0 55%;
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.bc-membership__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bc-membership__image:hover img {
    transform: scale(1.04);
}

.bc-membership__image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--navy));
    z-index: 1;
}

.bc-membership__content {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(
        circle at top right,
        rgba(180, 199, 202, 0.08) 0%,
        transparent 60%
    );
}

.bc-membership__heading {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.bc-membership__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ---------- About / Our Story ---------- */

.bc-about {
    background-color: var(--warm-white);
    padding: 80px 0 110px;
    overflow: hidden;
}

.bc-about__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.bc-about__header {
    text-align: center;
    margin-bottom: 60px;
}

.bc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bc-about__photos {
    position: relative;
    height: 460px;
}

.bc-about__photo {
    position: absolute;
    border: 4px solid var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(26, 54, 61, 0.18);
    overflow: hidden;
    object-fit: cover;
    transition: all var(--transition-medium);
}

.bc-about__photo:hover {
    z-index: 10;
}

.bc-about__photo:nth-child(1) {
    width: 320px;
    height: 240px;
    top: 20px;
    left: 20px;
    transform: rotate(-3deg);
}

.bc-about__photo:nth-child(1):hover {
    transform: rotate(0deg) scale(1.05);
}

.bc-about__photo:nth-child(2) {
    width: 240px;
    height: 200px;
    top: 120px;
    left: 180px;
    transform: rotate(2deg);
}

.bc-about__photo:nth-child(2):hover {
    transform: rotate(0deg) scale(1.05);
}

.bc-about__photo:nth-child(3) {
    width: 200px;
    height: 240px;
    top: 30px;
    right: 20px;
    transform: rotate(4deg);
}

.bc-about__photo:nth-child(3):hover {
    transform: rotate(0deg) scale(1.05);
}

.bc-about__text {
    padding-left: 20px;
}

.bc-about__subheading {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.bc-about__paragraph {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* ---------- Newsletter ---------- */

.bc-newsletter {
    background-color: var(--teal);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bc-newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 3px, transparent 3px);
    background-size: 32px 32px;
    pointer-events: none;
}

.bc-newsletter__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 auto 24px;
}

.bc-newsletter__heading {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.bc-newsletter__script {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.bc-newsletter__text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.bc-newsletter__form {
    max-width: 480px;
    margin: 0 auto;
}

/* ---------- Intro Block ---------- */

.bc-intro-block {
    text-align: center;
    padding: 90px var(--container-padding);
    max-width: 800px;
    margin: 0 auto;
}

.bc-intro-block__heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.bc-intro-block__text {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ---------- CTA Band ---------- */

.bc-cta-band {
    padding: 80px 0;
    text-align: center;
}

.bc-cta-band--navy {
    background-color: var(--navy);
    color: var(--white);
}

.bc-cta-band--teal {
    background-color: var(--teal);
    color: var(--white);
}

.bc-cta-band--warm-white {
    background-color: var(--warm-white);
    color: var(--navy);
}

.bc-cta-band__heading {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.bc-cta-band--navy .bc-cta-band__heading,
.bc-cta-band--teal .bc-cta-band__heading {
    color: var(--white);
}

.bc-cta-band__text {
    font-size: 1.05rem;
    opacity: 0.75;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ---------- Reduce top padding on sections after dividers ---------- */
.bc-divider-wave + section,
.bc-divider-curve + section,
.bc-divider-diagonal + section {
    padding-top: 40px !important;
}
