/* RemoteHuntr Custom Styles */

:root {
    --primary-color: #2E178C;
    --secondary-color: #5E3EE0;
    --accent-color: #5E3EE0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --gradient-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --border-radius: 5px;
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
}

/* Headers and Titles - Barlow Regular */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.navbar-brand,
.btn,
.badge,
.alert,
strong, b,
.fw-bold, .fw-semibold, .fw-medium {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}

/* Content - Barlow Thin */
p, span, div, li, td, th, label, input, textarea, select,
.text-muted, .small, .lead {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
}

.btn {
    border-radius: 5px;
    font-weight: 400;
    padding: 10px 24px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: white;
    border: none;
}

.btn-accent:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-2px);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-gradient {
    background: var(--gradient-bg);
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 400;
}

.navbar-nav .nav-link {
    font-weight: 400;
    margin: 0 5px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 10px;
}

.hero-stats .stat-item h4 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #5E3EE0;
}

.hero-stats .stat-item small {
    color: #333333;
    font-size: 0.9rem;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 400;
    transform: rotate(45deg);
    text-align: center;
}

.price-display {
    margin: 20px 0;
}

.price-display .price {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.price-display .period {
    font-size: 1rem;
    color: #666;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Forms */
.form-control {
    border-radius: 5px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
}

.form-label {
    font-weight: 400;
    color: #555;
    margin-bottom: 8px;
}

/* Cards */
.card {
    border-radius: var(--border-radius);
    border: none;
    transition: var(--transition);
}

.card:hover {
}

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 400;
}

/* Search Results */
.search-result-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.search-result-item:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.search-result-title {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-decoration: none;
}

.search-result-title:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.search-result-url {
    color: #28a745;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.search-result-snippet {
    color: #666;
    line-height: 1.6;
}

/* Pagination */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    border: 2px solid #e9ecef;
    color: var(--primary-color);
    font-weight: 400;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Dashboard */
.dashboard-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.dashboard-card:hover {
}

.dashboard-stat {
    text-align: center;
    padding: 20px;
}

.dashboard-stat h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dashboard-stat p {
    color: #666;
    margin-bottom: 0;
    font-weight: 300;
}

/* Search History */
.search-history-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.search-history-item:hover {
    background-color: #f8f9fa;
}

.search-history-item:last-child {
    border-bottom: none;
}

.search-query {
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.search-timestamp {
    color: #666;
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Footer */
.footer {
    background: var(--dark-color) !important;
    color: white;
}

.footer a {
    color: #bbb;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ccc;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .feature-card,
    .testimonial-card,
    .dashboard-card {
        margin-bottom: 30px;
    }
    
    .search-result-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .search-result-item:hover {
        transform: none;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
	
	
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .price-display .price {
        font-size: 2rem;
    }
    
    .dashboard-stat h3 {
        font-size: 2rem;
    }
    
    .features-section,
    .pricing-section,
    .testimonials-section {
        padding: 60px 0;
    }
}

/* Dark mode support 
@media (prefers-color-scheme: dark) {
    .card,
    .feature-card,
    .testimonial-card,
    .pricing-card,
    .dashboard-card,
    .search-result-item {
        background-color: #2d3748;
        color: white;
    }
    
    .form-control {
        background-color: #2d3748;
        border-color: #4a5568;
        color: white;
    }
    
    .form-control:focus {
        background-color: #2d3748;
        border-color: var(--primary-color);
        color: white;
    }
}*/

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(45deg, var(--primary-color), var(--accent-color)) 1;
}



/* Force light mode - Override device dark mode */
:root {
    color-scheme: light only;
}

/* Ensure all elements use light colors */
* {
    color-scheme: light !important;
}

/* Override any dark mode media queries */
@media (prefers-color-scheme: dark) {
    /* Force light theme even in dark mode */
    body, html {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    
    /* Override any dark styling */
    .card, .bg-dark, .navbar-dark {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
}

                    