/* ============================================
   Homepage Hero Styles
   Note: Category styles moved to category.css
   ============================================ */

/* Hero Section Styles */
.homepage-hero {
    /* Light subtle gradient to keep focus on the product image */
    background: linear-gradient(to right, #f8faff 0%, #eef2ff 100%);
    color: #121f48;
    padding: 5px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-cta {
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-cta i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .homepage-hero {
        padding: 48px 0;
        min-height: 300px;
    }
}
