/* ============================================
   Base: CSS Variables, Reset, Body & Typography
   ============================================ */

/* Global Variables */
:root {
    --bg-color: #ffe6db;
    --footer-bg: #f4c4b5;
    --border-color: #000000;
    --element-bg: #ffffff;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --border-width: 3px;
    --border-rad: 16px;
    --shadow-offset: 4px;
}

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

/* Body — background-color serves as WebGL fallback */
body {
    background-color: var(--bg-color);
    font-family: var(--font-main);
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Typography */
h1 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}

p {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}
