/**
 * Base Reset and Typography
 * Dawn Horizon Theme with Space Grotesk Typography
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Accessibility */
*:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    body::before {
        display: none;
    }
}