/**
 * Global Styles - We Got Edge Astro
 * Imports all required CSS files
 */

/* Base variables */
:root {
  --primary: #00ff66;
  --primary-dark: #00cc44;
  --background: #0a0a0a;
  --surface: #111111;
  --text: #e0e0e0;
  --text-muted: #888888;
  --border: #1a1a1a;
}

/* Base reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Import other CSS files */
@import url('./frontend.min.css');
@import url('./custom.css');
@import url('./semplice4_child-style.css');

/* Hero section fixes */
.semplice-cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.semplice-cover .container {
  position: relative;
  z-index: 1;
}

/* Typography fixes */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  overflow: visible;
  white-space: normal;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
