/* ============================================
   SiteIsOnline - Minimal Clean Design
   Colors: Black, White, Blue, Green (No Gradients)
   ============================================ */

:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --success-color: #00C851;
    --success-dark: #00A043;
    --danger-color: #FF3547;
    --dark-color: #1a1a1a;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
}

/* Override Bootstrap Primary Color */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

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

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

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

.bg-success {
    background-color: var(--success-color) !important;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.navbar-brand svg {
    transition: transform 0.3s ease;
}

.navbar-brand:hover svg {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    position: relative;
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .nav-link.active::after {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

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

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bg-primary-soft {
    background-color: rgba(0, 102, 255, 0.1);
}

.bg-success-soft {
    background-color: rgba(0, 200, 81, 0.1);
}

.bg-info-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.text-info {
    color: #0d6efd !important;
}

/* Monitor Demo Card */
.monitor-demo {
    background: white;
}

.badge.bg-success-soft,
.bg-success-soft {
    background-color: rgba(0, 200, 81, 0.15) !important;
}

.badge.bg-success-soft {
    color: var(--success-color);
    font-weight: 600;
    border: 1px solid rgba(0, 200, 81, 0.3);
}

.badge.bg-warning-soft,
.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.15) !important;
}

.badge.bg-warning-soft {
    color: #d39e00;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.badge.bg-danger-soft,
.bg-danger-soft {
    background-color: rgba(255, 53, 71, 0.15) !important;
}

.badge.bg-danger-soft {
    color: var(--danger-color);
    font-weight: 600;
    border: 1px solid rgba(255, 53, 71, 0.3);
}

.text-warning {
    color: #d39e00 !important;
}

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

.uptime-bar {
    height: 32px;
    flex: 1;
    border-radius: 2px;
}

.uptime-chart {
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    position: relative;
}

.pricing-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .check-icon {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Forms */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Auth Pages - Using main layout now */

/* Badges */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    transition: all 0.2s ease;
    border-width: 2px;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    box-shadow: 0 2px 4px rgba(0, 102, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.3);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.2);
    transform: translateY(-1px);
}

.btn-outline-dark {
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
}

.btn-outline-dark:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
}

/* Cards */
.card {
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Footer */
footer a {
    position: relative;
    transition: all 0.3s ease;
}

footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

/* Status Indicators */
.status-online {
    color: var(--success-color);
}

.status-offline {
    color: var(--danger-color);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.status-dot.online {
    background-color: var(--success-color);
}

.status-dot.offline {
    background-color: var(--danger-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .auth-card {
        padding: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.shadow-soft {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.border-soft {
    border: 1px solid var(--border-color);
}

/* Stats Cards */
.stats-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 200, 81, 0.05);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer-section {
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Notification Channels */
.notification-channel {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.2s;
}

.notification-channel:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Legal Documents */
.legal-document h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-document h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.legal-document p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-document ul,
.legal-document ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-document a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

/* No Gradients - All flat colors (except subtle CTA background) */
