/* ============================================
   UiKitHero.css - Hero Section Styles
   ============================================ */

/* Hero Section */
.hero {
    padding: 120px 0 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Container - Flex Layout */
.hero .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* Botty Logo (Left Side) */
.hero-logo {
    flex: 0 0 auto;
}

.hero-logo-image {
    width: 320px;
    height: 320px;
    display: block;
    animation: heroLogoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(255, 102, 0, 0.4));
    transition: all 0.5s ease;
}

.hero-logo-image:hover {
    filter: drop-shadow(0 15px 60px rgba(255, 102, 0, 0.6));
    transform: scale(1.05);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-3deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Hero Content (Right Side) */
.hero-content {
    flex: 1;
    text-align: left;
}

/* Hero Title */
.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
    background: var(--gradient-rainbow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 10s linear infinite;
    filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.18));
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 22px;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

/* Hero Note */
.hero-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--color-text-tertiary);
}

/* Section Titles */
.section-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -1.5px;
    text-align: center;
}

.section-subtitle {
    font-size: 21px;
    color: var(--color-text-secondary);
    font-weight: 400;
    text-align: center;
    margin-bottom: 64px;
}

/* CTA Section */
.section-cta {
    background: rgba(255, 255, 255, 0.03);
    padding: 120px 0;
    text-align: center;
    border-radius: 32px;
    margin: 80px 48px;
    border: 1px solid var(--color-border-light);
}

.cta-title {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.cta-subtitle {
    font-size: 21px;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
}

/* Responsive: Mobile (<968px) */
@media (max-width: 968px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-logo-image {
        width: 240px;
        height: 240px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .section-cta {
        margin: 40px 24px;
    }
}

/* Responsive: Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

