/**
 * Global Styles - Top1to5.com
 * Shared base styles for all pages
 * Purpose: Typography, reset, and foundational styling
 * Version: 1.0
 * Created: 2026-06-05
 */

/* ============================================================================
   Global Reset
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: clip;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background: white;
    min-height: 100vh;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: clip;
    width: 100%;
    position: relative;
}

/* ============================================================================
   Typography
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #111827;
}

p {
    line-height: 1.6;
    color: #4b5563;
}

a {
    color: #8b5cf6;
    text-decoration: none;
}

a:hover {
    color: #7c3aed;
}

/* ============================================================================
   Utility Classes
   ============================================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
