/* ===========================================
   FELUXE CAT LITTER - HERO SECTION STYLES
   Main landing area, CTA buttons, hero content
   =========================================== */

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        var(--primary-purple) 0%, 
        var(--secondary-purple) 25%, 
        var(--primary-blue) 75%, 
        var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 120px; /* Accounts for fixed header */
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: move 20s linear infinite;
    opacity: 0.3;
}

/* Hero Background Paw Print */
.hero::after {
    content: '🐾';
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.5rem;
    opacity: 0.08;
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
    padding: 1rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.5;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 54px;
    min-width: 200px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 1rem;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 180px;
        min-height: 50px;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 160px;
        min-height: 48px;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        min-width: 140px;
        padding: 10px 20px;
    }
}