/* Hero Section Component Styles */

/* Hero section specific styling */
#luna-hero .hero-section {
    background: linear-gradient(135deg, rgb(0, 0, 0), #7c3aed) !important;
    color: rgb(255, 255, 255) !important;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#luna-hero .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.15"><circle cx="30" cy="30" r="3"/></g></g></svg>');
    pointer-events: none;
    z-index: 1;
    transform: var(--dots-transform, translateY(0));
    will-change: transform;
}

#luna-hero .hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Hero text elements */
#luna-hero .hero-section h1,
#luna-hero .hero-section h2,
#luna-hero .hero-section h3,
#luna-hero .hero-section h4,
#luna-hero .hero-section p,
#luna-hero .hero-section li,
#luna-hero .hero-section span,
#luna-hero .hero-title,
#luna-hero .hero-description,
#luna-hero .hero-badge-description,
#luna-hero .hero-rating-text {
    color: rgb(255, 255, 255) !important;
}

#luna-hero .hero-title {
    color: #87ceeb !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#luna-hero .hero-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero badge (V3.0 button) */
#luna-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 27px;
    padding: 4px 12px 4px 4px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#luna-hero .hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

#luna-hero .hero-badge-inner {
    background-color: rgb(0, 0, 0);
    border-radius: 23px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

#luna-hero .hero-badge-text {
    color: rgb(248, 250, 252);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

#luna-hero .hero-badge svg {
    flex-shrink: 0;
    margin-left: 4px;
}

#luna-hero .hero-badge-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
}

/* Hero CTA button */
#luna-hero .hero-cta {
    display: inline-flex;
    align-items: center;
    background: #7c3aed !important;
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

#luna-hero .hero-cta:hover {
    background: #6d28d9 !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Hero review section */
#luna-hero .hero-review {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#luna-hero .hero-stars {
    display: flex;
    gap: 4px;
}

#luna-hero .star-icon {
    width: 20px;
    height: 20px;
    color: #22c55e !important;
}

#luna-hero .hero-rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #luna-hero .hero-section {
        padding: 60px 20px 40px;
    }

    #luna-hero .hero-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    #luna-hero .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    #luna-hero .hero-badge {
        margin-bottom: 24px;
    }

    #luna-hero .hero-cta {
        padding: 14px 28px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    #luna-hero .hero-title {
        font-size: 32px;
    }

    #luna-hero .hero-badge {
        padding: 8px;
        gap: 6px;
        border-radius: 20px;
    }

    #luna-hero .hero-badge-description {
        font-size: 11px;
        padding: 0 4px;
    }

    #luna-hero .hero-badge-inner {
        padding: 6px 12px;
    }

    #luna-hero .hero-badge svg {
        width: 12px;
        height: 12px;
        margin-left: 2px;
    }
}