/* _content/BauernhofWebApp/Pages/Details/BecomeSeller.razor.rz.scp.css */
/* ==========================================================================
   BecomeSeller.razor – Scoped Styles (CSS Isolation)
   ==========================================================================
   Component-specific styles that are NOT shared across the app.
   Shared animations (fade-in, scroll-reveal, float, blob) live in app.css.
   All colors reference design-tokens.css via CSS custom properties.
   ========================================================================== */

/* ---- Animated Gradient Background ---- */
.gradient-animated[b-amrezbn13q] {
    background: linear-gradient(
        -45deg,
        var(--f-color-primary),
        var(--f-color-primary-dark),
        var(--f-color-primary-darker),
        var(--f-color-success-dark)
    );
    background-size: 400% 400%;
    animation: gradientShift-b-amrezbn13q 15s ease infinite;
}

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

/* ---- Glassmorphism ---- */
.glass[b-amrezbn13q] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark[b-amrezbn13q] {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Modern Card Hover (shimmer + lift) ---- */
.modern-card[b-amrezbn13q] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-card[b-amrezbn13q]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.modern-card:hover[b-amrezbn13q]::before {
    transform: translateX(100%);
}

.modern-card:hover[b-amrezbn13q] {
    transform: translateY(-5px);
    box-shadow: var(--f-shadow-lg);
}

/* ---- Gradient Border on Hover ---- */
.gradient-border[b-amrezbn13q] {
    position: relative;
    background: var(--f-color-white);
    border-radius: var(--f-radius-xl);
}

.gradient-border[b-amrezbn13q]::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(
        45deg,
        var(--f-color-primary),
        var(--f-color-primary-dark),
        var(--f-color-primary-darker),
        var(--f-color-success-dark)
    );
    border-radius: var(--f-radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.gradient-border:hover[b-amrezbn13q]::before {
    opacity: 1;
}

/* ---- Animated Underline ---- */
.animated-underline[b-amrezbn13q] {
    position: relative;
    display: inline-block;
}

.animated-underline[b-amrezbn13q]::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--f-color-primary), var(--f-color-primary-dark));
    transition: width 0.3s ease;
}

.animated-underline:hover[b-amrezbn13q]::after {
    width: 100%;
}

/* ---- Pulse CTA ---- */
.pulse-animation[b-amrezbn13q] {
    animation: pulse-cta-b-amrezbn13q 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-cta-b-amrezbn13q {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.8; }
}

/* ---- Counter reveal ---- */
.counter[b-amrezbn13q] {
    display: inline-block;
    animation: countUp-b-amrezbn13q 2s ease-out;
}

@keyframes countUp-b-amrezbn13q {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Dot pattern background ---- */
.bg-pattern-dots[b-amrezbn13q] {
    background-image:
        radial-gradient(circle at 20px 20px, rgba(0, 0, 0, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 60px 60px, rgba(0, 0, 0, 0.05) 2px, transparent 2px);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
}
/* _content/BauernhofWebApp/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-2ze2wwf2hd] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-2ze2wwf2hd] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-2ze2wwf2hd] {
    font-size: 1.1rem;
}

.oi[b-2ze2wwf2hd] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-2ze2wwf2hd] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-2ze2wwf2hd] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-2ze2wwf2hd] {
        padding-bottom: 1rem;
    }

    .nav-item[b-2ze2wwf2hd]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-2ze2wwf2hd]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-2ze2wwf2hd]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-2ze2wwf2hd] {
        display: none;
    }

    .collapse[b-2ze2wwf2hd] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-2ze2wwf2hd] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
