/*
============================================
APERTURE SCIENCE - STYLES DE BASE
Fichier: aperture-base.css
Auteur: Emile SNYERS
Date: 2025-08-16
Version: 2.0
Licence: Creative Commons BY-NC 4.0

Description: Styles de base et reset CSS pour le framework Aperture Science
Définit les styles fondamentaux et la typographie de base
============================================
*/

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: var(--aperture-dark);
    color: var(--aperture-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: var(--font-size-xxl);
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2 {
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--aperture-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--aperture-orange);
}

button {
    background: var(--aperture-orange);
    color: var(--aperture-dark);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition-fast);
}

button:hover {
    background: var(--aperture-blue);
    transform: translateY(-2px);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

input, textarea, select {
    background: var(--aperture-grey);
    color: var(--aperture-white);
    border: 1px solid var(--aperture-light-grey);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--aperture-orange);
    box-shadow: 0 0 5px var(--aperture-orange);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--aperture-light-grey);
}

th {
    background: var(--aperture-orange);
    color: var(--aperture-dark);
    font-weight: bold;
}

/*
============================================
FIN DU FICHIER: aperture-base.css
Auteur: Emile SNYERS
Date: 2025-08-16
Version: 2.0

Styles de base appliqués à tous les éléments HTML
pour assurer une cohérence visuelle globale
============================================
*/
