/* LightScope Custom Styles */
.lightscope-logo {
  width: 40px;
  height: 40px;
  background-color: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
}

/* Additional styles for unwanted TCP traffic display */
.traffic-summary {
  background-color: rgba(13, 110, 253, 0.05);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.threat-level-low {
  color: #198754;
}

.threat-level-medium {
  color: #ffc107;
}

.threat-level-high {
  color: #dc3545;
}

/* Global navigation styles */
.top-nav {
  background-color: #000;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.top-nav .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

.top-nav .nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.top-nav .nav-link:hover {
  background-color: #5d0610;
  transform: translateY(-2px);
}

.page-title {
  background-color: #111;
  padding: 2rem 0;
  text-align: center;
  border-bottom: 1px solid #333;
}

.page-title h1 {
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .stats-card {
    margin-bottom: 1rem;
  }
  
  .stats-card .stat-value {
    font-size: 1.5rem;
  }
  
  .top-nav .nav-links {
    gap: 0.5rem;
  }
  
  .top-nav .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Main styling for LightScope website */
:root {
  --primary: #820814; /* Red color */
  --secondary: #6c757d;
  --success: #198754;
  --danger: #820814;
  --warning: #ffc107;
  --info: #0dcaf0;
  --light: #f8f9fa;
  --dark: #212529;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

.main-container {
  display: flex;
  flex-direction: column;
}

/* Hero section styling */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

.hero-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 800px;
}

/* Logo section styling */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0rem 0;
}

.partner-logo {
  height: 80px;
  margin: 0 20px 20px;
}

/* Navigation styling */
.nav-section {
  margin: 3rem 0;
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #5d0610;
  transform: translateY(-2px);
}

.nav-link.active {
  background-color: var(--primary);
  color: white;
}

/* NSF acknowledgment styling */
.nsf-section {
  background-color: #111;
  padding: 0rem 0;
  margin-top: 0rem;
  width: 100%;
}

.nsf-container {
  display: flex;
  align-items: center;
  justify-content: center;
  
  margin: 0 auto;
  padding: 0 rem;
  width: 100%;
}

.nsf-logo {
  height: 100px;
  margin-right: 2rem;
  flex-shrink: 0;
}

.nsf-text {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  flex: 1;
  max-width: none;
}

/* Content pages styling */
.content-page {
  background-color: #111;
  color: #f8f9fa;
  padding: 2rem 0;
  min-height: 70vh;
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-header {
  color: var(--primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.section {
  margin-bottom: 3rem;
}

.section-title {
  color: #f8f9fa;
  margin-bottom: 1rem;
}

/* Footer styling */
footer {
  background-color: #111;
  padding: 2rem 0;
  text-align: center;
  margin-top: auto;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-link {
  color: #ccc;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

.copyright {
  font-size: 0.9rem;
  color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 80%;
  }
  
  .partner-logo {
    height: 60px;
    margin: 0px;
  }
  
  .nsf-container {
    flex-direction: column;
    text-align: center;
  }
  
  .nsf-logo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.logo-primary {
    height: 60px;
    margin-right: 15px;
}

.lightscope-text {
    margin-left: 10px;
    color: #fff;
}

.lightscope-text h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    margin-top: 420px;
}

.lightscope-text p {
    margin: 0;
    font-size: 10px;
    opacity: 0.9;
    color: #fff;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
}

.top-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.nav-links {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
} 