/* Home Page Specific Styles */
.hero-section {
  min-height: calc(100vh - 70px); /* Full viewport height minus nav */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 1rem;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 2rem;
  background-color: rgba(var(--bg-secondary-rgb), 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem var(--shadow);
  animation: fadeIn 1s ease-out, floatUp 1s ease-out;
  transform-origin: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--text-primary);
  line-height: 1.8;
}

.cta-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-button {
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button.primary {
  background-color: var(--accent-primary);
  color: white;
  box-shadow: 0 4px 10px rgba(var(--accent-primary-rgb), 0.3);
}

.cta-button.primary:hover {
  background-color: var(--accent-secondary);
  box-shadow: 0 6px 15px rgba(var(--accent-secondary-rgb), 0.4);
  transform: translateY(-3px);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-primary);
}

.cta-button.secondary:hover {
  background-color: var(--hover);
  color: var(--accent-primary);
  transform: translateY(-3px);
}

.cta-button i {
  margin-right: 0.5rem;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.info-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 0.5rem 1.5rem var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem var(--shadow);
  border-color: var(--accent-primary);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i {
  font-size: 1.8rem;
  color: white;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatUp {
  from {
    transform: translateY(30px);
  }
  to {
    transform: translateY(0);
  }
}

/* Canvas Styling */
canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .info-card {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .cta-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .info-cards {
    gap: 1.5rem;
  }
  
  .info-card {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
}

/* RGB variables removed as they're already in app_theme.css */
/*# sourceMappingURL=home.237ddb2a.css.map */