/* 
* Tiger TV - Ultra Minimal Hero Section
* Conversion-Focused Design
* Mobile-First Approach
* Version: 3.1 - FIXED
*/

/* ============================================
   HERO SECTION - ULTRA MINIMAL
   ============================================ */

.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #FFA500 100%) !important;
    color: white !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 45vh !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 3vh !important;
}

/* Background - Simplified */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
}

.tiger-animation {
    width: 100%;
    height: 100%;
    position: relative;
}

.tiger-stripes {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 215, 0, 0.3) 30px,
        rgba(255, 215, 0, 0.3) 60px
    );
    animation: stripeMove 30s linear infinite;
}

@keyframes stripeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

/* Container */
.hero .container {
    position: relative !important;
    z-index: 2 !important;
    max-width: 800px !important;
    padding: 0 1.5rem 1.5rem !important;
}

/* Content - Centered */
.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
}

/* Title */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    width: 100%;
}

.title-main {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -2px;
    animation: titleFadeIn 1s ease-out;
}

.title-sub {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    animation: subtitleFadeIn 1s ease-out 0.3s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button - Single, Large, Clear */
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.75rem;
    background: white;
    color: #FF6B35;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: ctaFadeIn 1s ease-out 0.6s both;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #FFD700;
    color: #1A1A1A;
}

.hero-cta:active {
    transform: translateY(-4px) scale(1.02);
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for CTA */
@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

.hero-cta {
    animation: ctaFadeIn 1s ease-out 0.6s both, ctaPulse 3s ease-in-out 2s infinite;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Mobile (Default - < 768px) */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh !important;
        padding-top: 3vh !important;
    }

    .hero .container {
        padding: 0 1.25rem 1.25rem;
        max-width: 100%;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .title-main {
        font-size: 2.25rem;
        letter-spacing: -1px;
        line-height: 1.15;
    }

    .title-sub {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .hero-cta {
        width: 100%;
        max-width: 100%;
        padding: 1.15rem 2rem;
        font-size: 1.2rem;
        border-radius: 50px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 45vh !important;
        padding-top: 2vh !important;
    }

    .hero .container {
        padding: 0 1rem 1rem;
    }

    .hero-content {
        gap: 1.25rem;
    }

    .title-main {
        font-size: 1.9rem;
    }

    .title-sub {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 1.1rem 1.75rem;
        font-size: 1.15rem;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        min-height: 48vh !important;
        padding-top: 3vh !important;
    }

    .hero .container {
        padding: 0 2rem 1.5rem;
    }

    .title-main {
        font-size: 3.25rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-cta {
        padding: 1.2rem 2.75rem;
        font-size: 1.25rem;
    }
}

/* Desktop (> 1024px) */
@media (min-width: 1024px) {
    .hero {
        min-height: 45vh !important;
        padding-top: 3vh !important;
    }

    .hero .container {
        padding: 0 2rem 1.5rem;
    }

    .title-main {
        font-size: 3.75rem;
    }

    .title-sub {
        font-size: 1.3rem;
    }

    .hero-cta {
        padding: 1.2rem 3rem;
        font-size: 1.3rem;
    }
}

/* Large Desktop (> 1440px) */
@media (min-width: 1440px) {
    .hero {
        min-height: 48vh !important;
    }

    .title-main {
        font-size: 4rem;
    }

    .title-sub {
        font-size: 1.35rem;
    }

    .hero-cta {
        padding: 1.25rem 3.25rem;
        font-size: 1.35rem;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-cta,
    .title-main,
    .title-sub,
    .tiger-stripes {
        animation: none;
    }

    .hero-cta {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #FF6B35;
    }

    .hero-cta {
        border: 3px solid #1A1A1A;
    }
}

/* Focus states for accessibility */
.hero-cta:focus {
    outline: 4px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

.hero-cta:focus:not(:focus-visible) {
    outline: none;
}

.hero-cta:focus-visible {
    outline: 4px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}
