/* =====================================================================
   site.css — additions made when this Wayback capture was rebuilt as a
   clean, self-hosted site. The other four stylesheets are the original
   template files and are unmodified apart from archive-URL stripping.

   Two jobs:
     1. supply styling the original page never had (speaker cards, partner
        groups, past-partner strip) or that it drove with inline styles;
     2. stand in for the twelve background images the "save page as" never
        downloaded, so no section renders as a blank white box.
   ===================================================================== */

:root {
    /* the template asks for "Font Awesome 6 Pro"; only the Free set exists,
       so CSS-driven ::before icons rendered as blank boxes */
    --icon-font: "Font Awesome 6 Free";
}

/* The template's `.home5` skin sets --theme-color to blue (#2a07f9), while this
   event brands itself red everywhere it matters (logo, top bar, CTAs). The skin
   is left alone so stock components keep their original look; the pieces added
   here use their own accent so they sit with the branding instead of fighting it. */
.home5 {
    --site-accent: #f0401b;
    --site-accent-2: #ff6508;
}

/* The template writes Font Awesome glyphs straight into `content:` but never
   sets a weight. Font Awesome 6 Free keeps almost every glyph in the Solid
   (900) face, so at the inherited weight of 400 they all rendered as tofu. */
.main-menu ul li.menu-item-has-children > a::after,
.main-menu ul.sub-menu li a::before,
.main-menu ul.sub-menu li.menu-item-has-children > a::after,
.vs-mobile-menu ul li a::before,
.vs-mobile-menu ul .vs-item-has-children > a::after,
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand::before,
.check-list li::before,
.info-media_text::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* =====================================================================
   TYPOGRAPHY
   The template ships 34px section titles and, inside one media query,
   forces them to `font-weight: 300 !important`, so every heading rendered
   thin and undersized. Headings are now fluid, heavy, and carry a gradient
   rule underneath; body copy is nudged up a step for readability.
   ===================================================================== */

body {
    font-size: 17px;
    line-height: 1.65;
}

.sec-title {
    font-family: var(--title-font, "Inter", sans-serif);
    font-size: clamp(30px, 3.2vw, 46px) !important;
    font-weight: 800 !important;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--title-color, #171b2a);
    margin-bottom: 26px;
}

.sec-title.text-white,
.title-white .sec-title {
    color: #fff;
}

/* gradient rule under every section heading */
.title-area .sec-title,
.title-area2 .sec-title,
#whyattend .sec-title,
#about .sec-title {
    position: relative;
    padding-bottom: 20px;
}

.title-area .sec-title::after,
.title-area2 .sec-title::after,
#whyattend .sec-title::after,
#about .sec-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 92px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--site-accent, #f0401b), var(--site-accent-2, #ff6508));
}

.title-area.text-center .sec-title::after,
.title-area2.text-center .sec-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.sec-title.text-white::after,
#whyattend .sec-title::after {
    background: linear-gradient(90deg, #fff, var(--site-accent-2, #ff6508));
}

.title-area,
.title-area2 {
    margin-bottom: 46px;
}

/* supporting headings, sized up to match */
.notice-band h2 {
    font-size: clamp(19px, 1.9vw, 25px);
    font-weight: 700;
}

.partner-group_title {
    font-size: 21px;
    letter-spacing: -0.01em;
}

.partner-tier_title {
    font-size: 16px;
}

.spek_cntnt h5 {
    font-size: 18.5px;
    letter-spacing: -0.01em;
}

.spek_cntnt p {
    font-size: 14.5px;
}

.team-block_title {
    font-size: 21px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
}

.team-block_desig {
    font-size: 15px;
}

.vs-card_title {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3;
}

.contact-box_title {
    font-size: 19px;
}

.contact-box_text {
    font-size: 16px;
    line-height: 1.7;
}

.info-media_text,
.info-block_text {
    font-size: 16.5px;
}

.info-block_title {
    font-size: 19px;
    font-weight: 700;
}

.why-attend-list li {
    font-size: 17px;
}

.footer-menu ul li a {
    font-size: 16.5px;
    font-weight: 600;
}

/* ------------------------------------------------------------ basics -- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 3000;
    padding: 12px 22px;
    background: var(--site-accent, #f0401b);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    left: 0;
}

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

/* --------------------------------------------------------------- hero -- */
/* original background was assets/img/13th_nbfc.jpg, absent from the capture */
.vs-hero-wrapper {
    position: relative;
}

.vs-hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 640px;
    padding: 90px 0 100px;
    overflow: hidden;
}

.vs-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 520px at 12% 8%, rgba(255, 101, 8, .34), transparent 62%),
        radial-gradient(900px 620px at 88% 88%, rgba(240, 64, 27, .38), transparent 62%),
        linear-gradient(135deg, #12141f 0%, #241110 52%, #3d1508 100%);
}

/* faint grid so the flat gradient has some texture */
.vs-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 62px 62px;
    -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
    mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 78%);
}

.vs-hero-slide .container {
    position: relative;
    z-index: 2;
}

/* -- left column -- */
.hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 16px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.hero-lockup {
    display: inline-block;
    padding: 18px 26px;
    background: rgba(255, 255, 255, .95);
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .38);
}

.hero-lockup img {
    display: block;
    width: min(430px, 100%);
    height: auto;
}

.hero-tagline {
    margin: 26px 0 0;
    color: #fff;
    font-family: var(--title-font, "Inter", sans-serif);
    font-size: clamp(24px, 2.7vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-facts {
    list-style: none;
    margin: 26px 0 32px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.hero-facts li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.hero-facts i {
    color: var(--site-accent-2, #ff6508);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hero-btn-ghost {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: background .3s ease, border-color .3s ease, color .3s ease;
}

.hero-btn-ghost:hover {
    background: #fff;
    border-color: #fff;
    color: var(--site-accent, #f0401b);
}

/* -- right column collage -- */
.hero-collage {
    position: relative;
    padding-bottom: 58px;
    padding-left: 30px;
}

.hero-collage img {
    display: block;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .48);
}

.hero-collage_a {
    width: 100%;
    height: 380px;
    border: 4px solid rgba(255, 255, 255, .12);
}

.hero-collage_b {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52%;
    height: 190px;
    border: 4px solid rgba(255, 255, 255, .18);
}

.hero-badge {
    position: absolute;
    top: -18px;
    right: -10px;
    width: 104px;
    height: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--site-accent, #f0401b), var(--site-accent-2, #ff6508));
    box-shadow: 0 14px 34px rgba(240, 64, 27, .45);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
}

.hero-badge strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .hero-collage { padding-left: 0; padding-bottom: 46px; }
    .hero-collage_a { height: 300px; }
    .hero-collage_b { height: 150px; }
    .hero-badge { width: 86px; height: 86px; font-size: 11px; right: 4px; }
    .hero-badge strong { font-size: 26px; }
}

@media (max-width: 575.98px) {
    .hero-collage_b { display: none; }
    .hero-collage { padding-bottom: 0; }
}

/* -------------------------------------------------------- closing note -- */
.notice-band {
    background: var(--smoke-two, #f3f2f8);
    border-top: 3px solid var(--site-accent, #f0401b);
    padding: 34px 0;
    text-align: center;
}

.notice-band h2 {
    margin: 0;
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.5;
    color: var(--title-color, #171b2a);
}

/* -------------------------------------------------------------- about -- */
/* stand-in for assets/img/bg/about_bg_1.png */
.about-sec5 {
    background: linear-gradient(180deg, #ffffff 0%, var(--smoke-color, #f8f8f8) 100%);
}

/* The four about-page images use .de-images / .di-small* class names that carry
   no rules in this stylesheet, so they stacked full-width and made the section
   ~2,000px tall. Laid out as a collage instead. */
.de-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.de-images img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.de-images .di-main {
    grid-column: 1 / -1;
    height: 320px;
    box-shadow: 0 0 7px 1px #ccc;
}

.de-images .di-small,
.de-images .di-small-2,
.de-images .di-small-3 {
    height: 130px;
}

@media (max-width: 575.98px) {
    .de-images .di-main { height: 220px; }
    .de-images .di-small,
    .de-images .di-small-2,
    .de-images .di-small-3 { height: 88px; }
}

/* ----------------------------------------------------------- partners -- */
.partner-tiers {
    margin-top: 34px;
}

.partner-tier {
    height: 100%;
}

.partner-tier_title {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color, #171b2a);
    margin-bottom: 12px;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-group {
    margin-top: 42px;
}

.partner-group_title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color, #171b2a);
    margin-bottom: 18px;
}

.logprtnr {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--border-color, #efefef);
    border-radius: 8px;
    transition: box-shadow .3s ease, transform .3s ease;
}

.logprtnr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(23, 27, 42, .10);
}

.logprtnr img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* ------------------------------------------------------- key speakers -- */
/* the original markup carried these class names but no rules for them */
.spek_sec {
    height: 100%;
    padding: 22px 14px 24px;
    background: #fff;
    border: 1px solid var(--border-color, #efefef);
    border-radius: 12px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.spek_sec:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(23, 27, 42, .12);
}

.spek_img {
    width: 150px;
    max-width: 70%;
    margin: 0 auto 16px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--smoke-two, #f3f2f8);
}

.spek_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}

.spek_cntnt h5 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--title-color, #171b2a);
}

.spek_cntnt p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--body-color, #74787c);
}

/* -------------------------------------------------- who should attend -- */
#whoattend .vs-video1 {
    overflow: hidden;
    border-radius: 10px;
}

#whoattend .carousel-item img {
    border-radius: 10px;
}

/* ------------------------------------------------ points of discussion -- */
/* stand-in for assets/img/bg/bg-8.png */
#pointofdiscussion {
    background: linear-gradient(180deg, var(--smoke-color, #f8f8f8) 0%, #ffffff 100%);
}

/* --------------------------------------------------------- why attend -- */
/* stand-in for assets/img/bg-meeting.jpg — the copy on top is white */
#whyattend {
    background:
        linear-gradient(115deg, rgba(23, 27, 42, .94) 0%, rgba(23, 27, 42, .78) 45%, rgba(240, 64, 27, .70) 100%),
        linear-gradient(135deg, #171b2a, #3d1508);
    background-size: cover;
}

/* event photography alongside the copy, in place of the missing backdrop */
.why-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid rgba(255, 255, 255, .16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .42);
    transition: transform .35s ease, border-color .35s ease;
}

.why-gallery img:hover {
    transform: translateY(-5px);
    border-color: var(--site-accent-2, #ff6508);
}

/* stagger the columns so the block reads less like a plain grid */
.why-gallery img:nth-child(2),
.why-gallery img:nth-child(4) {
    transform: translateY(26px);
}

.why-gallery img:nth-child(2):hover,
.why-gallery img:nth-child(4):hover {
    transform: translateY(21px);
}

@media (max-width: 991.98px) {
    .why-gallery img { height: 165px; }
}

@media (max-width: 575.98px) {
    .why-gallery { gap: 12px; }
    .why-gallery img { height: 130px; }
    .why-gallery img:nth-child(2),
    .why-gallery img:nth-child(4) { transform: translateY(16px); }
}

.why-attend-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-attend-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.6;
}

.why-attend-list li::before {
    content: "\f061";                       /* fa-arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: var(--site-accent-2, #ff6508);
}

/* ------------------------------------------------------ past partners -- */
.pastprtnr {
    height: 120px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--border-color, #efefef);
    border-radius: 8px;
}

.pastprtnr img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

#past-partners {
    background: var(--smoke-color, #f8f8f8);
}

/* keep slick tracks from collapsing before initialisation */
.vs-carousel:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.vs-carousel:not(.slick-initialized) > * {
    flex: 0 0 auto;
    width: 25%;
}

@media (max-width: 991.98px) {
    .vs-carousel:not(.slick-initialized) > * { width: 50%; }
}

/* ----------------------------------------------------------- glimpses -- */
/* stand-in for assets/img/bg/blog_bg_2.png */
#glimpses {
    background: linear-gradient(180deg, #ffffff 0%, var(--smoke-two, #f3f2f8) 100%);
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-card .project-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .4s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.06);
}

/* --------------------------------------------------------- magazine -- */
.magazine-icon {
    font-size: 82px;
    line-height: 1;
    color: var(--site-accent, #f0401b);
}

/* ---------------------------------------------------------- contact -- */
#contact {
    background: var(--smoke-color, #f8f8f8);
}

/* .contact-box is a red-to-black gradient card with white type in the template,
   so it is left alone — only the type scale and link affordance are touched. */
.contact-box_text {
    display: block;
}

.contact-box_text a {
    font-weight: 600;
    text-decoration: none;
}

.contact-box_text a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------------- directions -- */
.location-card-wrap {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(176deg, #d50606, #1e0a0a);
}

.location-card {
    padding: 32px 28px;
    color: rgba(255, 255, 255, .92);
}

.location-card .info-title {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 4px;
}

.location-card .info-text {
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
}

/* was the .home5 blue (#2a07f9) sitting on a red card */
.location-card a {
    color: #fff;
    font-weight: 600;
}

.location-card a:hover {
    color: #ffd7cc;
}

.location-card .vs-btn {
    margin-top: 18px;
}

.map-slide-wrap iframe {
    display: block;
    border-radius: 10px;
}

/* ------------------------------------------------------------ header -- */
.sticky-wrapper {
    background: aliceblue;
}

.header-logo img {
    height: 100px;
    width: auto;
}

.header-links a.header-delegate-btn {
    background: #fff;
    color: #000;
    padding: 7px 16px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
}

.header-links a.header-delegate-btn:hover {
    background: var(--site-accent, #f0401b);
    color: #fff;
}

/* menu links carry `padding: 46px 0`, which turned the CTA into a 117px-tall
   red slab with no side padding and clipped its label */
.main-menu ul li a.nav-cta {
    display: inline-block;
    padding: 11px 18px;
    margin: 0 0 0 8px;
    background: #f90707;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    border-radius: 4px;
}

.main-menu ul li a.nav-cta:hover {
    background: var(--site-accent, #f0401b);
    color: #fff;
}

/* keep the CTA on the same line as the rest of the menu */
.main-menu ul li.nav-cta-item {
    display: inline-block;
    vertical-align: middle;
}

/* ------------------------------------------------------------ footer -- */
/* stand-in for assets/img/bg/footer_bg_2.jpg */
.footer-layout5 {
    background: linear-gradient(135deg, #171b2a 0%, #24101a 60%, #3d1508 100%);
}

.footer-logo {
    background: rgba(255, 255, 255, .38);
    border-radius: 30px;
    padding: 20px;
    width: 400px;
    max-width: 90%;
}

@media (max-width: 767.98px) {
    .vs-hero-slide { min-height: 420px; }
    .project-card .project-img img { height: 220px; }
    .logprtnr { height: 92px; }
}

/* in-page anchors must clear the sticky header instead of landing under it */
section[id],
[id="top"] {
    scroll-margin-top: 110px;
}

html {
    scroll-behavior: smooth;
}

/* breathing room between the delegate button and "Follow Us:" */
.header-links-title {
    margin-left: 18px;
}
