/*
  Theme Name:    Twenty Twenty-Four Child
  Theme URI:     https://example.com/twentytwentyfour-child
  Description:   Child theme for Twenty Twenty-Four
  Author:        Your Name
  Author URI:    https://example.com
  Template:      twentytwentyfour
  Version:       1.0.0
*/

/* ==========================================================================
   1. GLOBAL & ROOT
   ========================================================================== */
   body {
    font-family: "Assistant";
    background: #FFFEF9;
}

:root {
    --blue-900: #1E3A8A;
    --teal-500: #14B8A6;
    --beige: #F5F5DC;
    --white: #FFFFFF;
    font-family: 'Assistant', sans-serif;
    direction: rtl;
    --ban_primary_blue:#326b82;
    --ban_accent_teal:#23b5a7;
    --ban_bg_cream:#fdfbf7;
    --ban_text_dark:#1a1a1a;
    --ban_nav_height:90px;
    --ban_font:'Assistant', sans-serif;
}

.blue_title {
    color: var(--blue-900);
}

.hadas-hero-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
   2. TOP NAVIGATION (Original)
   ========================================================================== */
.hadas-topbar {
    position: relative;
    z-index: 70;
    color: #fff;
    background: #0000008a;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hadas-topbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 92%;
}

.hadas-brand {
    display: flex;
    align-items: end;
    gap: 5px;
}

.hadas-brand img {
    width: 140px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.6);
}

.hadas-brand .name {
    font-weight: 800;
    color: #fff;
    font-size: 15px;
    background: #14b8a6;
    padding: 0px 6px;
    border-radius: 7px;
}

.hadas-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hadas-nav a {
    padding: 8px 12px;
    border-radius: 10px;
    color: #fff;
    opacity: .95;
    text-decoration: none;
    transition: .25s;
    font-weight: 600;
}

.hadas-nav a:hover {
    background: rgba(255,255,255,.1);
}

.hadas-nav .btn-nav-cta {
    background: var(--teal-500);
    margin-inline-start: 6px;
    opacity: 1;
    font-weight: 800;
}

.hadas-nav .btn-nav-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* ==========================================================================
   3. HERO SECTION & CANVAS (Original)
   ========================================================================== */
.hadas-hero {
    position: relative;
    isolation: isolate;
    min-height: 88vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}

.hadas-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1642522029693-20b2ab875b19?q=80&w=2340&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    filter: grayscale(4%) contrast(1.04) saturate(1.1);
    transform: scale(1.02);
    z-index: -2;
}

.hadas-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(900px 300px at 80% 15%, rgba(20,184,166,.18), transparent 60%),
        linear-gradient(180deg, rgba(11,17,23,.15) 0, rgba(11,17,23,.6) 55%, rgba(11,17,23,.9) 100%);
    z-index: -1;
}

.hadas-canvas-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hadas-3d-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hadas-hero-content {
    position: relative;
    z-index: 1;
    padding: 20vh 12vh;
    max-width: 1200px;
    margin: 0 auto;
}

.hadas-chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--beige);
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 16px;
}

.hadas-hero h1 {
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.05;
    margin: 0 0 12px 0;
    font-weight: 900;
}

.hadas-hero h1 .highlight { 
    color: var(--teal-500); 
}

.hadas-hero h1 .highlight_white { 
    color: white; 
}

.hadas-hero .lead {
    font-size: clamp(16px, 1.6vw, 22px);
    opacity: .95;
    margin: 12px 0 18px;
    max-width: 52ch;
    line-height: 1.6;
    font-weight: 800;
}

.hadas-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 16px;
}

.hadas-badge {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.hadas-cta-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hadas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .25s ease;
    text-decoration: none;
    font-size: 16px;
}

.hadas-btn-primary { 
    background: var(--teal-500); 
    color: var(--white); 
}

.hadas-btn-primary:hover { 
    transform: translateY(-2px); 
    filter: brightness(1.05); 
}

.hadas-btn-ghost { 
    background: transparent; 
    border-color: var(--white); 
    color: var(--white); 
}

.hadas-btn-ghost:hover { 
    background: var(--white); 
    color: var(--blue-900); 
}

/* ==========================================================================
   4. MARQUEE & ANIMATIONS (Original)
   ========================================================================== */
.hadas-marquee {
    overflow: hidden;
    white-space: nowrap;
    border-block: 1px solid rgba(255,255,255,.1);
    background: rgba(11,17,23,.55);
    color: #fff;
}

.hadas-marquee .track {
    display: inline-block;
    animation: hadasMarquee 32s linear infinite;
    padding: 10px 0;
}

.hadas-marquee span {
    display: inline-block;
    margin-inline: 26px;
    font-weight: 800;
}

@keyframes hadasMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.bannerContentWrap { 
    display: flex; 
}

.hadasImg {
    width: 50%;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateX(300px);
    animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
    from { 
        opacity: 0; 
        transform: translateX(300px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.hadasImg img {
    display: block;
    max-width: 100%;
    height: auto;
}

.hadas-tag {
    display: inline-block;
    padding: 2px 20px;
    border-radius: 999px;
    background: var(--beige);
    font-weight: 700;
    color: var(--blue-900);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.85rem;
    margin: 1px 5px;
}

.hadas-tag:hover {
    background: var(--beige-hover, #f2e6d8);
}

/* ==========================================================================
   5. VIDEO FIXES & MISC
   ========================================================================== */
.vdo-tula .elementor-custom-embed-play {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px; 
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 159, 147, 0.92);
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 16px rgba(34, 159, 147, 0.35);
    transition: all 0.3s ease;
    z-index: 3;
}

.vdo-tula .elementor-custom-embed-play svg {
    width: 34px; 
    height: 34px;
    fill: #ffffff;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.vdo-tula .elementor-custom-embed-play:hover {
    background: rgba(34, 159, 147, 1);
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 22px rgba(34, 159, 147, 0.45);
}

.vdo-tula .elementor-custom-embed-play:hover svg {
    transform: scale(1.08);
}

.vdo-tula .elementor-custom-embed-image-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.25), rgba(0,0,0,0.15));
    pointer-events: none;
    border-radius: inherit;
    z-index: 2;
}

/* ==========================================================================
   6. BANNER V3 - DOMINANCE UPDATES (THE MODIFIED PART)
   ========================================================================== */
.ban_wrap {
    font-family: var(--ban_font);
    background: var(--ban_bg_cream);
    color: var(--ban_text_dark);
    overflow-x: hidden;
    line-height: 1.4;
}

.ban_nav {
    position: fixed;
    top: 30px; 
    left: 0; 
    right: 0;
    height: var(--ban_nav_height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 999;
    transition: all .3s ease;
    background: rgba(253,251,247,.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ban_nav.ban_scrolled {
    background: rgba(253,251,247,.95);
    height: 75px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.ban_logo img {
    height: 65px !important;
    transition: all .3s ease;
}

.ban_nav.ban_scrolled .ban_logo img { 
    height: 55px; 
}

.ban_links { 
    display: flex; 
    gap: 25px; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    align-items: center; 
}

.ban_links a { 
    text-decoration: none; 
    color: var(--ban_primary_blue); 
    font-weight: 700; 
    font-size: 1.05rem; 
    transition: color .3s ease;
}

.ban_links a:hover {
    color: var(--ban_accent_teal);
}

.ban_cta {
    background: var(--ban_primary_blue);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .95rem !important;
    transition: transform .2s ease !important;
    display: inline-block;
}

.ban_cta:hover {
    transform: scale(1.05);
}

.ban_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--ban_nav_height) + 40px) 20px 60px;
    box-sizing: border-box;
}

/* MODIFIED: Increased container size for dominance */
.ban_container {
    max-width: 1440px; 
    width: 95%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 60px;
    align-items: center;
}

.ban_content { 
    animation: ban_fade_in 1s ease-out; 
}

.ban_slogan {
    font-size: 1.70rem;
    color: var(--ban_accent_teal);
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 15px;
    display: block;
}

/* MODIFIED: Much larger H1 */
.ban_h1 {
    font-size: clamp(3rem, 6.2vw, 5rem);
    line-height: 1.05;
    margin: 0 0 15px;
    font-weight: 900;
    color: var(--ban_primary_blue);
}

.ban_highlight { 
    color: var(--ban_accent_teal); 
}

.ban_subtitle {
    font-size: 1.6rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

/* MODIFIED: Larger text and max-width */
.ban_desc {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 620px;
    font-weight: 400;
}

.ban_btns { 
    display: flex; 
    gap: 20px; 
}

.ban_btn {
    padding: 20px 42px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    transition: all .3s cubic-bezier(.175,.885,.32,1.275);
    display: inline-block;
    text-align: center;
}

.ban_btn_primary { 
    background: var(--ban_primary_blue); 
    color: #fff; 
    box-shadow: 0 10px 25px rgba(50,107,130,.2); 
}

.ban_btn_secondary { 
    border: 2px solid var(--ban_primary_blue); 
    color: var(--ban_primary_blue); 
    background: transparent;
}

.ban_btn:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,.1); 
}

/* MODIFIED: Larger image area and blob */
.ban_image {
    position: relative;
    height: 750px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ban_blob {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: linear-gradient(135deg, rgba(35,181,167,.12) 0%, rgba(50,107,130,.12) 100%);
    border-radius: 50%;
    z-index: 0;
    animation: ban_morph 8s infinite alternate ease-in-out;
}

.ban_heroimg {
    max-height: 110%;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,.15));
}

.ban_badge {
    position: absolute;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(5px);
    padding: 16px 28px;
    border-radius: 100px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    z-index: 3;
    font-weight: 700;
    color: var(--ban_primary_blue);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: ban_float 4s infinite ease-in-out;
}

.ban_badge_1 { 
    top: 15%; 
    right: -20px; 
}

.ban_badge_2 { 
    bottom: 20%; 
    left: -20px; 
    animation-delay: 2s; 
}

/* ==========================================================================
   7. SHARED KEYFRAMES & RESPONSIVE
   ========================================================================== */
@keyframes ban_morph {
    0% { 
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; 
        transform: translate(-50%,-50%) scale(1); 
    }
    100% { 
        border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; 
        transform: translate(-50%,-50%) scale(1.1); 
    }
}

@keyframes ban_float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

@keyframes ban_fade_in {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ==========================================================================
   8. RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 768px) {
    .hadas-nav {
        display: none;
    }
    
    .hadas-hero {
        min-height: 70vh;
    }
    
    .hadas-hero-content {
        padding: 15vh 20px 8vh;
        width: 100%;
    }
    
    .hadas-brand .name {
        font-size: 14px;
    }
    
    .bannerContentWrap {
        flex-direction: column;
    }
    
    .hadasImg {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .ban_links, .hadas-nav { 
        display: none; 
    }
    
    .ban_container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 50px; 
    }
    
    .ban_image { 
        height: 500px; 
        order: 1; 
        margin-bottom: 20px; 
    }
    
    .ban_content { 
        order: 2; 
        padding: 0 20px; 
    }
    
    .ban_desc { 
        margin: 0 auto 35px; 
    }
    
    .ban_btns { 
        flex-direction: column; 
        align-items: center; 
        gap: 15px;
    }
    
    .ban_btn { 
        width: 100%; 
        max-width: 320px; 
    }
    
    .ban_blob { 
        width: 400px; 
        height: 400px; 
    }
    
    .ban_badge { 
        display: none; 
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .ban_container {
        max-width: 95%;
        gap: 40px;
    }
    
    .ban_h1 {
        font-size: clamp(2.8rem, 5vw, 4rem);
    }
    
    .ban_image {
        height: 650px;
    }
    
    .ban_blob {
        width: 550px;
        height: 550px;
    }
}

/* Print styles */
@media print {
    .ban_nav,
    .hadas-topbar,
    .hadas-marquee,
    .ban_btns,
    .hadas-cta-group {
        display: none !important;
    }
    
    .ban_hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
.conference {
    filter: grayscale(80%) contrast(1.1) brightness(0.95);
}