/* DataJoyAI CSS with Brand Colors */

/* Hero section styling */
.hero-section {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.logo-container {
  margin: 2rem 0;
}

.main-logo {
  max-width: 400px;
  width: 80%;
  height: auto;
}

.tagline {
  margin: 3rem 0 2rem 0;
  color: #8B4513;
}

.accessibility-badge {
  margin: 3rem 0;
}

.accessibility-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  margin: 3rem 0;
}

.cta-buttons a {
  display: inline-block;
  padding: 12px 24px;
  margin: 0 10px;
  background-color: #3E5C76;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.cta-buttons a:hover {
  background-color: #1F6A8E;
}

/* Navigation styling with DataJoyAI brand colors - Bigger navbar */
.navbar {
  background-color: #0A1A2F !important;
  border-bottom: 2px solid #3E5C76;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  padding: 1rem 1.5rem !important;
  min-height: 70px;
}

/* Logo and icon styling - Bigger */
.navbar img {
  height: 50px;
  width: auto;
}

/* Navigation links with white text and bold font - Bigger */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
  background-color: rgba(255,255,255,0.2);
  border-radius: 6px;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

/* Active/selected navigation item */
.navbar-nav .nav-link.active {
  color: #ffffff !important;
  background-color: rgba(255,255,255,0.3);
  border-radius: 6px;
  font-weight: 700 !important;
}

/* Navbar brand/title styling - Bigger */
.navbar-brand {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
}

/* Content area */
.page-body {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1 {
  color: #0A1A2F;
  margin-bottom: 1rem;
}

h2 {
  color: #3E5C76;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
  .navbar img {
    height: 30px;
  }
  
  .page-body {
    padding: 1rem;
  }
}