/* Global body background */
body {
    background-color: #f8fafc;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ======================= */
/* Header / Navbar Styles  */
/* ======================= */

.gradient-bg {
    /* Purple gradient for the top banner */
    background: linear-gradient(90deg, #6c47ff 0%, #a453ff 100%);
}

.text-purple-highlight {
    color: #7943FF !important;
}

.pill-new {
    background-color: #A066FF;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 50rem;
    margin-right: 0.5rem;
}

.nav-card {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 8px !important;
}

.btn-login {
    border: 1.5px solid #E5E7EB;
    color: #1F2937;
    transition: all 0.2s;
    padding: 0.5rem 1.5rem;
}

.btn-login:hover {
    background-color: #f8f9fa;
}

.btn-primary-purple {
    background-color: #8C52FF;
    color: #ffffff;
    transition: background-color 0.2s, box-shadow 0.2s;
    padding: 0.5rem 1.5rem;
    border: none;
}

.btn-primary-purple:hover {
    background-color: #7943FF;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.logo-icon {
    color: #7943FF;
    margin-right: 0.25rem;
    width: 24px;
    height: 24px;
}

.navbar-nav .nav-link {
    color: #495057 !important;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #7943FF !important;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin-right: 1.5rem;
    }
}

/* ======================= */
/* Footer Styles           */
/* ======================= */

.site-footer {
       padding: 60px 0 40px;
    border-top: 1px solid #e5e7eb;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
}

.footer-tagline {
    color: #6b7280;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    background-color: #ffffff;
    transition: all 0.2s;
}

.footer-social-icon:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.footer-heading {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.footer-link {
    display: block;
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.4rem;
    text-decoration: none;
}

.footer-link:hover {
    color: #7943FF;
    text-decoration: underline;
}

.footer-app-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.footer-app-badge {
    padding: 0.4rem 0.9rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: #ffffff;
}

.footer-bottom {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #9ca3af;
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 40px 0 24px;
        text-align: left;
    }
}


