/* CSS Variables */
:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #111111;
    --color-bg-lighter: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-text-dim: #666666;
    --color-accent: #fe084e;
    --color-accent-light: #ff2d6a;
    --color-accent-dark: #d4003f;
    --color-secondary: #00d4ff;
    --color-tertiary: #ff9500;
    --color-quaternary: #9d4edd;
    
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
    
    --border-radius: 4px;
    --max-width: 1400px;
    --section-padding: 120px;
    --nav-height: 80px;
    --hero-min-height: 500px;
}

body, html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

html, body, #main {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body, #menu, #main {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
body::-webkit-scrollbar,
#menu::-webkit-scrollbar,
#main::-webkit-scrollbar { 
    display: none;
}

body, html, img, p {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.scrollbar-track {
    background: transparent !important;
}

.fixed-not-active .scrollbar-thumb {
    background: transparent !important;
    transition: background 0.7s;
}

.fixed-not-active .scrollbar-track:hover .scrollbar-thumb {
    background: #CCB7E3 !important;
    transition: background 0.7s;
}

.scrollbar-thumb {
    top: 4px !important;
    left: -4px !important;
    border-radius: 3px !important;
    background: #333136 !important;
    transition: background 0.7s;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

nav {
    background: transparent;
    position: absolute;
    z-index: 9999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 90px;
    padding: 30px;
    color: #273b94;
    font-size: 32px;
    line-height: 32px;
    font-family: "Space Grotesk";
    text-transform: uppercase;
    border-bottom: 0px solid #273b94;
}

nav .menu {
    width: 34px;
    float: right;
    margin-top: 2px;
    z-index: 99999;
    cursor: pointer;
}

.close { 
    cursor: pointer;
    display:none;
    position: fixed;
    top: 16px;
    right: 21px;
    z-index: 99999;
    width: 52px;
}

.closemodal { 
    cursor: pointer;
    display:block;
    position: fixed; 
    top: 16px;
    right: 21px;
    z-index: 99999;
    width: 52px;
}

.fixed-not-active .fixed-menu.open {
    display: none !important;
}

/* Padding */
.padding-all {
    padding: 30px;
}

.padding-left {
    padding-left: 30px;
}

.padding-right {
    padding-right: 30px;
}

.padding-right-not-responsive {
    padding-right: 30px;
}

.portrait .padding-right-not-responsive {
    padding-right: 0px;
}

.padding-top {
    padding-top: 30px;
}

.padding-top-not-responsive {
    padding-top: 30px;
}

.padding-bottom {
    padding-bottom: 30px;
}

.padding-bottom-not-responsive {
    padding-bottom: 30px;
}

.padding-all-but-left {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
}

.padding-all-but-right {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
}

.padding-all-but-top {
    padding-left: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
}

.padding-right-90 {
    padding-right: 90px;
}

.portrait .padding-right-90 {
    padding-right: 0px;
}

.padding-all-90 {
    padding-right: 90px;
    padding-left: 90px;
}

.portrait .padding-all-90 {
    padding-right: 0px;
    padding-left: 0px;
}

.portrait .padding-left,
.portrait .padding-right,
.portrait .padding-top,
.portrait .padding-bottom,
.portrait .padding-all,
.portrait .padding-all-but-left,
.portrait .padding-all-but-right {
    padding: 30px;
}

.portrait .padding-inside-block {
    padding-left: 0px;
    padding-right: 0px;
}

/* Containers */

.inline-block {
    display: inline-block !important;
    width: auto !important;
}

header {
    margin-top: 0px;
    background: black;
}

header img.portrait-hide, header img.portrait-show {
    margin-top: 60px;
    z-index: 20;
}

.ssa {    width: 108px;
    position: absolute;
    top: 23px;
    left: 30px;}

.header-img {
    position: relative;
    background: url(img/hero.png);
    width: 100%;
    background-size: cover;
    padding-bottom: 64.85%;
    z-index: 10;
}

.portrait .header-img {
    background: url(img/hero.png);
    width: 100%;
    background-size: cover;
    padding-bottom: 124%;
}

.portrait .portrait-hide {
    display: none;
}

.portrait-show {
    display: none;
}

.portrait .portrait-show {
    display: block;
}

.portrait .portrait-show h5 {
    display: none;
}

.portrait .portrait-show h6 {
    display: none;
}

.portrait .spacer {
    display: none;
}

.portrait .portrait-right {
    float: right;
}

.container, section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.container::after {
  content: "";
  clear: both;
  display: table;
}

section::after {
  content: "";
  clear: both;
  display: table;
}

.w33 {
    width: 33.33%;
    float: left;
}

.w50 {
    width: 50%;
    float: left;
}

.w66 {
    width: 66.66%;
    float: left;
}

.portrait .w33,
.portrait .w50, 
.portrait .w66 {
    width: 100%;
}

.columns {
    columns: 3;
    padding-right: 52px;
    padding-top: 12px;
    column-width: 300px
}

.column-item {
    display: block;
    padding-top: 9px;
    page-break-inside: avoid;
    break-inside: avoid-column; 
    display:table;  
}

.portrait .column-item.padding-right {
    padding: 0px;
    padding-bottom: 10px;
}

.column-group {
    display: block;
    page-break-inside: avoid;
    break-inside: avoid-column; 
    display:table;  
}

.bg-video {
    pointer-events: none;
    min-width: 100%;
    min-height: 100%;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.scrim {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 2;
    background: black;
    opacity: 0.575;
}

.zindex {
    z-index: 3;
}

.dead-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.center-center {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 50%;
    padding-top: 30px;
    padding-bottom: 30px;
    transform: translate(0,-50%);
}

.portrait .center-center {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    padding: 30px;
    transform: none;
}

.portrait .dead-center { 
    padding-top: 28px;
} 

.right {
    float: right;
}

.bottom {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.bottom-left {
    padding: 20px;
    background: #26FF00;
    color: #3A281C;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 24% !important;
}

.show-850 {
    display: none;
    width: 100% !important;
    float: right;
    padding: 20px;
    background: #0DFF00;
    color: #3A281C;
}

@media only screen and (min-width: 850px) {
    .bottom {
        background: transparent !important;
    }
}

@media only screen and (max-width: 850px) {
  .bottom {
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    width: calc(100%) !important;
    float: left;
    padding: 30px !important;
  }
  .bottom-left {
    display: none !important;
  }
  .show-850 {
    display:block;
  }
}

.bottom.bottom-open {
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    width: calc(100%) !important;
    float: left;
    padding: 30px !important;
  }

.bg-norepeat {
    background-size: 100% !important; 
    background-repeat: no-repeat !important;
}

.slideshow {
    position: relative;
    width: 100%;
    padding-top: 67%;
}

@media only screen and (max-width: 700px) {
  #events-slideshow .slideshow {
    padding-top: 92%;
  }
}

@media only screen and (max-width: 500px) {
  #events-slideshow .slideshow {
    padding-top: 122%;
  }
}

.slideshow-contents { 
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

.slideshow .slide {
    display: block;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 2;
    bottom: 0px;
    background-size: cover !important;
    background-position: center center !important;
}

.slideshow .slideshow-scrim {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0px;
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: 3;
}

.slideshow .slide-text {
    width: calc(100% - 60px);
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.additional-scrim {
    display: inline-block;
    position: absolute;
    width: 100% !important;
    height: auto !important;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 3;
}

.absolute {
    width: 101%;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -2px;
}

.event {
    margin-top: -1px;
}

/* Type */

.center {
    text-align:center;
}

a:hover {
    border-bottom: 2px solid;
}

.no-underline {
    border: 0px !important;
}

a.underline {
    border-bottom: 2px solid;
}

sup {
    line-height: 0;
    font-size: 11px;
    vertical-align: super;
}

small {
    display: inline-block;
    font-size: 11px;
    line-height: 13px;
}

ol {
    margin: 0px;
    padding: 0px;
    padding-left: 12px;
}

h2 {
    margin: 0px;
    font-family: "Space Grotesk";
    text-transform: uppercase;
    font-size: 32px;
    line-height: 50px;
    width: 100%;
}

h2.case {
    text-transform: none;
    line-height: 34px;
}

@media only screen and (max-width: 550px) {
  h2 {
    font-size: 24px;
    line-height: 36px;
  }
}

.display h2 {
    line-height: 1;
    margin: 0px;
    margin-top:8px;
}

h2.pad-h2 {
    margin-bottom: 0px;
}

.h2-30 {
    line-height: 30px;
}

.portrait h2.pad-h2 {
    margin-bottom: 4px;
}
 
h5 {
    margin: 0px;
    font-family: "Space Grotesk";
    text-transform: uppercase;
    font-size: 32px;
    line-height: 30px;
    width: 100%; 
}

h6 {
    margin: 0px;
    font-family: "Space Grotesk";
    text-transform: uppercase;
    font-size: 32px;
    line-height: 50px;
    width: 100%;
}

h3 {
    margin: 0px;
    font-family: "Space Grotesk";
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
}

@media only screen and (max-width: 550px) {
  h3 {
    font-size: 16px;
    line-height: 22px;
  }
}

.halfspace {
    display: block;
    height: 10px;
    overflow: hidden; 
}

.event .w50 {
    font-size: 1.5vw;
    line-height: 1.9vw;
}

.portrait .event .w50 {
    font-size: inherit;
    line-height: inherit;
}

.event .w50 h2 {
    line-height: 3.1vw;
    font-size: 2.8vw;
    margin-bottom: 4px;
}

.portrait .event .w50 h2 { 
    line-height: 32px;
    font-size: 32px;
}

.portrait .event-description {
    margin-top: -1px;
}

@media screen and (min-width: 1250px) {
  .event .w50 {
        font-size: inherit;
        line-height: inherit;
    }
    .event .w50 h2 { 
        line-height: 32px;
        font-size: 32px;
    }
}

.event-month {
    position: absolute;
    bottom: 22px;
    right: 30px;
    display: inline-block;
    width: auto !important;
}

.event video {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
}

.ecto {
    font-family: Ectogasm;
    font-size: 26px;
}

.fixed-menu {
    cursor: pointer;
    display:none;
    position: fixed;
    top: 16px;
    right: 21px;
    z-index: 99999;
    width: 52px;
}

#menu {
    display: none;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #FE084E;
    padding: 30px;
    z-index: 99998;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ecto.mobile {
    display:none !important;
}

@media screen and (max-width: 850px) {
    .ecto.right.inline-block {
        display:none !important;
    }
    .ecto.mobile {
        display:block !important;
        width: 100% !important;
        margin-top: 26px;
        text-align: right;
    }
}

@media screen and (max-width: 575px) {
    .ecto.mobile {
        text-align: left;
    }
}

#menu .button {
    border-color: white !important;
    background: white !important;
    color: #FE084E !important;
}

#menu .columns {
    column-width: 200px
}

#menu .column-item {
    display: block;
    height: 150px;
}

@media screen and (max-width: 530px) {
    #menu .column-item {
        height: auto;
    }
}


#menu ::placeholder {
  color: white;
  opacity: 1; 
}
#menu :-ms-input-placeholder {
  color: white;
}
#menu ::-ms-input-placeholder {
  color: white;
}

.disabled {
    pointer-events: none;
    opacity: 0.6;
}

.the-modal {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #273b94;
    z-index: 99999;
    color: white;
}

.modal-content {
    display: none !important;
}

.modal-contents {
    padding: 30px;
}

.modal-scroll {
    width: 100%;
    height: 100%;
    overflow-x: hidden; 
}

.the-modal .columns {
    column-width: 250px;
}

.the-modal .button {
    color: #273b94 !important;
    background: white !important;
    border-color: white !important;
}

.c-logo-sidebar .st0, .ohplogo .st0, .roaclogo .st0, .roaclogo path {fill:#f1541d !important;} 
.ohplogo path{fill:#f1541d !important;}
.cc       {position: relative;top: 2px;padding:1px; }

.the-logo {
    font-family: Inter;
    padding: 12px 0px 8px 0px;
    border: 5px solid #222;
    color: #222;
    font-size: 24px;
    letter-spacing: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.5s;
    width: 216px;
    overflow: hidden;
    text-align: center;

}


.card a {
    border-bottom: 0px !important;
}
.followButton,.btn-info {
    word-break: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
    border: none;
    box-shadow: none;
    text-shadow: none;
    border-radius: 3px;
    outline: 0!important;
    font-weight: 600;
    padding: 4px 8px;
    font-size: 12px;
    background: #31414a;
    color: #fff!important;
    float: left;
    margin: 0 8px 4px 0;
    white-space: normal;
    hyphens: none;
}



.card-footer {
    font-size: 14px;
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    color: #31414a;
    font-family: 'Open Sans',sans-serif;
    box-sizing: border-box;
    padding: 0 16px 20px;}

    .card {
   font-size: 14px;
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    color: #31414a;
    font-family: 'Open Sans',sans-serif;
    box-sizing: border-box;
    min-height: 1px;
    float: left;
    position: inherit;
    display: flex;
    flex-direction: row;
    width: calc(100% - 30px) !important;
}

.card-panel {
    font-size: 14px;
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    color: #31414a;
    font-family: 'Open Sans',sans-serif;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    border-radius: 4px;
    background-color: #fff;
}

.card-bg-image {
    font-size: 14px;
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    color: #31414a;
    font-family: 'Open Sans',sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 86px;
    background-color: #cfcfcf;
    background-size: cover;
    background-position: center;
    border-radius: 4px 4px 0 0;
}

.card-header {
    font-size: 14px;
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    color: #31414a;
    font-family: 'Open Sans',sans-serif;
    box-sizing: border-box;
    position: absolute;
    padding: 16px;
    display: table;
    width: 100%;
}

.card-image-link {
    font-size: 14px;
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    font-family: 'Open Sans',sans-serif;
    box-sizing: border-box;
    background-color: transparent;
    color: #242424;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    border: none;
}
.space-acronym {
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    font-family: 'Open Sans',sans-serif;
    box-sizing: border-box;
    display: none !important;
    border-radius: 50%!important;
    color: #fff;
    text-align: center;
    background-color: #00ff2b;
    width: 94px;
    height: 94px;
    font-size: 41.36px;
    padding: 16.92px 0;
}
.profile-user-photo {
    font-size: 14px;
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    font-family: 'Open Sans',sans-serif;
    color: #242424;
    box-sizing: border-box;
    border: 0;
    vertical-align: middle;
    image-orientation: from-image;
    border-radius: 50%;
    width: 94px;
    height: 94px;
}
.card-body {
    font-size: 14px;
    line-height: 1.42857143;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    color: #31414a;
    font-family: 'Open Sans',sans-serif;
    box-sizing: border-box;
    flex-grow: 1;
    padding: 44px 16px 24px;
    overflow: auto;
}

#credit {
    transform: rotate(90deg) translate(50%, -850%);
    position: absolute;
    top: 37px;
    right: 0px;
    font-size: 7px;
    color: var(--color-text-muted);
}


/* ========================================
   ANIMATED BACKGROUND BLOBS
   ======================================== */

.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64.8vw;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    background: #0a0a0a;
}


.portrait .blob-container {
    height: 123.8vw;
}



.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--color-accent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
    bottom: 10%;
    left: -150px;
    animation-delay: -5s;
    opacity: 0.25;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--color-quaternary);
    top: 40%;
    right: 10%;
    animation-delay: -10s;
    opacity: 0.2;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: var(--color-tertiary);
    bottom: -100px;
    right: 20%;
    animation-delay: -15s;
    opacity: 0.15;
}

.blob-5 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    top: 60%;
    left: 20%;
    animation-delay: -7s;
    opacity: 0.1;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

 .blob {
        filter: blur(40px);
        opacity: 0.2;
    }
 
 .hero-overlay {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.1) 50%, rgba(10, 10, 10, 0.55) 100%);
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 12px;
    position: absolute;
    top: 13px;
    right: 89px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 12px 24px;
    border-radius: 9px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(0px);
    box-shadow: 0 10px 30px rgba(254, 8, 78, 0.3);
    border: 0px !important;
}



.nav-cta-menu {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FE084E;
    background: #fff;
    padding: 12px 24px;
    border-radius: 9px;
    text-decoration: none;
    transition: all var(--transition-fast);
    width: 209px !important;
}

.nav-cta-menu:hover {
    transform: translateY(0px);
    box-shadow: 0 10px 30px rgba(254, 8, 78, 0.3);
    border: 0px !important;
}

@media only screen and (max-width: 890px) {
    .nav-links {
        top: 24px;
        width: 90%;
        gap:15px;
    }
    .nav-link {
        display:none;
    }
    .nav-cta {
        padding: 2px 10px 0px 10px;
    }
}

.section-label {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.date-event {
    font-size: 16px;
    color: var(--color-text);
    font-family: var(--font-body) !important;
    line-height: 1.6;
    font-weight: 400 !important;
    text-transform: none !important;
}

.pricing-late{
    font-size: 14px;
    color: var(--color-text-muted);
    font-family: var(--font-body) !important;
    line-height: 1.6;
    font-weight: 400 !important;
    text-transform: none !important;
}


.about-text {
    font-size: 19px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 40px;
}


.about-quote {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    color: var(--color-accent);
    line-height: 1.4;
    padding-left: 30px;
    border-left: 3px solid var(--color-accent);
    margin-bottom: 50px;
}

.about-quote-yellow {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #f2fe34;
    line-height: 1.1;
    padding-left: 30px;
    border-left: 3px solid #f2fe34;
    margin-bottom: 50px;
    margin-left:-0px !important;
}

.about-quote-white {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    padding-left: 30px;
    border-left: 3px solid #fff;
    margin-bottom: 50px;
    margin-left:-0px !important;
}




.about-points {
    list-style: none;
}

.about-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
}

.about-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}


/* ========================================
   THEMES SECTION
   ======================================== */

.section-themes {
    background: #0A0A0A;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.theme-card {
    background: var(--color-bg-lighter);
    background: #0A0A0A;
    padding: 50px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-medium);
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0);
    background: var(--color-bg-lighter);
}

.theme-card:hover::before {
    transform: scaleY(1);
}

.theme-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 200;
    color: #f2fe34;
    margin-bottom: 20px; 
}

.theme-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-transform: none !important;
}

.theme-content {
        font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.themes-head {
    margin-left:40px;
    color: #f2fe34;
}

.portrait-committee {
    padding-left: 70px !important; 
}



/* ========================================
   VENUE SECTION
   ======================================== */

.section-venue {
    background: var(--color-bg);
}

.venue-block {
    margin-bottom: 100px;
}

.venue-block:last-child {
    margin-bottom: 0;
}

.venue-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.venue-name {
    font-family: var(--font-display) !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: var(--color-text) !important;
    margin-bottom: 12px !important;
    text-transform: none !important;
    line-height:1.2;
}

.venue-address {
    font-size: 16px;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.venue-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.venue-detail h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: 12px;
}

.venue-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Hotels */
.hotels-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hotels-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hotel-card {
    background: var(--color-bg-lighter);
    padding: 30px;
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    transition: transform var(--transition-fast);
}

.hotel-card:hover {
    transform: translateX(10px);
}

.hotel-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.hotel-address {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.hotel-phone {
    font-size: 14px;
    color: var(--color-text-dim);
}

.hotel-rate {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    text-align: right;
}

.hotel-code {
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: right;
    margin-top: 4px;
}

.hotel-note {
    grid-column: 1 / -1;
    font-size: 14px;
    color: var(--color-text-dim);
    font-style: italic;
}


/* ========================================
   REGISTRATION SECTION
   ======================================== */

.section-register {
    background: var(--color-bg-light);
}

.register-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 50px;
    max-width: 800px;
}

/* Pricing Tables */
.pricing-table,
.membership-table {
    background: var(--color-bg-lighter);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
}

.pricing-header,
.membership-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px 30px;
    background: var(--color-bg);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.pricing-body,
.membership-body {
    padding: 10px 0;
}

.pricing-row,
.membership-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px 30px;
    border-bottom: 1px solid var(--color-bg);
}

.pricing-row:last-child,
.membership-row:last-child {
    border-bottom: none;
}

.pricing-category,
.membership-category {
    font-size: 15px;
    color: var(--color-text);
}

.pricing-early,
.membership-cad {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: #f97751;
}

.pricing-late,
.membership-usd {
    font-size: 14px;
    color: var(--color-text-muted);
}

.register-note {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 60px;
}

.membership-section {
    margin-top: 60px;
}

.membership-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
}


/* Dates Section */
.dates-section {
    background: #F2FE34;
    padding: 50px;
    border-radius: 0px;
}
   
.dates-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #005BC3; 
    margin-bottom: 30px;   
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: none !important;
}

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

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #005BC3;
}

.date-item:last-child {
    border-bottom: none;
}

.date-event {
    font-size: 16px;
    color: #005BC3;
}


#about .date-event {
    font-size: 16px;
    color: white;
}

.date-value {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: #005BC3;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }

    .hero-credit {
        left: 12px;
        right: 12px;
        align-items: center;
        text-align: center;
        font-size: 9px;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .theme-card {
        padding: 30px;
    }
    
    .theme-title {
        font-size: 32px;
    }
    
    .pricing-header,
    .pricing-row,
    .membership-header,
    .membership-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .pricing-header span:nth-child(2),
    .pricing-header span:nth-child(3),
    .membership-header span:nth-child(2),
    .membership-header span:nth-child(3) {
        display: none;
    }
    
    .pricing-row::before,
    .membership-row::before {
        content: attr(data-label);
        font-size: 12px;
        color: var(--color-text-muted);
        text-transform: uppercase;
    }
    
    .dates-section {
        padding: 30px;
    }
    
    .date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .hotel-card {
        grid-template-columns: 1fr;
    }
    
    .hotel-rate,
    .hotel-code {
        text-align: left;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blob {
        filter: blur(40px);
        opacity: 0.2;
    }
}


@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
    
    .venue-info {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-location-vertical,
    .hero-dates {
        display: none;
    }

    .nav-links {
        gap: 18px;
    }
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.big-icon {
    font-size:140px !important;
}

.portrait .big-icon {
    display:block;position:absolute;top:30px;right:30px;
}

.white {
    color: white !important;
}



.cta-container {
    text-align: center;
    margin-top: 0px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-bg);
    background: #f97751; 
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.cta-button:hover {
    background: #f97751;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 119, 81, 0.3);
}

.cta-button svg {
    transition: transform var(--transition-fast);
}

.cta-button:hover svg {
    transform: translate(4px, -4px);
}


#venue .section-label,.venue-address,.hotel-rate {
    color: #ffae2d !important;
}




  /* --- section spacing (no background set; it will inherit your About/Themes bg) --- */
  .make-media-kit{
    padding: clamp(18px, 3.5vw, 40px) 0;
    background: #0A0A0A;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top:-3px !important;
  }

  .make-media-kit a {border: 0px !important;}
  .make-media-kit__inner{
    width: 100%
    margin: 0 auto;
    display: grid;
    gap: 14px;
  }

  /* --- thumbnails --- */
  .make-media-kit__grid{
    width:80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .make-media-kit__thumb{
    display: block;
    border-radius: 0px;
    
    text-decoration: none;
    transform: translateZ(0);
  }
  .make-media-kit__thumb img{
    width: 100%;
    height: auto;
    
    display: block;
    transition: transform 220ms ease;
  }
  @media (hover:hover){
    .make-media-kit__thumb:hover img{ transform: scale(1.03); }
  }

  /* --- CTA button (scoped, but tries to “feel” like your site buttons) --- */
  .make-media-kit__cta{
    display: flex;
    justify-content: flex-start;
  }
  .make-media-kit__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 18px;
    border-radius: 999px;

    font: inherit;
    font-weight: 650;
    text-decoration: none;

    border: 1px solid currentColor;
    background: white;
    color: #0A0A0A;

    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  }
  @media (hover:hover){
    .make-media-kit__btn:hover{
      background: currentColor;
      color: white;
      transform: translateY(-1px);
    }
  }

  /* --- responsive columns --- */
  @media (max-width: 900px){
    .make-media-kit__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 520px){
    .make-media-kit__grid{ grid-template-columns: 1fr; }
    .make-media-kit__cta{ justify-content: center; }
    .make-media-kit__btn{ width: 100%; }
  }

.make-media-kit__cta{
  display: flex;
  justify-content: center;
  margin-top:20px;
}
  .make-media-kit__cta .nav-cta {
    background: #fff !important;
    box-shadow: none !important;
    display: inline-block;
  }


footer .button {
    color: #0A0A0A !important;   
}

