/* Stackshine Custom Styles */

:root {
    --gradient-color-1: #e0f2fe;
    --gradient-color-2: #d1fae5;
    --gradient-color-3: #ecfeff;
    --gradient-color-4: #bae6fd;
    --denim-50: #f0f5ff;
    --denim-500: #3b5998;
    --denim-800: #1e3a5f;
    --denim-900: #0f2440;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Gradient background */
.hero-gradient {
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3));
}

.bg-denim-900 { background-color: var(--denim-900); }
.bg-denim-800 { background-color: var(--denim-800); }
.bg-denim-500 { background-color: var(--denim-500); }
.bg-denim-50 { background-color: var(--denim-50); }
.text-denim-800 { color: var(--denim-800); }
.text-denim-900 { color: var(--denim-900); }

/* Banner */
.top-banner {
    background-color: var(--denim-900);
}

/* Navigation active pill */
.nav-pill-active {
    background: white;
    font-weight: 700;
    box-shadow: 0 0 0 2px rgba(191, 219, 254, 0.2);
}

/* Primary button */
.btn-primary {
    background-color: #1e40af;
    color: white;
    padding: 0.625rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.2s;
    display: inline-block;
    text-decoration: none;
}
.btn-primary:hover {
    background-color: #1d4ed8;
    color: white;
}

.btn-yellow {
    background-color: #fef9c3;
    color: #854d0e;
    padding: 0.625rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
}
.btn-yellow:hover {
    background-color: #fef08a;
}

/* Feature icon circle */
.icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(to right, #2563eb, #0284c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image styling */
.img-showcase {
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Highlight span */
.text-highlight {
    background-color: #e7f0f9;
    padding: 0 0.25rem;
    border-radius: 0.25rem;
}

/* Vendor logos */
.vendor-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    height: 2rem;
    transition: opacity 0.2s;
}
.vendor-logo:hover {
    opacity: 1;
}

/* Testimonial card */
.testimonial-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(107, 114, 128, 0.6);
    mix-blend-mode: multiply;
    z-index: 1;
}
.testimonial-card .content {
    position: relative;
    z-index: 2;
}

/* Feature grid */
.feature-grid-dark {
    background: linear-gradient(to bottom right, #1e40af, #0369a1);
}

/* Mobile menu */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-menu {
    display: none;
}
.mobile-menu.active {
    display: block;
}

.mobile-toggle {
    display: none;
}

@media (max-width: 768px) {
    .desktop-nav { display: none !important; }
    .mobile-toggle { display: block; }
}
@media (min-width: 769px) {
    .desktop-nav { display: flex !important; }
    .mobile-toggle { display: none; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }
