@import url('./theme.css');
@import url('./header.css');

:root {
  --ai-bg-color: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
  --ai-main-color: #e0e7ef;
  --ai-hero-c-color: #b0c4d8;
  --ai-hero-shadow: rgba(0, 200, 255, 0.2);
  --ai-hero-border: rgba(0, 200, 255, 0.3);
  --spacing: 2rem;
}

body {
  background: var(--ai-bg-color);
  color: var(--ai-main-color);
}

header,
footer,
.sidebar {
  background: var(--ai-bg-color) !important;
  border: unset !important;
}

#returnToTop {
  background: var(--ai-bg-color);
}

#returnToTop:hover {
  border-color: var(--ai-main-color);
  color: var(--ai-main-color);
}

.main-container {
  padding: 0 var(--spacing) var(--spacing) !important;
}

header #hamburger .fa-solid:hover {
  color: var(--ai-main-color) !important;
}

li.nav-item a {
  color: var(--ai-main-color);
}

li.nav-item a:hover,
p#copyright,
.fa-solid {
  color: var(--ai-hero-c-color) !important;

}

li.nav-item:hover {
  transform: scale(1.05);
}

.dropdown-content {
  background-color: #0067cd !important;
  border-radius: 4px;
}

li.nav-item a:hover, li.sidebar-item a:hover  {
  color: #0067cd !important;
}

 li.sidebar-item .dropdown-content a{
  color: var(--ai-hero-c-color);
}

li.sidebar-item .dropdown-content {
  /* background-color: #182f57 !important; */
}
/* Hero Section - 2 Columns */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px var(--ai-hero-shadow);
  border: 1px solid var(--ai-hero-border);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #00c8ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--ai-hero-c-color);
  margin-bottom: 16px;
}

/* Table Section */
.table-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--ai-hero-shadow);
}

.table-section h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #00c8ff;
  text-align: center;
}

.features-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.features-table thead {
  background: linear-gradient(90deg, #0066cc, #0099ff);
}

.features-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.features-table tbody tr {
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.features-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.06);
}

.features-table tbody tr:hover {
  background: var(--ai-hero-shadow);
  transform: scale(1.01);
}

.features-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #c0d0e0;
}

.features-table td:first-child {
  font-weight: 600;
  color: #00ff88;
}

/* Responsive Design */
@media screen and (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .table-section {
    padding: 20px;
    overflow-x: auto;
  }

  .features-table th,
  .features-table td {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}