/* Toonz AI Hero Section - Modern Storytelling Architecture */

.toonz-ai-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Background & Parallax --- */
.aih-bg-container {
    position: absolute;
    inset: -10%;
    /* Allow room for parallax movement */
    width: 120%;
    height: 120%;
    z-index: 1;
}

.aih-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    will-change: transform;
}

.aih-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

/* Screen Reflection Overlay */
.aih-reflection-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(179, 121, 55, 0.05) 0%, transparent 60%);
    opacity: 0.4;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* --- Layout --- */
.aih-container {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
    padding: 100px 3%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aih-content {
    max-width: 850px;
}

/* Top Header Part */
.aih-header-part {
    margin-bottom: 40px;
}

.aih-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #B37937;
    text-transform: uppercase;
}

.aih-line {
    width: 30px;
    height: 2px;
    background: #B37937;
    margin-top: 15px;
}

/* Title & Description */
.aih-title {
    font-size: 85px;
    line-height: 1.05;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.aih-title .accent-gold {
    font-weight: 500;
    color: #B37937;
}

.aih-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin-bottom: 50px;
    font-weight: 300;
}

/* CTA Buttons */
.aih-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.aih-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.aih-cta-primary {
    border: 1px solid #B37937;
}

.aih-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.aih-cta-arrow {
    font-size: 18px;
    color: #B37937;
    transition: transform 0.4s ease;
}

/* Button Hover */
.aih-cta:hover {
    background: rgba(179, 121, 55, 0.1);
    border-color: #B37937;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.aih-cta:hover .aih-cta-arrow {
    transform: translateX(5px);
}

/* --- Footer --- */
.aih-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.aih-footer-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

.aih-footer-text .aih-footer-accent {
    color: #F87510;
}

/* --- Responsive --- */
@media (max-width: 1400px) {
    .aih-title {
        font-size: 70px;
    }
}

@media (max-width: 1024px) {
    .aih-title {
        font-size: 56px;
    }

    .aih-container {
        padding: 120px 5%;
        align-items: center;
        text-align: center;
    }

    .aih-header-part {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .aih-btns {
        justify-content: center;
    }

    .aih-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .aih-title {
        font-size: 42px;
    }

    .aih-container {
        padding: 100px 5%;
    }
}