/* SIMAP Crawler - Public Styles */

/* Navbar */
#mainNav {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

#mainNav .navbar-brand {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 40%, #1565c0 70%, #42a5f5 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.03) 0%, transparent 60%);
}

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

.hero-section h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
}

/* Cards */
.card {
  border-radius: 0.5rem;
  transition: transform 0.2s ease;
}

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