﻿:root {
    --bg-main: #ece6db;
    --bg-soft: #f6f1e8;
    --text-dark: #232c6b;
    --text-body: #3b4568;
    --accent-red: #ef5a4c;
    --accent-pink: #cc6da8;
    --accent-purple: #9f7bd8;
    --accent-peach: #f3c4a7;
    --accent-lilac: #d8c0dd;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body.whhd-body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-body);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 14px 0 0;
    pointer-events: none;
}

    .site-header .container,
    .site-header .navbar,
    .site-header .navbar * {
        pointer-events: auto;
    }

.whhd-navbar {
    background: var(--bg-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 12px 18px;
    position: relative;
    overflow: hidden;
}

    .whhd-navbar::before,
    .whhd-navbar::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        z-index: 0;
        opacity: .9;
        pointer-events: none;
    }

    .whhd-navbar::before {
        width: 140px;
        height: 140px;
        background: rgba(243, 196, 167, 0.55);
        top: -60px;
        left: -30px;
    }

    .whhd-navbar::after {
        width: 120px;
        height: 120px;
        background: rgba(204, 109, 168, 0.20);
        right: -25px;
        top: -35px;
    }

    .whhd-navbar > .container {
        position: relative;
        z-index: 1;
    }

.whhd-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding-right: 1rem;
}

.brand-mark {
    width: 100px;
    height: 42px;
    background: url(/images/chd/orgs.png) center center no-repeat;
    background-size: cover;
    flex: 0 0 auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-top {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    color: var(--accent-red);
}

.brand-bottom {
    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 600;
}

.whhd-nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: .98rem;
    border-radius: 999px;
    padding: .72rem 1rem !important;
    transition: all .25s ease;
    position: relative;
}

    .whhd-nav-link:hover,
    .whhd-nav-link:focus {
        color: var(--text-dark);
        background: rgba(255,255,255,0.72);
    }

    .whhd-nav-link.active {
        background: rgba(35,44,107,0.08);
        color: var(--text-dark);
    }

.btn-whhd-nav {
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: .78rem 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(35,44,107,.18);
    transition: all .25s ease;
}

    .btn-whhd-nav:hover {
        background: #1b2457;
        color: #fff;
        transform: translateY(-1px);
    }

.whhd-toggler {
    border: none;
    box-shadow: none !important;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.7);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

    .whhd-toggler span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 3px;
        background: var(--text-dark);
        transition: all .25s ease;
    }

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding-top: 10px;
    }

    .whhd-navbar {
        padding: 10px 14px;
        border-radius: 22px;
    }

    .brand-top {
        font-size: .62rem;
    }

    .brand-bottom {
        font-size: 1.2rem;
    }

    .navbar-collapse {
        margin-top: 14px;
        background: rgba(255,255,255,0.86);
        border: 1px solid rgba(255,255,255,0.72);
        border-radius: 22px;
        padding: 14px;
        box-shadow: var(--shadow-strong);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .whhd-nav-link {
        padding: .9rem 1rem !important;
        font-size: 1rem;
    }

    .btn-whhd-nav {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: .4rem;
    }
}

@media (max-width: 575.98px) {
    .site-header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .whhd-navbar {
        border-radius: 18px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-bottom {
        font-size: 1.05rem;
    }

    .brand-top {
        font-size: .56rem;
    }

    .whhd-toggler {
        width: 44px;
        height: 44px;
    }
}

.whhd-hero {
    background: var(--bg-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 6vw, 5.5rem);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0;
}

.hero-subtitle {
    max-width: 640px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-body);
}

.hero-meta {
    margin-top: 1.5rem;
}

.hero-badge {
    padding: .8rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(35,44,107,.08);
}

.hero-card {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(6px);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(35,44,107,.12);
    border: 1px solid rgba(255,255,255,.4);
}

.hero-card-label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: .75rem;
}

.hero-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: .95;
}

.hero-shape-1 {
    width: 340px;
    height: 340px;
    background: url(/images/chd/logo3.svg) center center no-repeat;
    background-size: contain;
    top: -80px;
    right: 10%;
}

.hero-shape-2 {
    width: 240px;
    height: 240px;
    background: url(/images/chd/logo2.svg) center center no-repeat;
    background-size: contain;
    bottom: 10%;
    right: -60px;
}

.hero-shape-3 {
    width: 180px;
    height: 180px;
    background: url(/images/chd/logo1.svg) center center no-repeat;
    background-size: contain;
    top: 24%;
    left: -60px;
}

.section-kicker {
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .9rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--text-dark);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 0;
}

.whhd-about,
.whhd-speakers {
    background: var(--bg-soft);
}

.info-card,
.speaker-card,
.timeline-card,
.cta-box {
    background: #fff;
    border-radius: 1.75rem;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(35,44,107,.08);
}

    .info-card h3,
    .timeline-card h3,
    .speaker-card h3 {
        color: var(--text-dark);
        font-size: 1.2rem;
        font-weight: 700;
    }

    .info-card p,
    .timeline-card p,
    .speaker-card p,
    .cta-text {
        color: var(--text-body);
        line-height: 1.7;
        margin-bottom: 0;
    }

.timeline {
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 145px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(35,44,107,.12);
    }

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.timeline-time {
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 1rem;
}

.timeline-card {
    position: relative;
}

    .timeline-card::before {
        content: "";
        position: absolute;
        left: -35px;
        top: 26px;
        width: 14px;
        height: 14px;
        background: var(--accent-red);
        border-radius: 50%;
    }

    .timeline-card.is-break {
        background: #fff4ea;
    }

    .timeline-card.is-accent {
        background: #fdf1f6;
    }

    .timeline-card.is-accent-2 {
        background: #f4f0ff;
    }

.speaker-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-peach), var(--accent-pink));
    margin-bottom: 1rem;
}

    .speaker-photo img {
        border-radius: 50%;
    }

    .whhd-cta {
        background: var(--bg-main);
    }

    .cta-box {
        max-width: 100%;
        margin: 0 auto;
        padding: 3rem 2rem;
    }

    .btn-whhd-primary {
        background: var(--text-dark);
        border: none;
        color: #fff;
        border-radius: 999px;
        padding: .95rem 1.6rem;
        font-weight: 700;
        box-shadow: 0 12px 30px rgba(35,44,107,.18);
    }

        .btn-whhd-primary:hover {
            background: #1b2457;
            color: #fff;
        }

    .btn-whhd-outline {
        background: transparent;
        color: var(--text-dark);
        border: 2px solid var(--text-dark);
        border-radius: 999px;
        padding: .95rem 1.6rem;
        font-weight: 700;
    }

        .btn-whhd-outline:hover {
            background: var(--text-dark);
            color: #fff;
        }

    @media (max-width: 991.98px) {
        .whhd-hero {
            min-height: auto;
            padding: 3rem 0;
        }

        .timeline::before {
            left: 10px;
        }

        .timeline-item {
            grid-template-columns: 1fr;
            gap: .75rem;
            padding-left: 2rem;
        }

        .timeline-card::before {
            left: -28px;
        }

        .timeline-time {
            padding-top: 0;
        }
    }

.registration-box {
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 60px rgba(35,44,107,.10);
}

.registration-intro {
    height: 100%;
    padding: 1rem 1rem 1rem .5rem;
}

.registration-points {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.registration-point {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: var(--text-body);
    line-height: 1.6;
    font-weight: 500;
}

.registration-point-icon {
    color: var(--accent-red);
    font-size: 1.15rem;
    line-height: 1.2;
    margin-top: .1rem;
}

.registration-form-wrap {
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 1.5rem;
    box-shadow: 0 16px 40px rgba(35,44,107,.08);
    border: 1px solid rgba(35,44,107,.06);
}

.registration-form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-size: .92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .45rem;
}

.field-control {
    min-height: 54px;
    border-radius: 1rem;
    border: 1.5px solid rgba(35,44,107,.12);
    background: #fbfaf7;
    color: var(--text-dark);
    padding: .85rem 1rem;
    box-shadow: none !important;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

    .field-control:focus {
        border-color: var(--accent-pink);
        background: #fff;
        box-shadow: 0 0 0 .25rem rgba(204, 109, 168, .12) !important;
    }

    .field-control::placeholder {
        color: #8c93ab;
    }

.field-control-textarea {
    min-height: 122px;
    resize: vertical;
    padding-top: .95rem;
}

.field-validation {
    font-size: .85rem;
    margin-top: .35rem;
}

.validation-summary {
    font-size: .95rem;
    background: rgba(239, 90, 76, .08);
    border: 1px solid rgba(239, 90, 76, .18);
    color: #b42318;
    border-radius: 1rem;
    padding: .9rem 1rem;
}

.form-note {
    border-radius: 1.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid transparent;
}

.form-note-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-note-info {
    background: #eef5ff;
    border-color: #d9e7ff;
}

.form-note-warning {
    background: #fff5eb;
    border-color: #ffe0bf;
}

.form-note p {
    color: var(--text-body);
    line-height: 1.6;
}

.form-check-input {
    border-color: rgba(35,44,107,.25);
}

    .form-check-input:checked {
        background-color: var(--text-dark);
        border-color: var(--text-dark);
    }

.form-check-label {
    color: var(--text-body);
    font-weight: 500;
}

.registration-submit {
    min-width: 220px;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

@media (max-width: 991.98px) {
    .registration-box {
        padding: 1.25rem;
    }

    .registration-intro {
        padding: .25rem;
    }

    .registration-form-wrap {
        padding: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .registration-box {
        border-radius: 1.5rem;
    }

    .registration-form-wrap {
        border-radius: 1.25rem;
        padding: 1rem;
    }

    .field-control {
        min-height: 50px;
        border-radius: .9rem;
        font-size: .95rem;
    }

    .registration-submit {
        width: 100%;
    }
}

.whhd-venue {
    background: var(--bg-soft);
}

.venue-box {
    background: rgba(255,255,255,.75);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(35,44,107,.08);
    backdrop-filter: blur(4px);
}

/* ===== MAP ===== */

.venue-map-wrap {
    height: 100%;
    min-height: 360px;
    position: relative;
}

    .venue-map-wrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(20%) contrast(95%);
    }

/* ===== RIGHT SIDE ===== */

.venue-info-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2.5rem 2rem;
    background: linear-gradient( 135deg, rgba(35,44,107,0.96), rgba(159,123,216,0.92) );
}

.venue-card {
    color: #fff;
    max-width: 420px;
}

.venue-label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    margin-bottom: .6rem;
}

.venue-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: .75rem;
    line-height: 1.1;
}

.venue-address {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,.85);
}

/* ===== FEATURES ===== */

.venue-features {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.venue-feature {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    font-size: .95rem;
    color: rgba(255,255,255,.9);
}

.venue-feature-icon {
    color: var(--accent-peach);
    font-size: 1.1rem;
    line-height: 1.2;
}

/* ===== BUTTON ===== */

.venue-card .btn-whhd-outline {
    border-color: rgba(255,255,255,.7);
    color: #fff;
}

    .venue-card .btn-whhd-outline:hover {
        background: #fff;
        color: var(--text-dark);
    }

/* ===== MOBILE ===== */

@media (max-width: 991.98px) {

    .venue-box {
        border-radius: 1.5rem;
    }

    .venue-info-wrap {
        padding: 2rem 1.5rem;
    }

    .venue-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {

    .venue-map-wrap {
        min-height: 260px;
    }

    .venue-info-wrap {
        padding: 1.5rem 1.2rem;
    }

    .venue-title {
        font-size: 1.6rem;
    }

    .venue-address {
        font-size: .95rem;
    }
}

.whhd-supporters {
    background: var(--bg-main);
}

.supporters-box {
    background: rgba(255,255,255,.72);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(35,44,107,.08);
    backdrop-filter: blur(4px);
}

.supporter-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 1.75rem;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 16px 40px rgba(35,44,107,.08);
    border: 1px solid rgba(35,44,107,.06);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .supporter-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 48px rgba(35,44,107,.12);
        border-color: rgba(204,109,168,.22);
    }

.supporter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(239,90,76,.10);
    color: var(--accent-red);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.supporter-logo-wrap {
    width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

    .supporter-logo-wrap img {
        max-width: 100%;
        max-height: 90px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform .25s ease, opacity .25s ease;
    }

.supporter-card:hover .supporter-logo-wrap img {
    transform: scale(1.03);
}

@media (max-width: 991.98px) {
    .supporters-box {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .supporter-card {
        border-radius: 1.4rem;
    }

    .supporter-logo-wrap {
        min-height: 130px;
    }

        .supporter-logo-wrap img {
            max-height: 78px;
        }
}

@media (max-width: 575.98px) {
    .supporters-box {
        padding: 1rem;
    }

    .supporter-card {
        padding: 1.2rem 1rem;
    }

    .supporter-logo-wrap {
        min-height: 110px;
        padding: .75rem;
    }

        .supporter-logo-wrap img {
            max-height: 64px;
        }
}