/* =============================================
   INFYBLAZE – Details Page Styles
   styles/details.css
   ============================================= */

.info-page-wrapper {
  padding-top: 120px;
  padding-bottom: 100px;
  min-height: 80vh;
}

.details-hero {
  max-width: 800px;
  margin-bottom: 64px;
}

.details-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.details-desc {
  font-size: 1.15rem;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 40px;
}

.details-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.details-grid-container {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 48px;
}

.details-grid-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: #fff;
}

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

.detail-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.feature-bullet {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px currentColor);
}

.feature-text {
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .info-page-wrapper {
    padding-top: 100px;
  }
}
