/* Impact Page Specific Styles */

#main-content {
  padding-top: var(--space-8);
  padding-bottom: var(--space-16);
}

/* Hero Section */
.hero-section {
  padding: var(--space-12) 0 var(--space-16) 0;
  margin-bottom: var(--space-16);
  border-bottom: 2px solid rgba(0, 243, 255, 0.1);
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .split-hero {
    grid-template-columns: 1fr 1fr;
  }
}

.content-col h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-4);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

.content-col p {
  font-size: var(--font-size-base);
  color: var(--text-muted);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-6);
}

.img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.neon-img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 243, 255, 0.2);
  transition: all var(--transition-base);
}

.neon-img:hover {
  border-color: rgba(0, 243, 255, 0.5);
}

.primary-glow {
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3), 0 0 40px rgba(0, 243, 255, 0.1);
}

.neon-img.primary-glow:hover {
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.6), 0 0 60px rgba(0, 243, 255, 0.3);
}

.accent-glow {
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.3), 0 0 40px rgba(188, 19, 254, 0.1);
}

.neon-img.accent-glow:hover {
  box-shadow: 0 0 30px rgba(188, 19, 254, 0.6), 0 0 60px rgba(188, 19, 254, 0.3);
}

/* Section Layouts */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  padding: var(--space-12) 0;
  border-bottom: 1px solid rgba(0, 243, 255, 0.05);
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.content-col h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-4);
  color: var(--accent);
  text-shadow: var(--shadow-neon-accent);
}

.content-col p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-4);
}

/* Text Banner Card */
.text-banner {
  padding: var(--space-8);
  background: rgba(0, 243, 255, 0.05);
  border: 2px solid rgba(0, 243, 255, 0.2);
  border-radius: var(--radius-md);
  margin: var(--space-12) 0;
  transition: all var(--transition-base);
}

.text-banner:hover {
  border-color: rgba(0, 243, 255, 0.4);
  background: rgba(0, 243, 255, 0.08);
  box-shadow: var(--shadow-neon-primary);
}

.text-banner h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
  color: var(--primary);
  text-shadow: var(--shadow-neon-primary);
}

.text-banner p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

/* Card */
.card {
  padding: var(--space-6);
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid rgba(0, 243, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: rgba(0, 243, 255, 0.3);
  box-shadow: var(--shadow-neon-primary);
  background: rgba(18, 18, 26, 0.8);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(0, 243, 255, 0.1);
  box-shadow: var(--shadow-neon-primary);
}

/* Utility Classes */
.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.items-center {
  align-items: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.mt-8 {
  margin-top: var(--space-8);
}

.gap-6 {
  gap: var(--space-6);
}

/* Animations */
.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .split-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .content-col {
    order: 2;
  }

  .img-col {
    order: 1;
  }
}
