/* ===== HYEONTECH MAIN CSS ===== */
/* Import all modular CSS files in the correct order */

/* Base styles - Foundation */
@import 'base/variables.css';
@import 'base/reset.css';
@import 'base/utilities.css';

/* Components - Reusable UI elements */
@import 'components/navigation.css';
@import 'components/buttons.css';
@import 'components/cards.css';
@import 'components/forms.css';

/* Layout - Page structure */
@import 'layout/sections.css';
@import 'layout/pages.css';
@import 'layout/footer.css';

/* Utilities - Helpers and responsive */
@import 'utilities/responsive.css';

/* 
 * File Structure:
 * - base/variables.css: CSS custom properties and theme variables
 * - base/reset.css: CSS reset, typography, and base styles
 * - base/utilities.css: Utility classes, containers, and helpers
 * - components/navigation.css: Holographic navigation and logo
 * - components/buttons.css: All button styles and variants
 * - components/cards.css: All card components (service, product, stat, etc.)
 * - components/forms.css: Form elements and contact form
 * - layout/sections.css: Hero, services, products, CTA sections
 * - layout/pages.css: Page-specific styles (services, about, contact)
 * - layout/footer.css: Footer layout and styles
 * - utilities/responsive.css: All responsive breakpoints and media queries
 */

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--slate-900);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.hero-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  opacity: 0.8;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-16);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  position: relative;
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
