/* Home Page Specific Styles */

.home-body {
  background: #0a0e27;
  color: #fff;
  min-height: 100vh;
}

/* Navigation */
.home-nav {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(102, 126, 234, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 16px;
}

.nav-links a:hover {
  color: #667eea;
}

.btn-nav-login {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 10px 25px;
  border-radius: 25px;
  color: #fff !important;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-nav-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
  padding: 150px 40px 100px;
  text-align: center;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(102, 126, 234, 0.1) 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 28px;
  color: #a0aec0;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-description {
  font-size: 18px;
  color: #cbd5e0;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 2px solid #667eea;
  color: #fff;
}

.btn-outline:hover {
  background: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Features Section */
.features {
  padding: 100px 40px;
  background: rgba(15, 20, 40, 0.5);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.feature-icon {
  font-size: 60px;
  margin-bottom: 20px;
  filter: grayscale(0.3);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #667eea;
}

.feature-card p {
  color: #cbd5e0;
  line-height: 1.6;
  font-size: 16px;
}

/* CTA Section */
.cta {
  padding: 100px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
}

.cta p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cta .btn-outline:hover {
  background: #fff;
  color: #667eea;
}

.cta .btn-primary {
  background: #fff;
  color: #667eea;
  border: 2px solid #fff;
}

.cta .btn-primary:hover {
  background: transparent;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.home-footer {
  background: #0a0e27;
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-footer p {
  color: #718096;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features h2,
  .cta h2 {
    font-size: 32px;
  }
}
