/* Conference Page Styles */

/* Conference Header Override - Black background with white text */
.header {
    background-color: black !important;
    border-bottom: 1px solid #333 !important;
}

.header .nav-link {
    color: white !important;
}

/* .header .nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
} */

/* .header .nav-link.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
} */

.header .contact-btn {
    background-color: white !important;
    color: black !important;
}

.header .contact-btn:hover {
    background-color: #f0f0f0 !important;
    color: black !important;
}

.header .hamburger_line {
    background-color: white !important;
}

.header .mobile_nav_link {
    color: white !important;
    border-bottom: 1px solid #333 !important;
}

.header .mobile_nav_link:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
}

.header .mobile_contact_btn {
    background-color: white !important;
    color: black !important;
}

.header .mobile_contact_btn:hover {
    background-color: #f0f0f0 !important;
    color: black !important;
}

.header .mobile_nav {
    background-color: black !important;
    border-bottom: 1px solid #333 !important;
}

body {
    background-color: black;
}
.conference_banner {
    height: 40px;
    position: relative;
    background-color: black;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner_scroll {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.banner_text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    will-change: transform;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner_text_1 {
    animation: scroll-banner-1 60s linear infinite;
}

.banner_text_2 {
    animation: scroll-banner-2 60s linear infinite;
}

@keyframes scroll-banner-1 {
    0% {
        transform: translateY(-50%) translateX(0%);
    }
    100% {
        transform: translateY(-50%) translateX(-100%);
    }
}

@keyframes scroll-banner-2 {
    0% {
        transform: translateY(-50%) translateX(100%);
    }
    100% {
        transform: translateY(-50%) translateX(0%);
    }
}

.conference_hero {
    height: calc(100vh - 109px);
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    background: url('https://res.cloudinary.com/dhqqkezip/image/upload/v1759962972/Conference_hero_a9msu4.png') no-repeat center center/cover;
    padding: 3rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background-size: 110%;
    animation: backgroundZoomOut 0.5s ease-out forwards;
}

@keyframes backgroundZoomOut {
    0% {
        background-size: 110%;
    }
    100% {
        background-size: cover;
    }
}

.conference_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    z-index: 1;
    animation: overlayFadeIn 0.5s ease-out forwards;
}

@keyframes overlayFadeIn {
    0% {
        background-color: rgba(0, 0, 0, 1);
    }
    100% {
        background-color: rgba(0, 0, 0, 0.5);
    }
}

/* Animated gradient for hero background */
@keyframes heroGradientShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}


.conference_hero h1 {
    color: white;
}

/* Initial state for hero elements - hidden for page load animation */
.hero_top,
.hero_middle,
.hero_bottom {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

/* Page load animation states */
.conference_hero.loaded .hero_top {
    animation: slideInFromTop 1s ease-out 0.2s forwards;
}

.conference_hero.loaded .hero_middle {
    animation: scaleInCenter 1.2s ease-out 0.6s forwards;
}

.conference_hero.loaded .hero_bottom {
    animation: slideInFromBottom 1s ease-out 1s forwards;
}

/* Keyframe animations for hero elements */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInCenter {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_top {
    display: flex;
    justify-content: space-between;
    align-items: top;
    position: relative;
    z-index: 2;
}

.buy_tickets {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: 50px;
    width: 200px;
    border: 2px solid transparent;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Ticket icon using CSS */
.buy_tickets::before {
    content: '';
    width: 16px;
    height: 12px;
    background: currentColor;
    border-radius: 2px;
    position: relative;
    transition: all 0.4s ease;
    mask: 
        radial-gradient(circle at 0 50%, transparent 3px, black 3px),
        radial-gradient(circle at 100% 50%, transparent 3px, black 3px);
    mask-composite: intersect;
    -webkit-mask: 
        radial-gradient(circle at 0 50%, transparent 3px, black 3px),
        radial-gradient(circle at 100% 50%, transparent 3px, black 3px);
    -webkit-mask-composite: source-in;
}

/* Shimmer effect */
.buy_tickets::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.buy_tickets:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background-color: black;
    color: rgb(255, 255, 255);
    border-color: rgba(254, 210, 77, 0.521);
}

.buy_tickets:hover::after {
    left: 100%;
}

.buy_tickets:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Button text */
.buy_tickets span {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hero_top img {
    width: 6rem;
    height: 6rem;
    margin-top: 5px;
    object-fit: contain;
}

.hero_middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1140px;
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.hero_middle h3:first-child {
    font-size: 2.3rem;
    font-weight: 500;
    color: black;
    margin-right: auto;
    margin-bottom: 0;
}

/* .hero_middle h3:last-child {
    font-size: 2.3rem;
    font-weight: 500;
    color: black;
    margin-left: auto;
    margin-right: 0.7rem;
} */

.hero_middle h1 {
    font-size: 10rem;
    color: rgb(255, 255, 255);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 10px;
    font-style: italic;
    mix-blend-mode: overlay;
}

.hero_middle span {
    font-style: normal;
}

/* Hero word animations */
.hero-word {
    display: inline-block;
    opacity: 0;
    will-change: transform, opacity;
}

/* First word - "STAY" slides in from left with linear tectonic movement */
.hero-word-1 {
    transform: translateX(-100vw);
}

.hero-word-1.animate-in {
    animation: slideInFromLeft 1.6s linear forwards;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Second word - "SENSITIZED" slides in from right with linear tectonic movement */
.hero-word-2 {
    transform: translateX(100vw);
}

.hero-word-2.animate-in {
    animation: slideInFromRight 1.6s linear forwards;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Third word - "CONFERENCE" fades in */
.hero-word-3 {
    transform: scale(0.8);
}

.hero-word-3.animate-in {
    animation: fadeInScale 1.5s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* @media (max-width: 1212px) {
    .hero_middle h3:last-child {
        margin-right: auto;
        margin-left: 0.5rem;
    }
} */

.hero_bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
    z-index: 2;
}

.hero_bottom h1 {
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 3px;
}

.pattern {
    height: 50px;
    margin-bottom: 1.3rem;}





.an_event_for {
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5em;
    z-index: 1;
}

.an_event_for h1 {
    color: white;
    font-weight: 400;
    font-size: 6rem;
}

.an_event_for p {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    margin-top: 3rem;
}


.images_container {
    position: relative;
    height: 230px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.images_container img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 25px;
    position: absolute;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform-origin: center bottom;
    z-index: 100;
}

/* Initial state - stacked deck above viewport */
.images_container.deck-initial img {
    transform: translateY(-150vh) translateX(0) rotate(-8deg);
}

.images_container.deck-initial img:nth-child(1) { z-index: 107; transform: translateY(-150vh) translateX(-3px) rotate(-8deg); }
.images_container.deck-initial img:nth-child(2) { z-index: 106; transform: translateY(-150vh) translateX(-2px) rotate(-8deg); }
.images_container.deck-initial img:nth-child(3) { z-index: 105; transform: translateY(-150vh) translateX(-1px) rotate(-8deg); }
.images_container.deck-initial img:nth-child(4) { z-index: 104; transform: translateY(-150vh) translateX(0px) rotate(-8deg); }
.images_container.deck-initial img:nth-child(5) { z-index: 103; transform: translateY(-150vh) translateX(1px) rotate(-8deg); }
.images_container.deck-initial img:nth-child(6) { z-index: 102; transform: translateY(-150vh) translateX(2px) rotate(-8deg); }
.images_container.deck-initial img:nth-child(7) { z-index: 101; transform: translateY(-150vh) translateX(3px) rotate(-8deg); }

/* Dropped state - stacked deck in position */
.images_container.deck-dropped img {
    transform: translateY(0) translateX(0) rotate(-8deg);
}

.images_container.deck-dropped img:nth-child(1) { z-index: 107; transform: translateY(0) translateX(-3px) rotate(-8deg); }
.images_container.deck-dropped img:nth-child(2) { z-index: 106; transform: translateY(0) translateX(-2px) rotate(-8deg); }
.images_container.deck-dropped img:nth-child(3) { z-index: 105; transform: translateY(0) translateX(-1px) rotate(-8deg); }
.images_container.deck-dropped img:nth-child(4) { z-index: 104; transform: translateY(0) translateX(0px) rotate(-8deg); }
.images_container.deck-dropped img:nth-child(5) { z-index: 103; transform: translateY(0) translateX(1px) rotate(-8deg); }
.images_container.deck-dropped img:nth-child(6) { z-index: 102; transform: translateY(0) translateX(2px) rotate(-8deg); }
.images_container.deck-dropped img:nth-child(7) { z-index: 101; transform: translateY(0) translateX(3px) rotate(-8deg); }

/* Final expanded state - arch formation with subtle overlap and bottom-to-top effect */
.images_container.deck-expanded img {
    transform: translateY(0);
}

.images_container.deck-expanded img:nth-child(1) { 
    z-index: 101; 
    transform: translateY(40px) translateX(-300px) rotate(-15deg); 
}
.images_container.deck-expanded img:nth-child(2) { 
    z-index: 102; 
    transform: translateY(20px) translateX(-200px) rotate(-10deg); 
}
.images_container.deck-expanded img:nth-child(3) { 
    z-index: 103; 
    transform: translateY(5px) translateX(-100px) rotate(-5deg); 
}
.images_container.deck-expanded img:nth-child(4) { 
    z-index: 104; 
    transform: translateY(0px) translateX(0px) rotate(0deg); 
}
.images_container.deck-expanded img:nth-child(5) { 
    z-index: 105; 
    transform: translateY(5px) translateX(100px) rotate(5deg); 
}
.images_container.deck-expanded img:nth-child(6) { 
    z-index: 106; 
    transform: translateY(20px) translateX(200px) rotate(10deg); 
}
.images_container.deck-expanded img:nth-child(7) { 
    z-index: 107; 
    transform: translateY(40px) translateX(300px) rotate(15deg); 
}


.conference_about {
    height: auto;
    display: grid;
    grid-template-rows: auto auto auto;
    background-color: black;
    padding: 3rem 3rem 10rem 3rem;
    gap: 3rem;
    z-index: 200;
}

.about_title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.conference_about h3 {
    font-size: 1.5rem;
    color: black;
    font-weight: 400;
    background-color: #FED14D;
    padding: 0 1rem 0.2rem 1rem;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
}

.conference_about h1 {
    font-size: 6rem;
    color: white;
    font-weight: 400;
    justify-self: left;
    line-height: 1;
}

.conference_about p {
    font-size: 2.5rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    justify-self: right;
    width: 40ch;
    line-height: normal;
}

.about-image-wrapper {
    margin-top: 2.5rem;
    width: 100%;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    border-radius: 0;
    transform: translateX(0);
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.about-image-wrapper.animate-in::after {
    transform: translateX(100%);
}


.the_pros_section {
    height: auto;
    min-height: 100vh;
    display: grid;
    justify-items: center;
    grid-template-rows: auto auto;
    background-color: black;
    padding: 10rem 3rem 3rem 3rem;
    gap: 3rem;
    z-index: 250;
}

.pros_title {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pros_title h3 {
    font-size: 1.5rem;
    color: black;
    font-weight: 400;
    background-color: #FED14D;
    padding: 0 1rem 0.2rem 1rem;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
    margin-bottom: 1.8rem;
}

.pros_title h1 {
    font-size: 6rem;
    color: white;
    font-weight: 400;
    justify-self: left;
    line-height: 1;
    margin-bottom: 2.5rem;
}

.pros_title p {
    font-size: 1.5rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    justify-self: right;
    width: 40ch;
    line-height: normal;
}

.pros_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem 2rem;
    row-gap: 10rem;
}

.pro {
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    transition: opacity 1.5s ease;
    cursor: pointer;
}

.pro h3 {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    margin: 1rem auto 0 0;
}

.pro p {
    font-size: 1.5rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    margin-right: auto;
}

.img-wrapper {
    border-radius: 25px;
}

.pro img {
    width: 100%;
    height: 100%;
    aspect-ratio: 2/2.7;
    object-fit: cover;
    border-radius: 25px;
}

/* .pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 2/2.7;
    background-color: #FED14D;
    opacity: 0.3;
    border-radius: 25px;
    pointer-events: none;
    z-index: 1;
} */

.img-wrapper {
    overflow: hidden;
}

.pro img {
    transition: transform 0.8s ease;
}

.pro img:hover {
    transform: scale(1.15);
}

.pro:nth-child(3n+2) {
    transform: translateY(150px);
}

.pro.animate-in {
    opacity: 1;
}

/* Speaker Modal Styles */
.speaker-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speaker-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(254, 209, 77, 0.1),
        inset 0 0 30px rgba(254, 209, 77, 0.02);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.speaker-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    /* background-color: rgba(254, 209, 77, 0.2); */
    color: #FED14D;
    /* transform: rotate(90deg); */
}



.modal-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.modal-profile-img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.modal-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-title-section {
    flex: 1;
}

.modal-title-section h2 {
    font-size: 2rem;
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-title-section p {
    font-size: 1.3rem;
    color: #FED14D;
    font-weight: 400;
    margin: 0;
}

.modal-bio {
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.modal-bio p {
    font-size: 1.3rem;
    color: rgb(200, 200, 200);
    line-height: 1.7;
    margin: 0;
}

.modal-social {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    display: none;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(254, 209, 77, 0.15) 0%, rgba(254, 209, 77, 0.05) 100%);
    border: 1px solid rgba(254, 209, 77, 0.3);
    color: #FED14D;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #FED14D;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 209, 77, 0.4);
}

.social-link:focus {
    outline: 2px solid #FED14D;
    outline-offset: 2px;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Modal Scrollbar Styling */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(254, 209, 77, 0.5);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(254, 209, 77, 0.7);
}

/* Modal Responsive - Tablet */
@media (max-width: 768px) {
    .modal-content {
        padding: 2.5rem 2rem;
        max-width: 90%;
        max-height: 90vh;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }

    .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-right: 0;
    }

    .modal-profile-img {
        width: 100px;
        height: 100px;
    }

    .modal-title-section h2 {
        font-size: 1.8rem;
    }

    .modal-title-section p {
        font-size: 1.2rem;
    }

    .modal-bio p {
        font-size: 1.2rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Modal Responsive - Mobile */
@media (max-width: 480px) {
    .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        max-height: 95vh;
    }

    .modal-close {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 1.8rem;
        width: 32px;
        height: 32px;
    }

    .modal-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .modal-profile-img {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }

    .modal-title-section h2 {
        font-size: 1.5rem;
    }

    .modal-title-section p {
        font-size: 1.1rem;
    }

    .modal-bio {
        margin-bottom: 1.5rem;
    }

    .modal-bio p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .modal-social {
        gap: 1rem;
        padding-top: 1rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Accessibility - Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .speaker-modal,
    .modal-content,
    .modal-close,
    .social-link {
        transition: none !important;
    }

    .speaker-modal.active .modal-content {
        transform: scale(1);
    }

    .modal-close:hover {
        transform: none;
    }

    .social-link:hover {
        transform: none;
    }
}


/* Core Outcomes Section */
.core_outcomes {
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 10rem 3rem;
    gap: 5rem;
    z-index: 240;
}

.outcomes_header {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.outcomes_header h3 {
    font-size: 1.5rem;
    color: black;
    font-weight: 400;
    background-color: #FED14D;
    padding: 0 1rem 0.2rem 1rem;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
}

.outcomes_header h1 {
    font-size: 6rem;
    color: white;
    font-weight: 400;
    line-height: 1.1;
    max-width: 20ch;
}

.outcomes_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
}

.outcome_card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Animated gradient overlay */
.outcome_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(254, 209, 77, 0.06) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

/* Top accent line */
.outcome_card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(254, 209, 77, 0.7) 0%, rgba(254, 209, 77, 0.3) 100%);
    transition: width 0.5s ease;
    border-radius: 20px 20px 0 0;
}

.outcome_card_title {
    display: flex;
    position: relative;
    z-index: 1;
}

.outcome_card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.outcome_card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(254, 209, 77, 0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(254, 209, 77, 0.15),
        inset 0 0 30px rgba(254, 209, 77, 0.03);
}

.outcome_card:hover::before {
    opacity: 1;
    top: -25%;
    left: -25%;
}

.outcome_card:hover::after {
    width: 100%;
}

.outcome_card h2 {
    font-size: 2rem;
    color: white;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.outcome_card:hover h2 {
    color: rgba(254, 209, 77, 0.9);
    text-shadow: 0 0 20px rgba(254, 209, 77, 0.3);
}

.outcome_card p {
    font-size: 1.3rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Core Outcomes Responsive - Tablet */
@media (max-width: 900px) {
    .core_outcomes {
        padding: 8rem 2rem;
        gap: 4rem;
    }

    .outcomes_header h1 {
        font-size: 4.5rem;
    }

    .outcomes_grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .outcome_card {
        padding: 2.5rem 2rem;
    }

    .outcome_card h2 {
        font-size: 1.8rem;
    }

    .outcome_card p {
        font-size: 1.2rem;
    }
}

/* Core Outcomes Responsive - Mobile */
@media (max-width: 480px) {
    .core_outcomes {
        padding: 5rem 1.5rem;
        gap: 3rem;
        min-height: auto;
    }

    .outcomes_header h3 {
        font-size: 1.2rem;
        padding: 0 0.8rem 0.2rem 0.8rem;
    }

    .outcomes_header h1 {
        font-size: 2.8rem;
        max-width: 15ch;
    }

    .outcomes_grid {
        gap: 2rem;
    }

    .outcome_card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .outcome_card h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .outcome_card p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}




.conference_schedule {
    height: auto;
    min-height: 100vh;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1.5fr;
    background-color: black;
    padding: 10rem 3rem 10rem 3rem;
    gap: 3rem;
    z-index: 250;
}


.schedule_header {
    position: sticky;
    top: 120px;
    align-self: start;
    z-index: 100;
}

.schedule_header h3 {
    font-size: 1.5rem;
    color: black;
    font-weight: 400;
    background-color: #FED14D;
    padding: 0 1rem 0.2rem 1rem;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
}

.schedule_header h1 {
    font-size: 6rem;
    color: white;
    font-weight: 400;
    justify-self: left;
    line-height: 1;
}

.schedule_header p {
    font-size: 1.5rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    justify-self: right;
    width: 40ch;
    line-height: normal;
    margin-bottom: 3rem;
    justify-self: left;
}

.conference_days {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.day_tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.day_tab {
    display: flex;
    flex-direction: column;
    line-height: 1;
    width: 100%;
    padding: 1rem 1rem 1.5rem 1rem;
    justify-content: center;
    align-items: center;
    border-bottom: rgb(51, 51, 51) 1px solid;
}

.day_tab strong {
    font-size: 1.3rem;
}

.day_tab.active {
    border-bottom: white 3px solid;
    color: white;
}

.day_tab {
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgb(114, 114, 114);
}

.day_tab:hover {
    color: #FED14D;
    transform: translateY(-2px);
}

.day_tab.active {
    transform: translateY(0);
}

.day1_events,
.day2_events {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.day1_events.active,
.day2_events.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: none;
    overflow: visible;
}

.event {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    padding: 1rem;
    align-items: center;
    border-bottom: rgb(51, 51, 51) 1px solid;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.event.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.event_time {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
}

.event_text {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.event_text h1 {
    font-size: 2.5rem;
    color: white;
    font-weight: 400;
}

.event_text h3 {
    font-size: 1.4rem;
    color: white;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.event_text p {
    font-size: 1.4rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    line-height: normal;
}

/* Event People Circles with Tooltips */
.event_people {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    align-items: center;
    position: relative;
    z-index: 100;
}

.person_circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.person_circle:hover {
    transform: scale(1.15);
    border-color: #FED14D;
    z-index: 9999;
}

.person_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.person_circle:hover img {
    filter: grayscale(0%);
}

.tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.95);
}

.person_circle:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}




.conference_cta {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #FED14D 70%, #ffe187);
    /* background-size: 400% 400%; */
    animation: gradientShift 8s ease-in-out infinite;
    padding: 9rem 3rem 3rem 3rem; 
    position: relative;
    z-index: 350;
    overflow: hidden;
}



/* Animated gradient background */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Floating particles background effect */
/* .conference_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(195, 169, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(195, 169, 255, 0.2) 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 90%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 60%, rgba(195, 169, 255, 0.25) 2px, transparent 2px);
    background-size: 200px 200px, 150px 150px, 300px 300px, 250px 250px, 180px 180px;
    animation: floatingParticles 20s linear infinite;
    z-index: -1;
} */

@keyframes floatingParticles {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Geometric shapes background */
/* .conference_cta::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(195, 169, 255, 0.3);
    border-radius: 50%;
    animation: rotateShape 15s linear infinite;
    z-index: -1;
} */

@keyframes rotateShape {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Animation states for content */
.conference_cta .countdown,
.conference_cta h1,
.conference_cta p,
.conference_cta .buy_tickets {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

.conference_cta.animate-in .countdown {
    animation: slideDownFade 0.8s ease-out forwards;
}

.conference_cta.animate-in h1 {
    animation: scaleUpFade 0.8s ease-out 0.3s forwards;
}

.conference_cta.animate-in p {
    animation: slideUpFade 0.8s ease-out 0.5s forwards;
}

.conference_cta.animate-in .buy_tickets {
    animation: bounceIn 0.8s ease-out 0.7s forwards;
}

/* Keyframe animations for content */
@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    70% {
        transform: translateY(5px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.countdown {
    background-color: black;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
}

.conference_cta h1 {
    font-size: 6rem;
    color: rgb(0, 0, 0);
    font-weight: 500;
    line-height: 1;
    z-index: 350;
    text-align: center;
    margin: 0;
}

.conference_cta p {
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    font-weight: 400;
    width: 40ch;
    line-height: normal;
    z-index: 350;
    text-align: center;
}

.conference_cta .note {
    margin-top: -3rem;
    font-size: 1rem;
    color: black;
    white-space: nowrap;
    width: 100%;
}

.conference_cta iframe {
    width: 100%;
    max-width: 1200px;
    height: 780px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    z-index: 350;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.theme-root.dark .event-theme.legacy.one-to-one {
    background-color: black !important;
}

/* Conference CTA iframe responsive styles */
@media (max-width: 768px) {
    .conference_cta iframe {
        max-width: 100%;
        height: 1100px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .conference_cta {
        padding: 9rem 1rem 3rem 1rem;
    }

    .conference_cta iframe {
        height: 1180px;
        margin-bottom: 1rem;
    }
}


@media (max-width: 1050px) {
    .conference_schedule {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .schedule_header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        position: relative;
        top: 0;
    }
}


/* Responsive Design for Conference Section */
@media (max-width: 768px) {
    .banner_text {
        font-size: 12px;
    }
    
    .banner_text_1 {
        animation: scroll-banner-1 25s linear infinite;
    }

    .banner_text_2 {
        animation: scroll-banner-2 25s linear infinite;
    }
    
    .hero_middle h1 {
        font-size: 6rem;
    }
    
    .hero_bottom h1 {
        font-size: 2rem;
    }
    
    .an_event_for h1 {
        font-size: 3rem;
    }

    .buy_tickets {
        padding: 0.4rem 1rem;
        height: 45px;
        width: 170px;
        font-size: 0.9rem;
    }
    
    .an_event_for {
        gap: 3em;
        padding: 0 1.5rem;
    }
    
    .an_event_for p {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
    
    .images_container {
        height: 150px;
    }
    
    .images_container img {
        width: 100px;
        height: 130px;
    }
    
    /* Adjust positions for smaller screens with arch formation and subtle overlap */
    .images_container.deck-expanded img:nth-child(1) { 
        z-index: 101;
        transform: translateY(25px) translateX(-200px) rotate(-15deg); 
    }
    .images_container.deck-expanded img:nth-child(2) { 
        z-index: 102;
        transform: translateY(12px) translateX(-133px) rotate(-10deg); 
    }
    .images_container.deck-expanded img:nth-child(3) { 
        z-index: 103;
        transform: translateY(3px) translateX(-67px) rotate(-5deg); 
    }
    .images_container.deck-expanded img:nth-child(4) { 
        z-index: 104;
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    .images_container.deck-expanded img:nth-child(5) { 
        z-index: 105;
        transform: translateY(3px) translateX(67px) rotate(5deg); 
    }
    .images_container.deck-expanded img:nth-child(6) { 
        z-index: 106;
        transform: translateY(12px) translateX(133px) rotate(10deg); 
    }
    .images_container.deck-expanded img:nth-child(7) { 
        z-index: 107;
        transform: translateY(25px) translateX(200px) rotate(15deg); 
    }
    
    /* Conference About Section - Tablet Responsive */
    .conference_about {
        padding: 2rem 1.5rem 10rem 1.5rem;
        gap: 2rem;
    }
    
    .conference_about h1 {
        font-size: 4rem;
    }
    
    .conference_about p {
        font-size: 1.8rem;
        width: 100%;
        max-width: 35ch;
        justify-self: center;
        text-align: center;
    }
    
    .conference_about img {
        margin-top: 3rem;
        max-height: 400px;
        border-radius: 20px;
    }

    .about_title {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    /* The Pros Section - Tablet Responsive */
    .the_pros_section {
        padding: 5rem 1.5rem 2rem 1.5rem;
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .pros_title h1 {
        font-size: 4rem;
        line-height: 1.1;
        text-align: center;
    }

    .pros_title p {
        font-size: 1.3rem;
        width: 100%;
        max-width: 35ch;
        text-align: center;
    }

    .pros_container {
        gap: 1.5rem;
    }

    .pro {
        width: 47%;
    }

    .pro:nth-child(3n+2) {
        transform: none;
    }
    
    .pro h3 {
        font-size: 1.3rem;
        margin: 0.8rem auto 0 0;
    }
    
    .pro p {
        font-size: 1.1rem;
    }
    
    /* Conference Schedule Section - Tablet Responsive */
    .conference_schedule {
        padding: 5rem 1.5rem 5rem 1.5rem;
        gap: 3rem;
    }


    
    .schedule_header h1 {
        font-size: 4rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .schedule_header p {
        font-size: 1.3rem;
        width: 100%;
        max-width: 35ch;
        text-align: center;
        justify-self: center;
        margin-bottom: 2rem;
    }
    

    
    .event {
        padding: 0.8rem;
    }
    
    .event_time {
        font-size: 1.3rem;
    }
    
    .event_text h1 {
        font-size: 2rem;
    }
    
    .event_text h3 {
        font-size: 1.1rem;
    }
    
    .event_text p {
        font-size: 1rem;
    }
}

.event {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    padding: 1rem;
    align-items: center;
    border-bottom: rgb(51, 51, 51) 1px solid;
    overflow: visible;
}

.event_time {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
}

.event_text {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: visible;
    position: relative;
}

@media (max-width: 480px) {
        .conference_hero {
        padding: 1.5rem;
    }


    .hero_top img {
        width: 4rem;
        height: 4rem;
    }
    
    .hero_middle h1 {
        font-size: 4.3rem;
    }
    
    .hero_bottom h1 {
        font-size: 1.5rem;
    }
    
    .buy_tickets {
        padding: 0.4rem 1rem;
        height: 36px;
        width: 150px;
        font-size: 0.9rem;
    }
    
    .an_event_for h1 {
        font-size: 2.5rem;
    }
    
    .an_event_for {
        gap: 2.5em;
        padding: 0 1rem;
        min-height: 80vh;
    }
    
    .an_event_for p {
        width: 35ch;
        font-size: 1.2rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    
    .images_container img {
        width: 80px;
        height: 100px;
    }
    
    /* Further adjust positions for mobile with arch formation and subtle overlap */
    .images_container.deck-expanded img:nth-child(1) { 
        z-index: 101;
        transform: translateY(20px) translateX(-120px) rotate(-12deg); 
    }
    .images_container.deck-expanded img:nth-child(2) { 
        z-index: 102;
        transform: translateY(10px) translateX(-80px) rotate(-8deg); 
    }
    .images_container.deck-expanded img:nth-child(3) { 
        z-index: 103;
        transform: translateY(3px) translateX(-40px) rotate(-4deg); 
    }
    .images_container.deck-expanded img:nth-child(4) { 
        z-index: 104;
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    .images_container.deck-expanded img:nth-child(5) { 
        z-index: 105;
        transform: translateY(3px) translateX(40px) rotate(4deg); 
    }
    .images_container.deck-expanded img:nth-child(6) { 
        z-index: 106;
        transform: translateY(10px) translateX(80px) rotate(8deg); 
    }
    .images_container.deck-expanded img:nth-child(7) { 
        z-index: 107;
        transform: translateY(20px) translateX(120px) rotate(12deg); 
    }
    
    /* Conference About Section - Mobile Responsive */
    .conference_about {
        padding: 1.5rem 1rem 5rem 1rem;
        gap: 1.5rem;
    }
    
    .conference_about h3 {
        font-size: 1.2rem;
        padding: 0 0.8rem 0.2rem 0.8rem;
    }
    
    .conference_about h1 {
        font-size: 2.8rem;
        text-align: center;
        justify-self: center;
    }
    
    .conference_about p {
        font-size: 1.4rem;
        width: 100%;
        max-width: none;
        justify-self: center;
        text-align: center;
        line-height: 1.4;
    }
    
    .conference_about img {
        margin-top: 2rem;
        max-height: 300px;
        border-radius: 15px;
    }
    
    /* The Pros Section - Mobile Responsive */
    .the_pros_section {
        padding: 3rem 1rem 2rem 1rem;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pros_title h3 {
        font-size: 1.2rem;
        padding: 0 0.8rem 0.2rem 0.8rem;
    }
    
    .pros_title h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .pros_title p {
        font-size: 1.2rem;
        width: 100%;
        max-width: none;
        text-align: center;
        line-height: 1.4;
    }
    
    .pros_container {
        gap: 1rem;
        justify-content: center;
    }
    
    .pro {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .pro h3 {
        font-size: 1.2rem;
        margin: 0.8rem auto 0 0;
        text-align: left;
    }
    
    .pro p {
        font-size: 1rem;
        text-align: left;
    }
    
    /* Conference Schedule Section - Mobile Responsive */
    .conference_schedule {
        padding: 3rem 1rem 3rem 1rem;
        gap: 2rem;
    }
    
    .schedule_header h3 {
        font-size: 1.2rem;
        padding: 0 0.8rem 0.2rem 0.8rem;
    }
    
    .schedule_header h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .schedule_header p {
        font-size: 1.2rem;
        width: 100%;
        max-width: none;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .day_tab {
        font-size: 0.8rem;
    }

    
    .event_time {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .event_text h1 {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .event_text h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .event_text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Mobile responsive adjustments for CTA section */
    .conference_cta h1 {
        font-size: 4rem;
        margin-bottom: 0;
    }
    
    .conference_cta p {
        font-size: 1.2rem;
        width: 35ch;
    }
    
    .conference_cta::after {
        width: 60px;
        height: 60px;
        top: 15%;
        right: 15%;
    }
}

/* Extra small mobile devices (320px and below) */
@media (max-width: 320px) {

    

    
    /* Conference About Section - Extra Small Mobile */
    .conference_about {
        padding: 1rem 0.75rem;
        gap: 1rem;
    }
    
    .conference_about h3 {
        font-size: 1rem;
        padding: 0 0.6rem 0.15rem 0.6rem;
    }
    
    .conference_about h1 {
        font-size: 2.2rem;
    }
    
    .conference_about p {
        font-size: 1.1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    
    .conference_about img {
        margin-top: 1.5rem;
        max-height: 250px;
        border-radius: 12px;
    }
    
    /* The Pros Section - Extra Small Mobile */
    .the_pros_section {
        padding: 2rem 0.75rem 1.5rem 0.75rem;
        gap: 1rem;
    }
    
    .pros_title h3 {
        font-size: 1rem;
        padding: 0 0.6rem 0.15rem 0.6rem;
    }
    
    .pros_title h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .pros_title p {
        font-size: 1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    
    .pros_container {
        gap: 0.8rem;
    }
    
    .pro {
        width: 100%;
        max-width: 250px;
        margin-bottom: 0.8rem;
    }
    
    .pro h3 {
        font-size: 1.1rem;
        margin: 0.6rem auto 0 0;
    }
    
    .pro p {
        font-size: 0.9rem;
    }
    
    /* Conference Schedule Section - Extra Small Mobile */
    .conference_schedule {
        padding: 2rem 0.75rem 2rem 0.75rem;
        gap: 1.5rem;
    }
    
    .schedule_header h3 {
        font-size: 1rem;
        padding: 0 0.6rem 0.15rem 0.6rem;
    }
    
    .schedule_header h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .schedule_header p {
        font-size: 1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .day_tab {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .event {
        padding: 0.5rem;
        gap: 0.4rem;
    }
    
    .event_time {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .event_text h1 {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }
    
    .event_text h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .event_text p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .an_event_for h1 {
        font-size: 2rem;
    }
    
    .an_event_for {
        gap: 2em;
        padding: 0 0.75rem;
        min-height: 70vh;
    }
    
    .an_event_for p {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }
    
    /* Images Container - Extra Small Mobile (320px) */
    .images_container img {
        width: 60px;
        height: 80px;
    }
    
    .images_container {
        height: 120px;
    }
    
    /* Ultra-compact positions for 320px screens */
    .images_container.deck-expanded img:nth-child(1) { 
        z-index: 101;
        transform: translateY(15px) translateX(-90px) rotate(-10deg); 
    }
    .images_container.deck-expanded img:nth-child(2) { 
        z-index: 102;
        transform: translateY(8px) translateX(-60px) rotate(-6deg); 
    }
    .images_container.deck-expanded img:nth-child(3) { 
        z-index: 103;
        transform: translateY(2px) translateX(-30px) rotate(-3deg); 
    }
    .images_container.deck-expanded img:nth-child(4) { 
        z-index: 104;
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    .images_container.deck-expanded img:nth-child(5) { 
        z-index: 105;
        transform: translateY(2px) translateX(30px) rotate(3deg); 
    }
    .images_container.deck-expanded img:nth-child(6) { 
        z-index: 106;
        transform: translateY(8px) translateX(60px) rotate(6deg); 
    }
    .images_container.deck-expanded img:nth-child(7) { 
        z-index: 107;
        transform: translateY(15px) translateX(90px) rotate(10deg); 
    }
    
    .conference_cta h1 {
        font-size: 2.2rem;
    }
    
    .conference_cta p {
        font-size: 1rem;
        width: 30ch;
        padding: 0 0.5rem;
    }
}

/* Accessibility and Performance Considerations */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .conference_hero,
    .conference_hero::before,
    .conference_hero::after,
    .conference_cta,
    .conference_cta::before,
    .conference_cta::after {
        animation: none !important;
    }
    
    .hero_top,
    .hero_middle,
    .hero_bottom,
    .conference_cta .countdown,
    .conference_cta h1,
    .conference_cta p,
    .conference_cta .buy_tickets {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .buy_tickets {
        transition: background-color 0.2s ease, box-shadow 0.2s ease !important;
    }
    
    .buy_tickets::before {
        display: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .conference_cta {
        background: linear-gradient(45deg, #000000 0%, #000000 25%, #ffffff 70%, #ffffff 100%) !important;
    }
    
    .conference_cta h1,
    .conference_cta p {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .countdown {
        background-color: #ffffff !important;
        color: #000000 !important;
        border: 2px solid #000000 !important;
    }
    
    .buy_tickets {
        background-color: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #ffffff !important;
    }
}

/* Focus management for accessibility */
.buy_tickets:focus {
    outline: 3px solid #FED14D;
    outline-offset: 2px;
}

.buy_tickets:focus:not(:focus-visible) {
    outline: none;
}

.buy_tickets:focus-visible {
    outline: 3px solid #FED14D;
    outline-offset: 2px;
}

/* Performance optimization for mobile devices */
@media (max-width: 768px) {
    .conference_cta::before {
        animation-duration: 30s; /* Slower animation on mobile */
    }
    
    .conference_cta::after {
        animation-duration: 20s; /* Slower rotation on mobile */
    }
}

/* Tablet responsive adjustments */
@media (max-width: 768px) and (min-width: 481px) {
    .conference_cta h1 {
        font-size: 4.5rem;
    }
    
    .conference_cta p {
        font-size: 1.3rem;
        width: 38ch;
    }
    
    .conference_cta::after {
        width: 80px;
        height: 80px;
        top: 12%;
        right: 12%;
    }
}


.progress-bar-fill {
    background-color: #FED14D !important;
}

/* FAQ Section Styles */
.conference_faq {
    height: auto;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1.5fr;
    background-color: black;
    padding: 10rem 3rem 10rem 3rem;
    gap: 3rem;
    z-index: 250;
}

.faq_header {
    position: sticky;
    top: 120px;
    align-self: start;
    z-index: 100;
}

.faq_header h3 {
    font-size: 1.5rem;
    color: black;
    font-weight: 400;
    background-color: #FED14D;
    padding: 0 1rem 0.2rem 1rem;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
}

.faq_header h1 {
    font-size: 6rem;
    color: white;
    font-weight: 400;
    justify-self: left;
    line-height: 1;
}

.faq_header p {
    font-size: 1.5rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    justify-self: right;
    width: 40ch;
    line-height: normal;
    margin-bottom: 3rem;
    justify-self: left;
}

.faq_items {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq_item {
    border-bottom: rgb(51, 51, 51) 1px solid;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.faq_item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq_question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq_question:hover {
    color: #FED14D;
}

/* .faq_question:focus {
    outline: 2px solid #FED14D;
    outline-offset: -2px;
} */

.faq_icon {
    font-size: 2rem;
    font-weight: 300;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
    min-width: 30px;
    text-align: center;
    margin-left: 1rem;
}

.faq_question:hover .faq_icon {
    color: #FED14D;
}

.faq_question[aria-expanded="true"] .faq_icon {
    transform: rotate(45deg);
    color: #FED14D;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq_answer.active {
    max-height: 500px;
    padding: 0 1rem 1.5rem 1rem;
}

.faq_answer p {
    font-size: 1.4rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Responsive - Tablet */
@media (max-width: 900px) {
    .conference_faq {
        grid-template-columns: 1fr;
        gap: 5rem;
        padding: 5rem 1.5rem 5rem 1.5rem;
    }

    .faq_header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        top: 0;
    }

    .faq_header h1 {
        font-size: 4rem;
        line-height: 1.1;
        text-align: center;
    }

    .faq_header p {
        font-size: 1.3rem;
        width: 100%;
        max-width: 35ch;
        text-align: center;
        justify-self: center;
        margin-bottom: 2rem;
    }

    .faq_question {
        font-size: 1.5rem;
        padding: 1.2rem 0.8rem;
    }

    .faq_icon {
        font-size: 1.8rem;
    }

    .faq_answer p {
        font-size: 1.2rem;
    }
}

/* FAQ Responsive - Mobile */
@media (max-width: 480px) {
    .conference_faq {
        padding: 8rem 1rem 8rem 1rem;
        gap: 2rem;
    }

    .faq_header h3 {
        font-size: 1.2rem;
        padding: 0 0.8rem 0.2rem 0.8rem;
    }

    .faq_header h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        text-align: center;
    }

    .faq_header p {
        font-size: 1.2rem;
        width: 100%;
        max-width: none;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .faq_question {
        font-size: 1.3rem;
        padding: 1rem 0.5rem;
    }

    .faq_icon {
        font-size: 1.6rem;
        min-width: 25px;
    }

    .faq_answer.active {
        padding: 0 0.5rem 1rem 0.5rem;
    }

    .faq_answer p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* FAQ Responsive - Extra Small Mobile */
@media (max-width: 320px) {
    .conference_faq {
        padding: 2rem 0.75rem 2rem 0.75rem;
        gap: 1.5rem;
    }

    .faq_header h3 {
        font-size: 1rem;
        padding: 0 0.6rem 0.15rem 0.6rem;
    }

    .faq_header h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .faq_header p {
        font-size: 1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .faq_question {
        font-size: 1.1rem;
        padding: 0.8rem 0.4rem;
    }

    .faq_icon {
        font-size: 1.4rem;
        min-width: 20px;
    }

    .faq_answer.active {
        padding: 0 0.4rem 0.8rem 0.4rem;
    }

    .faq_answer p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Venue Section Styles */
.conference_venue {
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 10rem 0 0 0;
    gap: 5rem;
    z-index: 240;
}

.venue_header {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.venue_header h3 {
    font-size: 1.5rem;
    color: black;
    font-weight: 400;
    background-color: #FED14D;
    padding: 0 1rem 0.2rem 1rem;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
}

.venue_header h1 {
    font-size: 6rem;
    color: white;
    font-weight: 400;
    line-height: 1.1;
    max-width: 20ch;
}

.venue_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 90%;
    max-width: 1400px;
}

.venue_card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hotel_link {
    text-decoration: underline;
        color: rgba(254, 209, 77, 0.7);
}

/* Animated gradient overlay */
.venue_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(254, 209, 77, 0.06) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

/* Top accent line */
.venue_card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(254, 209, 77, 0.7) 0%, rgba(254, 209, 77, 0.3) 100%);
    transition: width 0.5s ease;
    border-radius: 20px 20px 0 0;
}

.venue_card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.venue_card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(254, 209, 77, 0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(254, 209, 77, 0.15),
        inset 0 0 30px rgba(254, 209, 77, 0.03);
}

.venue_card:hover::before {
    opacity: 1;
    top: -25%;
    left: -25%;
}

.venue_card:hover::after {
    width: 100%;
}

.venue_card h2 {
    font-size: 2rem;
    color: white;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.venue_card:hover h2 {
    color: rgba(254, 209, 77, 0.9);
    text-shadow: 0 0 20px rgba(254, 209, 77, 0.3);
}

.venue_card p {
    font-size: 1.3rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.venue_card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.venue_card ul li {
    font-size: 1.3rem;
    color: rgb(114, 114, 114);
    font-weight: 400;
    padding-left: 1.5rem;
    position: relative;
}

.venue_card ul li::before {
    content: '•';
    color: #FED14D;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.hotel_link .hotel_code {
    color: rgb(114, 114, 114);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.venue_card .hotel_code strong {
    color: #FED14D;
    font-weight: 600;
}

@media (max-width: 1150px) {
    .venue_cards {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


/* Venue Responsive - Tablet */
@media (max-width: 900px) {
    .conference_venue {
        padding: 8rem 0 0 0;
        gap: 4rem;
    }

    .venue_header h1 {
        font-size: 4.5rem;
    }

    .venue_card {
        padding: 2.5rem 2rem;
    }

    .venue_card h2 {
        font-size: 1.8rem;
    }

    .venue_card p {
        font-size: 1.2rem;
    }

    .venue_card ul li {
        font-size: 1.2rem;
    }
}

/* Venue Responsive - Mobile */
@media (max-width: 480px) {
    .conference_venue {
        padding: 5rem 0 0 0;
        gap: 3rem;
        min-height: auto;
    }

    .venue_header h3 {
        font-size: 1.2rem;
        padding: 0 0.8rem 0.2rem 0.8rem;
    }

    .venue_header h1 {
        font-size: 2.8rem;
        max-width: 15ch;
    }

    .venue_cards {
        gap: 2rem;
    }

    .venue_card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .venue_card h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .venue_card p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .venue_card ul li {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .venue_card .hotel_code {
        font-size: 1.1rem;
    }
}

/* Venue Responsive - Extra Small Mobile */
@media (max-width: 320px) {
    .conference_venue {
        padding: 4rem 0 0 0;
        gap: 2.5rem;
    }

    .venue_header h3 {
        font-size: 1rem;
        padding: 0 0.6rem 0.15rem 0.6rem;
    }

    .venue_header h1 {
        font-size: 2.2rem;
    }

    .venue_cards {
        gap: 1.5rem;
    }

    .venue_card {
        padding: 1.5rem 1rem;
    }

    .venue_card h2 {
        font-size: 1.3rem;
    }

    .venue_card p {
        font-size: 1rem;
    }

    .venue_card ul li {
        font-size: 1rem;
        padding-left: 1.2rem;
    }

    .venue_card .hotel_code {
        font-size: 1rem;
    }
}

/* Venue Bottom Image */
.venue_bottom_image {
    width: 100%;
    position: absolute;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.venue_bottom_image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
