/**
 * Orlando Studio - Features Section Component
 * Feature showcase with 2x2 grid layout
 * BEM: features, features__heading, features__title, features__subtitle, features__grid
 */

.features {
  background: var(--color-background-70);
  backdrop-filter: blur(10px);
}

.features__heading {
  /* Orlando Note: Could use .section-heading + .max-w-800 utilities in HTML */
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-4xl);
}

.features__title {
  font-size: var(--font-size-h1);
  margin-bottom: var(--space-lg);
}

.features__subtitle {
  font-size: var(--font-size-h3);
  color: var(--color-text-secondary);
  font-weight: var(--font-normal);
  line-height: var(--line-height-relaxed);
}

.features__grid {
  /* Orlando Note: Could use .max-w-1000 utility in HTML */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

/* Orlando Standard: No hover effects on feature cards
   These are informational display cards, not interactive elements */

/* Enhanced card titles with accent bar */
.features .card__title {
  position: relative;
  padding-left: var(--space-lg);
}

.features .card__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-xl);
  }
  
  .features__heading {
    margin-bottom: var(--space-3xl);
  }
}

@media (max-width: 600px) {
  .features__title {
    font-size: var(--font-size-h2);
  }
  
  .features__subtitle {
    font-size: var(--font-size-body);
  }
}

@media (max-width: 480px) {
  .features__grid {
    gap: var(--space-lg);
  }
  
  .features__heading {
    margin-bottom: var(--space-2xl);
  }
}
