/* Minimatch Hero Section Update - March 2026 */

/* Hero pricing text enhancement */
.hero-price {
    margin-top: 1.5rem;
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    opacity: 0.9;
    text-align: center;
}

/* App Store button enhancement */
.app-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    transition: all 0.3s ease;
    transform: scale(1);
}

.app-store-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.app-store-btn svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.app-store-btn:hover svg {
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}

/* Hero main paragraph enhancement */
.hero p:first-of-type {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #94a3b8;
    font-weight: 400;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Hero h1 enhancement */
.hero h1 {
    font-size: 8vw;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 80px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #10b981, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Responsive improvements */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        margin-top: 60px;
        letter-spacing: -0.02em;
    }
    
    .hero p:first-of-type {
        font-size: 1.1rem;
    }
    
    .hero-price {
        font-size: 1rem;
    }
}

/* Add subtle pulse to draw attention to pricing */
@keyframes subtlePulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.hero-price {
    animation: subtlePulse 3s ease-in-out infinite;
}
/* Center the entire hero section content */
.hero {
    text-align: center !important;
}

.hero h1 {
    text-align: center;
}

/* Force center all hero paragraphs */
.hero p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure App Store button is centered */
.hero .app-store-btn {
    display: inline-block;
    margin: 0 auto;
}


/* Remove any extra borders from App Store button */
.hero .app-store-btn {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Ensure SVG is the only visual element */
.hero .app-store-btn svg {
    display: block;
    border: none;
    outline: none;
}

