/* _content/cdsa.solutions/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* ============================================
   _Layout.cshtml.css - Community Tech Colors
   ============================================ */

/* Navbar & Header */
a.navbar-brand[b-0qn7nj2tey] {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    color: var(--color-deep-blue, #004080);
    font-weight: 700;
}

a[b-0qn7nj2tey] {
    color: var(--color-green, #009245);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover[b-0qn7nj2tey] {
        color: var(--color-deep-blue, #004080);
    }

/* Buttons */
.btn-primary[b-0qn7nj2tey] {
    color: #fff;
    background: linear-gradient(135deg, #009245 0%, #004080 100%);
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover[b-0qn7nj2tey] {
        background: linear-gradient(135deg, #FF6F20 0%, #009245 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 64, 128, 0.25);
    }

/* Nav Pills */
.nav-pills .nav-link.active[b-0qn7nj2tey],
.nav-pills .show > .nav-link[b-0qn7nj2tey] {
    color: #fff;
    background: linear-gradient(135deg, #009245 0%, #004080 100%);
    border: none;
}

.nav-pills .nav-link[b-0qn7nj2tey] {
    color: var(--color-dark-gray-90, #0c0c0d);
    transition: all 0.3s ease;
}

    .nav-pills .nav-link:hover[b-0qn7nj2tey] {
        color: var(--color-green, #009245);
    }

/* Borders */
.border-top[b-0qn7nj2tey] {
    border-top: 2px solid var(--color-green, #009245) !important;
}

.border-bottom[b-0qn7nj2tey] {
    border-bottom: 1px solid #e0e0e6;
}

/* Box Shadow */
.box-shadow[b-0qn7nj2tey] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Cookie Policy Button */
button.accept-policy[b-0qn7nj2tey] {
    font-size: 1rem;
    line-height: inherit;
    background: var(--color-green, #009245);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    button.accept-policy:hover[b-0qn7nj2tey] {
        background: var(--color-deep-blue, #004080);
        transform: translateY(-2px);
    }

/* Footer */
.footer[b-0qn7nj2tey] {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    background: var(--color-white, #fff);
    border-top: 3px solid var(--color-green, #009245);
}

/* Cards (for Index offerings section) */
.card-mozilla[b-0qn7nj2tey] {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border: none;
}

    .card-mozilla:hover[b-0qn7nj2tey] {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 146, 69, 0.2);
    }

.card-image[b-0qn7nj2tey] {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body[b-0qn7nj2tey] {
    padding: 1.5rem;
    background: white;
}

.card-title[b-0qn7nj2tey] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-deep-blue, #004080);
    font-family: 'Zilla Slab', serif;
}

.card-text[b-0qn7nj2tey] {
    font-size: 0.95rem;
    color: var(--color-dark-gray-70, #38383d);
    line-height: 1.6;
}

.spotlight-link[b-0qn7nj2tey] {
    font-weight: 600;
    color: var(--color-green, #009245);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

    .spotlight-link:hover[b-0qn7nj2tey] {
        color: var(--color-orange, #FF6F20);
        text-decoration: underline;
    }

    .spotlight-link[b-0qn7nj2tey]::after {
        content: '→';
        transition: transform 0.3s ease;
    }

    .spotlight-link:hover[b-0qn7nj2tey]::after {
        transform: translateX(4px);
    }

/* Hero Buttons */
.hero-buttons .btn-primary[b-0qn7nj2tey],
.hero-buttons .btn-outline[b-0qn7nj2tey] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary[b-0qn7nj2tey] {
    background: linear-gradient(135deg, #009245 0%, #004080 100%);
    color: #fff;
    border: none;
}

    .hero-buttons .btn-primary:hover[b-0qn7nj2tey] {
        background: linear-gradient(135deg, #FF6F20 0%, #009245 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 146, 69, 0.3);
    }

.hero-buttons .btn-outline[b-0qn7nj2tey] {
    border: 2px solid var(--color-green, #009245);
    color: var(--color-green, #009245);
    background: transparent;
}

    .hero-buttons .btn-outline:hover[b-0qn7nj2tey] {
        background-color: var(--color-green, #009245);
        color: #fff;
        transform: translateY(-2px);
    }

/* Additional Enhancements */
.section-title[b-0qn7nj2tey] {
    font-family: 'Zilla Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-deep-blue, #004080);
    margin-bottom: 1rem;
}

.section-subtitle[b-0qn7nj2tey] {
    font-size: 1.1rem;
    color: var(--color-dark-gray-70, #38383d);
    margin-bottom: 2rem;
}

/* Accent Colors for Different Sections */
.accent-green[b-0qn7nj2tey] {
    color: var(--color-green, #009245);
}

.accent-orange[b-0qn7nj2tey] {
    color: var(--color-orange, #FF6F20);
}

.accent-yellow[b-0qn7nj2tey] {
    color: var(--color-yellow, #FFD633);
}

.accent-blue[b-0qn7nj2tey] {
    color: var(--color-deep-blue, #004080);
}

/* Background Utilities */
.bg-light-blue[b-0qn7nj2tey] {
    background-color: var(--color-light-blue-bg, #E6EEF5);
}

.bg-white-section[b-0qn7nj2tey] {
    background-color: white;
    padding: 64px 0;
}

/* Decorative Elements */
.decorative-line[b-0qn7nj2tey] {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #009245 0%, #FF6F20 50%, #FFD633 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.decorative-line-left[b-0qn7nj2tey] {
    margin: 0 0 2rem 0;
}

/* Card Hover Effects with Brand Colors */
.card-hover-green:hover[b-0qn7nj2tey] {
    border-left: 4px solid var(--color-green, #009245);
}

.card-hover-orange:hover[b-0qn7nj2tey] {
    border-left: 4px solid var(--color-orange, #FF6F20);
}

.card-hover-blue:hover[b-0qn7nj2tey] {
    border-left: 4px solid var(--color-deep-blue, #004080);
}

/* Badge Styles */
.badge-green[b-0qn7nj2tey] {
    background-color: var(--color-green, #009245);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-orange[b-0qn7nj2tey] {
    background-color: var(--color-orange, #FF6F20);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-blue[b-0qn7nj2tey] {
    background-color: var(--color-deep-blue, #004080);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title[b-0qn7nj2tey] {
        font-size: 2rem;
    }

    .hero-buttons .btn-primary[b-0qn7nj2tey],
    .hero-buttons .btn-outline[b-0qn7nj2tey] {
        width: 100%;
        margin-bottom: 1rem;
    }

    .card-mozilla[b-0qn7nj2tey] {
        margin-bottom: 1.5rem;
    }
}
