/* =========================================
   HERO WIDGETS (demond.de)
   ========================================= */

.base-home-hero-top-pad {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.base-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 0;
    padding: 20px 0 3rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

@media (min-width: 1024px) {
    .base-hero {
        flex-direction: row;
        text-align: left;
        padding: 20px 0 5rem;
        gap: 4rem;
    }
}

.base-hero-content {
    flex: 1;
    max-width: 600px;
}

.base-hero-visual {
    flex: 1;
    position: relative;
    perspective: 1000px;
    width: 100%;
}

.base-hero-image-wrapper {
    position: relative;
    transform: rotateY(-5px) rotateX(2px);
    transition: transform 0.5s ease;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.base-hero-image-wrapper:hover {
    transform: rotateY(-2px) rotateX(1px);
}

.base-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.base-hero-actions {
    margin-bottom: 3rem;
}

.base-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(252, 76, 2, 0.1);
    border: 1px solid rgba(252, 76, 2, 0.2);
    border-radius: 2rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.base-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
}
