/* --- TOONZ ANIMATION HERO --- */
.toonz-animation-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* VIDEO LAYER */
.tah-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    z-index: 1;
    overflow: hidden;
}

.tah-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

iframe.tah-bg-video {
    width: 115vw;
    height: 115vh;
}

.tah-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* CONTENT LAYER */
.tah-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.tah-inner {
    max-width: 800px;
}

.tah-headline {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 200;
    line-height: 1;
    margin: 0 0 30px 0;
    letter-spacing: -2px;
}

.tah-subtext {
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.5;
    color: #BBBBBB;
    max-width: 450px;
    margin-bottom: 50px;
}

/* BUTTONS */
.tah-btn-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tah-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tah-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    color: #fff;
}

.tah-icon i {
    font-size: 18px;
    /* Default - controlled by slider */
    width: auto;
    height: auto;
    line-height: 1;
}

.tah-icon svg {
    fill: currentColor;
}

/* Hover Effect: Icon shifts right */
.tah-cta:hover .tah-icon {
    transform: translateX(8px);
}

.tah-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tah-content {
        padding: 0 20px;
    }

    .tah-btn-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tah-divider {
        display: none;
    }
}