/* ==========================================================================
   BARRIZI ORGANIZATION   BRAND IDENTITY CSS
   Exact color palette from promotional posters
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;600;700&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ==========================================================================
   CSS Custom Properties (Poster Brand Colors)
   ========================================================================== */
:root {
    /* Brand Colors */
    --purple:        #4A154B;
    --orange:        #F37021;
    --yellow:        #FFC107;
    --navy:          #0B192C;
    --off-white:     #FDFBF7;
    --white:         #FFFFFF;
    --purple-light:  #6B2E6C;
    --purple-dark:   #320F33;
    --orange-dark:   #D4601A;
    --text-dark:     #1a1a1a;
    --text-muted:    #5a5a72;

    /* Typography */
    --font-heading:  'Bebas Neue', 'Oswald', sans-serif;
    --font-body:     'Montserrat', sans-serif;

    /* Spacing */
    --section-pad:   90px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
}

/* ==========================================================================
   Global Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400; /* Bebas Neue is all-caps bold by design */
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 0.6em;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.6rem); }

p, li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Utility color classes */
.text-purple  { color: var(--purple)  !important; }
.text-orange  { color: var(--orange)  !important; }
.text-yellow  { color: var(--yellow)  !important; }
.text-navy    { color: var(--navy)    !important; }
.text-white   { color: var(--white)   !important; }

/* ==========================================================================
   Background utility classes
   ========================================================================== */
.bg-purple    { background-color: var(--purple)    !important; }
.bg-orange    { background-color: var(--orange)    !important; }
.bg-yellow    { background-color: var(--yellow)    !important; }
.bg-navy      { background-color: var(--navy)      !important; }
.bg-off-white { background-color: var(--off-white) !important; }
.bg-white     { background-color: var(--white)     !important; }

/* ==========================================================================
   NAVBAR   Sticky, branded top bar
   ========================================================================== */
.brz-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

.brz-header.brz-scrolled {
    background: var(--purple) !important;
    box-shadow: 0 4px 20px rgba(74, 21, 75, 0.4);
}

/* Top utility bar */
.brz-topbar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 0.82rem;
    font-family: var(--font-body);
    color: var(--white);
}

.brz-topbar a {
    color: var(--yellow);
    font-weight: 600;
}

.brz-topbar a:hover {
    color: var(--orange);
}

/* Main navbar */
.brz-navbar {
    background: rgba(74, 21, 75, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
}

.brz-navbar .navbar-brand img {
    height: 52px;
    width: auto;
}

.brz-navbar .navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1;
}

.brz-navbar .brand-text span {
    color: var(--orange);
}

.brz-navbar .nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white) !important;
    padding: 24px 16px !important;
    position: relative;
    transition: color 0.3s;
}

.brz-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.brz-navbar .nav-link:hover::after,
.brz-navbar .nav-link.active::after {
    width: 70%;
}

.brz-navbar .nav-link:hover {
    color: var(--yellow) !important;
}

/* Dropdown */
.brz-navbar .dropdown-menu {
    background: var(--purple-dark);
    border: none;
    border-top: 3px solid var(--orange);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 0;
}

.brz-navbar .dropdown-item {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s, color 0.2s;
}

.brz-navbar .dropdown-item:hover {
    background: var(--orange);
    color: var(--white);
}

/* CTA Donate button in navbar */
.brz-navbar .brz-donate-btn {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 28px !important;
    border: none;
    letter-spacing: 0.05em;
    margin-left: 10px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.brz-navbar .brz-donate-btn:hover {
    background: var(--yellow);
    color: var(--navy) !important;
    transform: translateY(-2px);
}

.brz-navbar .brz-donate-btn::after {
    display: none;
}

/* Mobile toggle */
.brz-navbar .navbar-toggler {
    border: 2px solid var(--orange);
    padding: 6px 12px;
}

.brz-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F37021' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   GLOBAL BUTTONS
   ========================================================================== */
.brz-btn {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 38px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.brz-btn-orange {
    background: var(--orange);
    color: var(--white) !important;
    box-shadow: 5px 5px 0 var(--purple);
}

.brz-btn-orange:hover {
    background: var(--orange-dark);
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--purple);
    color: var(--white) !important;
}

.brz-btn-white-outline {
    background: transparent;
    color: var(--white) !important;
    border: 3px solid var(--white);
}

.brz-btn-white-outline:hover {
    background: var(--white);
    color: var(--purple) !important;
}

.brz-btn-purple {
    background: var(--purple);
    color: var(--white) !important;
    box-shadow: 5px 5px 0 var(--orange);
}

.brz-btn-purple:hover {
    background: var(--purple-dark);
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--orange);
    color: var(--white) !important;
}

.brz-btn-yellow {
    background: var(--yellow);
    color: var(--navy) !important;
    font-weight: 800;
    box-shadow: 5px 5px 0 var(--navy);
}

.brz-btn-yellow:hover {
    background: #e6ac00;
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--navy);
}

/* ==========================================================================
   SECTION LABELS (Poster Style)
   ========================================================================== */
.brz-section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 20px;
    background: var(--orange);
    color: var(--white);
    margin-bottom: 18px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.brz-section-label.label-yellow {
    background: var(--yellow);
    color: var(--navy);
}

.brz-section-label.label-purple {
    background: var(--purple);
    color: var(--white);
}

/* ==========================================================================
   MIXED TYPOGRAPHY   Poster headline style
   ========================================================================== */
.brz-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.brz-headline .hl-purple { color: var(--purple); }
.brz-headline .hl-orange { color: var(--orange); }
.brz-headline .hl-yellow { color: var(--yellow); }
.brz-headline .hl-white  { color: var(--white); }
.brz-headline .hl-navy   { color: var(--navy); }

/* Text inside a colored block (poster highlight) */
.brz-text-block {
    display: inline;
    background: var(--purple);
    color: var(--white);
    padding: 2px 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.brz-text-block-orange {
    background: var(--orange);
    color: var(--white);
}

.brz-text-block-yellow {
    background: var(--yellow);
    color: var(--navy);
}

/* ==========================================================================
   SVG BRUSH-STROKE / TORN-PAPER SECTION DIVIDERS
   These are reusable divider elements placed between sections.
   Usage: <div class="brz-divider-brush-down bg-purple"></div>
   ========================================================================== */

/* Brush stroke wave divider (used between off-white and purple sections) */
.brz-divider-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
}

.brz-divider-wave svg {
    display: block;
    width: 100%;
}

/* Torn paper effect divider */
.brz-divider-torn {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    margin-bottom: -2px;
}

.brz-divider-torn svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Diagonal clip-path dividers used on sections themselves */
.brz-section-slant-top {
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    margin-top: -60px;
    padding-top: calc(var(--section-pad) + 60px);
}

.brz-section-slant-bottom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
    padding-bottom: calc(var(--section-pad) + 60px);
}

.brz-section-slant-both {
    clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
    margin-top: -60px;
    padding-top: calc(var(--section-pad) + 120px);
    padding-bottom: calc(var(--section-pad) + 60px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.brz-hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Slide system */
.brz-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.brz-hero__slide.active {
    opacity: 1;
    z-index: 2;
}

/* Gradient overlay: strong purple/navy left, transparent right */
.brz-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(74, 21, 75, 0.97) 0%,
        rgba(74, 21, 75, 0.85) 40%,
        rgba(11, 25, 44, 0.4) 70%,
        rgba(11, 25, 44, 0.1) 100%
    );
    z-index: 3;
}

.brz-hero__content {
    position: relative;
    z-index: 4;
    padding: 160px 0 100px;
    width: 100%;
}

/* Logo row inside hero */
.brz-hero__logos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.brz-hero__logos img.logo-main {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brz-hero__logo-divider {
    width: 2px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

.brz-hero__logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
}

.brz-hero__logo-text span {
    display: block;
    font-size: 1.3rem;
    color: var(--yellow);
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
}

/* Hero accent tagline */
.brz-hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    letter-spacing: 0.15em;
    color: var(--yellow);
    margin-bottom: 10px;
    display: block;
}

/* Main H1 */
.brz-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--white);
}

.brz-hero__title .hl-orange {
    color: var(--orange);
}

.brz-hero__title .hl-yellow {
    color: var(--yellow);
}

/* Description box */
.brz-hero__desc {
    background: rgba(11, 25, 44, 0.75);
    border-left: 6px solid var(--orange);
    padding: 20px 24px;
    max-width: 540px;
    margin-bottom: 40px;
}

.brz-hero__desc p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

/* Hero CTA badge (Educate Empower Elevate circle) */
.brz-hero__badge {
    position: absolute;
    right: 6%;
    bottom: 20%;
    z-index: 5;
    width: 160px;
    height: 160px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 30px rgba(243, 112, 33, 0.6);
    animation: badge-pulse 3s ease-in-out infinite;
    border: 4px solid var(--white);
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(243, 112, 33, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(243, 112, 33, 0.8); }
}

/* Hero slide dots */
.brz-hero__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.brz-hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: 2px solid var(--white);
    transition: background 0.3s;
}

.brz-hero__dot.active {
    background: var(--orange);
    border-color: var(--orange);
}

/* ==========================================================================
   ICONS STRIP / PROGRAMMES QUICK ICONS  (like poster bottom bar)
   ========================================================================== */
.brz-icons-strip {
    background: var(--purple);
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.brz-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.brz-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.brz-icon-circle:hover {
    transform: scale(1.1);
}

/* Alternate circles: orange and purple */
.brz-icon-circle-orange { background: var(--orange); }
.brz-icon-circle-purple { background: var(--purple-light); border: 3px solid var(--white); }
.brz-icon-circle-yellow { background: var(--yellow); color: var(--navy) !important; }
.brz-icon-circle-navy   { background: var(--navy); }

.brz-icon-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

/* ==========================================================================
   IMPACT STATS SECTION  (Giant Yellow numbers, poster style)
   ========================================================================== */
.brz-impact {
    background: var(--purple);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.brz-impact::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(243, 112, 33, 0.12);
    pointer-events: none;
}

.brz-impact-number {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 10vw, 10rem);
    line-height: 0.9;
    color: var(--yellow);
    display: block;
    letter-spacing: -0.02em;
}

.brz-impact-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    display: block;
}

.brz-impact-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}

.brz-impact-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.brz-impact-item:last-child {
    border-right: none;
}

.brz-impact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

/* ==========================================================================
   PROGRAMMES / PROGRAM CARDS (Poster Circular Icon Style)
   ========================================================================== */
.brz-programmes {
    background: var(--off-white);
    padding: var(--section-pad) 0;
}

.brz-prog-card {
    background: var(--white);
    border: 3px solid var(--navy);
    border-radius: 0;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 8px 8px 0px var(--navy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.brz-prog-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--orange);
}

/* Icon block inside the card */
.brz-prog-card__icon {
    width: 65px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    background: var(--orange);
    margin-bottom: 25px;
    border-radius: 4px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.brz-prog-card:hover .brz-prog-card__icon {
    transform: rotate(0deg) scale(1.1);
}

.brz-prog-card__icon.icon-purple { background: var(--purple); color: var(--white); }
.brz-prog-card__icon.icon-yellow { background: var(--yellow); color: var(--navy); }
.brz-prog-card__icon.icon-navy   { background: var(--navy); color: var(--white); }

.brz-prog-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.brz-prog-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.brz-prog-card__list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px dashed #e0e0e0;
    font-weight: 500;
}

.brz-prog-card__list li:last-child {
    border-bottom: none;
}

.brz-prog-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background: var(--orange);
}

/* Card top strip - no longer needs the top padding for floating icon */
.brz-prog-card-wrap {
    height: 100%;
}

/* ==========================================================================
   ABOUT / MISSION SECTION
   ========================================================================== */
.brz-about {
    background: var(--white);
    padding: var(--section-pad) 0;
}

.brz-about-img-stack {
    position: relative;
    padding: 20px;
}

/* Polaroid effect images */
.brz-polaroid {
    background: var(--white);
    padding: 12px 12px 40px 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: inline-block;
    transition: transform 0.4s ease;
}

.brz-polaroid:hover {
    transform: rotate(0deg) scale(1.03) !important;
}

.brz-polaroid img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.brz-polaroid-caption {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding-top: 8px;
    font-style: italic;
}

.brz-polaroid-main {
    transform: rotate(-2deg);
    z-index: 2;
    position: relative;
    width: 85%;
    margin: 0 auto;
}

.brz-polaroid-sub {
    transform: rotate(3.5deg);
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: 1;
    width: 55%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Orange accent block behind image */
.brz-about-img-stack::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%;
    height: 70%;
    background: var(--orange);
    z-index: -1;
    transform: translate(15px, -15px);
}

/* ==========================================================================
   QUOTE / CALLOUT SECTION (Partner poster style)
   ========================================================================== */
.brz-quote-section {
    background: var(--purple);
    padding: 60px 40px;
    position: relative;
}

.brz-quote-mark {
    font-family: Georgia, serif;
    font-size: 8rem;
    color: var(--orange);
    line-height: 0.5;
    margin-bottom: 20px;
    display: block;
}

.brz-quote-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.brz-quote-cta {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 0;
}

/* ==========================================================================
   PROJECTS / CAUSES CARDS
   ========================================================================== */
.brz-project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brz-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(74, 21, 75, 0.2);
}

.brz-project-card__img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    border-bottom: 4px solid var(--orange);
}

.brz-project-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brz-project-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 16px;
}

.brz-project-card__title a {
    color: inherit;
}

.brz-project-card__title a:hover {
    color: var(--orange);
}

.brz-progress {
    height: 10px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
}

.brz-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--orange), var(--yellow));
    border-radius: 20px;
    transition: width 1.5s ease;
}

.brz-project-card__stats {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: auto;
}

.brz-project-card__raised { color: var(--orange); }
.brz-project-card__goal   { color: var(--text-muted); }

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */
.brz-event-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid var(--orange);
    margin-bottom: 24px;
}

.brz-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(74, 21, 75, 0.15);
    border-left-color: var(--purple);
}

.brz-event-card__img {
    width: 200px;
    min-width: 200px;
    object-fit: cover;
}

.brz-event-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brz-event-date-chip {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    padding: 4px 14px;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.brz-event-card__title a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--purple);
    transition: color 0.3s;
}

.brz-event-card__title a:hover {
    color: var(--orange);
}

/* ==========================================================================
   BLOG / SUCCESS STORIES  (Polaroid Twist)
   ========================================================================== */
.brz-blog-section {
    background: var(--off-white);
    padding: var(--section-pad) 0;
}

.brz-blog-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

/* Slight rotation gives the polaroid feel */
.brz-blog-card:nth-child(odd)  { transform: rotate(-1.2deg); }
.brz-blog-card:nth-child(even) { transform: rotate(1.2deg); }

.brz-blog-card:hover {
    transform: rotate(0) translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(74, 21, 75, 0.25);
}

.brz-blog-card__img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-bottom: 5px solid var(--purple);
}

/* White border bottom like a polaroid */
.brz-blog-card__body {
    padding: 20px 20px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.brz-blog-date-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    padding: 4px 12px;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.brz-blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 10px;
    line-height: 1.2;
}

.brz-blog-card__title a {
    color: inherit;
}

.brz-blog-card__title a:hover {
    color: var(--orange);
}

.brz-blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 16px;
}

/* ==========================================================================
   VOLUNTEER / CTA BANNER
   ========================================================================== */
.brz-cta-banner {
    background: var(--purple);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.brz-cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(243, 112, 33, 0.15);
}

.brz-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
}

.brz-cta-banner__bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: luminosity;
}

.brz-cta-banner__content {
    position: relative;
    z-index: 2;
}

.brz-cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 7rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
}

.brz-cta-banner__title .hl-orange {
    color: var(--orange);
}

.brz-cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.7;
}

/* ==========================================================================
   PARTNERSHIP SECTION (Partner poster style - Two columns)
   ========================================================================== */
.brz-partner-section {
    background: var(--off-white);
    padding: var(--section-pad) 0;
}

.brz-partner-why li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 0 10px 36px;
    position: relative;
    border-bottom: 1px dashed #ddd;
    font-weight: 600;
}

.brz-partner-why li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: var(--purple);
    border-radius: 50%;
}

.brz-partner-why li::after {
    content: '→';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
}

.brz-partner-opps li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 0 10px 36px;
    position: relative;
    border-bottom: 1px dashed #ddd;
    font-weight: 600;
}

.brz-partner-opps li::before {
    content: '✓';
    position: absolute;
    left: 4px;
    color: var(--orange);
    font-weight: 900;
    font-size: 1.1rem;
}

/* ==========================================================================
   FOOTER   Poster Style: Navy Background
   ========================================================================== */
.brz-footer {
    background: var(--navy);
    color: var(--white);
    padding: 70px 0 0;
    font-family: var(--font-body);
}

.brz-footer__brand img {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
}

.brz-footer__brand-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.brz-footer__brand-name span {
    color: var(--orange);
}

.brz-footer__tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brz-footer__desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.brz-footer__heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--orange);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    text-transform: uppercase;
}

.brz-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brz-footer__links li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.brz-footer__links li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.3s, padding-left 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brz-footer__links li a::before {
    content: '›';
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 900;
}

.brz-footer__links li a:hover {
    color: var(--yellow);
    padding-left: 8px;
}

/* Contact info in footer */
.brz-footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    list-style: none;
}

.brz-footer__contact li i {
    color: var(--orange);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.brz-footer__contact li a {
    color: inherit;
}

.brz-footer__contact li a:hover {
    color: var(--yellow);
}

/* Newsletter form in footer */
.brz-footer__newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 10px;
}

.brz-footer__newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-right: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    border-radius: 0;
}

.brz-footer__newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.45);
}

.brz-footer__newsletter-form button {
    padding: 12px 20px;
    background: var(--orange);
    color: var(--white);
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 0;
}

.brz-footer__newsletter-form button:hover {
    background: var(--yellow);
    color: var(--navy);
}

/* Social icons */
.brz-footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.brz-footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
    border: 1.5px solid rgba(255,255,255,0.2);
}

.brz-footer__socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    color: var(--white);
}

/* Footer bottom bar */
.brz-footer__bottom {
    background: rgba(0,0,0,0.3);
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.brz-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Minimalist horizontal contact strip in footer bottom (poster style) */
.brz-footer__contact-strip {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brz-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 600;
}

.brz-footer__contact-item i {
    color: var(--orange);
    font-size: 1rem;
}

.brz-footer__contact-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.25);
}

.brz-footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ==========================================================================
   SCROLL-TO-TOP BUTTON
   ========================================================================== */
#brz-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 9000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.5);
    text-decoration: none;
}

#brz-back-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#brz-back-top:hover {
    background: var(--purple);
}

/* ==========================================================================
   MICRO-ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

.anim-fade-up    { animation: fadeInUp    0.7s ease both; }
.anim-fade-left  { animation: fadeInLeft  0.7s ease both; }
.anim-fade-right { animation: fadeInRight 0.7s ease both; }
.anim-scale-in   { animation: scaleIn     0.6s ease both; }

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }

/* Intersection observer helper */
.brz-observe { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
.brz-observe.brz-visible { opacity: 1; transform: none !important; }
.brz-observe.slide-up   { transform: translateY(40px); }
.brz-observe.slide-left  { transform: translateX(-40px); }
.brz-observe.slide-right { transform: translateX(40px); }
.brz-observe.scale-in    { transform: scale(0.9); }

/* ==========================================================================
   SECTION DIVIDERS   Inline SVG approach (brush stroke style)
   These are CSS classes applied to <div> wrappers that contain inline SVGs
   ========================================================================== */

/* Each divider is a full-width div containing the inline SVG */
.brz-svg-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    z-index: 5;
}

.brz-svg-divider svg {
    display: block;
    width: 100%;
}

/* Flip for reversed direction */
.brz-svg-divider.flip-x svg {
    transform: scaleX(-1);
}

.brz-svg-divider.flip-y svg {
    transform: scaleY(-1);
}

.brz-svg-divider.flip-both svg {
    transform: scale(-1, -1);
}

/* ==========================================================================
   MISCELLANEOUS UTILITY CLASSES
   ========================================================================== */
.section-pad { padding: var(--section-pad) 0; }
.section-title-purple {
    font-family: var(--font-heading);
    color: var(--purple);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title-orange {
    font-family: var(--font-heading);
    color: var(--orange);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.divider-orange {
    width: 70px;
    height: 5px;
    background: var(--orange);
    margin: 16px 0 30px;
}

.divider-yellow {
    width: 70px;
    height: 5px;
    background: var(--yellow);
    margin: 16px 0 30px;
}

.brz-challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.brz-challenge-icon {
    color: #e63946;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.brz-challenge-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

/* Section label for white bg */
.brz-label-box-purple {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    padding: 8px 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.brz-label-box-orange {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    padding: 8px 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .brz-hero__badge {
        width: 130px;
        height: 130px;
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    :root { --section-pad: 70px; }

    .brz-hero__title { font-size: clamp(2.8rem, 8vw, 5rem); }
    .brz-hero__badge { right: 3%; bottom: 15%; width: 110px; height: 110px; font-size: 0.95rem; }

    .brz-impact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .brz-event-card { flex-direction: column; }
    .brz-event-card__img { width: 100%; height: 200px; }

    .brz-about-img-stack::before { display: none; }
    .brz-polaroid-sub { display: none; }

    .brz-footer__bottom-inner { flex-direction: column; text-align: center; }
    .brz-footer__contact-strip { justify-content: center; }
}

@media (max-width: 768px) {
    :root { --section-pad: 50px; }

    .brz-hero__title { font-size: clamp(2.2rem, 9vw, 3.8rem); }
    .brz-hero__badge { display: none; }
    .brz-hero__logos { gap: 16px; }

    .brz-impact-number { font-size: clamp(3.5rem, 12vw, 7rem); }

    .brz-blog-card:nth-child(odd),
    .brz-blog-card:nth-child(even) { transform: none; }

    .brz-navbar .nav-link { padding: 10px 16px !important; }

    .brz-cta-banner { padding: 70px 0; }
    .brz-cta-banner__title { font-size: clamp(2.5rem, 9vw, 4.5rem); }

    .brz-footer__contact-strip { flex-direction: column; gap: 12px; }
    .brz-footer__contact-divider { display: none; }
}

@media (max-width: 576px) {
    .brz-hero__content { padding: 120px 0 80px; }
    .brz-hero__desc { max-width: 100%; }
    .brz-prog-card { margin-top: 30px; }

    .brz-icon-circle { width: 60px; height: 60px; font-size: 1.5rem; }
    .brz-icon-label { font-size: 0.8rem; }
}
