/*
 * public/assets/css/global.css
 * Global styles applied to ALL pages.
 * Use for typography, containers, buttons, and resets.
 */

/* === 1. Base Reset and Typography === */
body {
    /* Changing font to Roboto (or similar modern sans-serif) */
    font-family: 'Roboto', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    background-color: #9e9e9e;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    /* Using a distinct, bolder font for headings */
    font-family: 'Oswald', 'Impact', sans-serif;
    color: #007bff; /* Electric Blue */
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600; /* Makes headings prominent */
    text-transform: uppercase; /* Gives a technical, blocky look */
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.6em; }

p {
    margin-bottom: 1em;
}

/* === 2. Global Containers === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === 3. Links and Buttons === */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

/* Primary Button Style (used in home.php) */
.btn-primary {
    background-color: #ffc107; /* Yellow Accent */
    color: #333;
    border: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e0a800;
}