/**
 * HyzenPro Hero Widget - Dedicated Styles
 * 
 * Full-width hero section with fixed colors (no mode switching).
 * Matches the original Lovable design exactly.
 */

/* ========================================
   HERO SECTION - FULL WIDTH
   ======================================== */

.hyzen-hero {
    width: 100%;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: transparent;
}

@media (min-width: 1024px) {
    .hyzen-hero {
        padding: 6rem 0 8rem;
    }
}

/* Hero container - FULL WIDTH, NO SIDE GAPS */
.hyzen-hero .hyzen-container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
    margin: 0;
}

@media (min-width: 1400px) {
    .hyzen-hero .hyzen-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
    }
}

/* Grid Layout */
.hyzen-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hyzen-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hyzen-hero-content {
    max-width: 600px;
}

/* ========================================
   HERO BADGE
   ======================================== */

.hyzen-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #171717;
    border: 1px solid #171717;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px -2px rgba(0, 0, 0, 0.15);
}

.hyzen-hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: #ffffff;
}

/* ========================================
   HERO HEADINGS - BLACK TEXT
   ======================================== */

.hyzen-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #000000;
}

@media (min-width: 768px) {
    .hyzen-hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hyzen-hero h1 {
        font-size: 4rem;
    }
}

/* Underline decoration */
.hyzen-hero-underline {
    position: relative;
    display: inline-block;
}

.hyzen-hero-underline svg {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 12px;
}

.hyzen-hero-underline svg path {
    stroke: #f59e0b;
}

/* Description */
.hyzen-hero-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.125rem;
    color: #404040;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ========================================
   HERO BUTTONS
   ======================================== */

.hyzen-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Primary Button */
.hyzen-hero .hyzen-btn-primary {
    background: #171717;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.15);
}

.hyzen-hero .hyzen-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.2);
}

/* Outline Button */
.hyzen-hero .hyzen-btn-outline {
    background: #ffffff;
    color: #171717;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 2px solid #171717;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hyzen-hero .hyzen-btn-outline:hover {
    background: #171717;
    color: #ffffff;
}

/* ========================================
   HERO SEARCH BAR
   ======================================== */

.hyzen-hero-search {
    position: relative;
    max-width: 500px;
    background: #171717;
    border-radius: 1rem;
    padding: 0.25rem;
}

.hyzen-search-form {
    position: relative;
    width: 100%;
}

.hyzen-hero-search input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    background: transparent;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    color: #ffffff;
    outline: none;
}

.hyzen-hero-search input::placeholder {
    color: #a3a3a3;
}

.hyzen-hero-search>svg,
.hyzen-hero-search .hyzen-search-form>svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #a3a3a3;
    z-index: 1;
}

/* Search Results Dropdown */
.hyzen-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: #171717;
    border-radius: 1rem;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hyzen-search-results.active {
    display: block;
}

.hyzen-search-result-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid #262626;
}

.hyzen-search-result-item:last-child {
    border-bottom: none;
}

.hyzen-search-result-item:hover {
    background: #262626;
}

.hyzen-search-result-item img {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.hyzen-search-result-name {
    font-weight: 500;
}

.hyzen-search-no-results {
    padding: 1rem;
    color: #a3a3a3;
    text-align: center;
}

/* ========================================
   HERO ANIMATED VISUAL
   ======================================== */

.hyzen-hero-visual {
    display: none;
    position: relative;
    height: 500px;
}

@media (min-width: 1024px) {
    .hyzen-hero-visual {
        display: block;
    }
}

/* Central Orb - Gray Gradient */
.hyzen-hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #525252, #737373);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.25);
    animation: hyzen-morph 8s ease-in-out infinite;
}

.hyzen-hero-orb svg {
    width: 4rem;
    height: 4rem;
    color: #ffffff;
}

/* Pulse Rings - Visible Dark Circles */
.hyzen-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 256px;
    height: 256px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

/* Orbiting Icons - Dark Cards */
.hyzen-orbit-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: #171717;
    border: 1px solid #262626;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.3);
}

.hyzen-orbit-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
}