﻿/* ===== NAVBAR ===== */



/* ===== main ===== */
.container-fluid {
    margin-top: 100px;

}

.mobile-menu-header {
    background: white;
    border-right: 1px solid #eee;
    height: calc(100vh - 100px);
    overflow-y: auto;
    position: sticky;
    top: 120px;
}

.main {
    background: var(--light-gray);
    overflow: hidden;
}


/* ===== QUICK SEARCH SIDEBAR ===== */
.quick-search-sidebar {
    background: white;
    border-right: 1px solid #eee;
    height: calc(100vh - 100px);
    overflow-y: auto;
    position: sticky;
    top: 120px;
    transition: transform 0.3s ease;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    border-bottom: 1px solid #eee;
}

.sidebar-header h5 {
    margin: 0;
    font-weight: 600;
}

.reset-filters {
    color: var(--primary-pink);
    text-decoration: none;
    font-size: 0.8rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-section .search-input-group .form-control{
    height: 40px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background: #f1f5f9;
    border-radius: 50px;
    font-size: 0.8rem;
    padding: 0.25rem;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--primary-pink);
    color: white;
}

.selected-influencers {
    position: fixed;
    top: 105px;
    z-index: 999;
}

.selected-influencers .alert {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow);
    justify-content: space-between;
    width: 100%;
}

.selected-influencers .alert .btn {
    font-size: 0.8rem;
}

.btn.start-Campaign{
    padding: 0.5rem 1rem;
}

/* ===== SORTING OPTIONS ===== */
.sorting-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 10px;
}

.results-count {
    font-size: 0.9rem;
    color: #64748b;
}

.sort-by {
    display: flex;
    align-items: center;
}

.sort-by span {
    font-size: 0.9rem;
    color: #64748b;
    width: 100px;
}

/* ===== INFLUENCER CARD ENHANCEMENTS ===== */
.influencer-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-item i {
    color: var(--primary-pink);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    background: #f8fafc;
}

.feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-pink);
    color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .quick-search-sidebar {
        border-bottom: 1px solid #eee;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        z-index: 1050;
        background: white;
        transform: translateX(-100%);
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .quick-search-sidebar.show {
        transform: translateX(0);
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        display: none;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .search-card {
        padding: 0.75rem;
    }

    .hero-banner h1 {
        font-size: 2.25rem;
    }

    .hero-banner .lead {
        font-size: 1.1rem;
    }

    .sidebar-header {
        flex-wrap: wrap;
    }

    .sidebar-header button {
        margin: 10px;
    }
}

@media (max-width: 768px) {

    .stats-bar .col-md-3 {
        margin-bottom: 1.5rem;
    }

    .hero-banner .col-lg-6:last-child {
        margin-top: 2rem;
    }

    .sorting-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .mobile-menu-header span {
        display: none;
    }
}

@media (max-width: 576px) {
    .btn-primary {
        padding: 0.5rem 1rem;
    }

    .selected-influencers .alert  div{
        display: flex;
        flex-direction: column;
        /* gap: 10px; */
        align-items: center;
    }

    .selected-influencers .alert  {
        font-size: 0.7rem;
    }
    .selected-influencers .alert button {
        font-size: 0.7rem;
        width: fit-content;
    }
}