/* ============================================
   GLOBAL.CSS - Base Styles & Design System
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --navy-deep: #0a1929;
    --navy-darker: #051220;
    --gold-primary: #e6b800;
    --gold-light: #ffd966;
    --gold-dark: #cc9900;
    --white-pure: #ffffff;
    --white-soft: #f8fafc;
    --gray-100: #eef2f6;
    --gray-200: #dce3eb;
    --gray-300: #c1ccd9;
    --gray-400: #9aa6b5;
    --gray-500: #7c8a9a;
    --gray-600: #5f6c7a;
    --gray-700: #3f4a55;
    --gray-800: #2b343d;
    --gray-900: #1a1f26;
    
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Syne', sans-serif;
    --container: 1320px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white-pure);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(230,184,0,0.08);
    border-radius: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--navy-deep);
    font-family: var(--font-display);
    line-height: 1.2;
}

.section-title .gold {
    color: var(--gold-primary);
}

.section-title.light {
    color: var(--white-pure);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    border-color: var(--white-pure);
    color: var(--white-pure);
}

.btn-outline:hover {
    background: var(--white-pure);
    color: var(--navy-deep);
}

.btn-gold {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border: none;
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230,184,0,0.3);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white-pure);
    color: var(--white-pure);
}

.btn-outline-light:hover {
    background: var(--white-pure);
    color: var(--navy-deep);
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--navy-deep);
    color: var(--navy-deep);
}

.btn-outline-dark:hover {
    background: var(--navy-deep);
    color: var(--white-pure);
}

/* ---------- UTILITY CLASSES ---------- */
.gold {
    color: var(--gold-primary);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-overlay {
    background: linear-gradient(90deg, rgba(10,25,41,0.95) 0%, rgba(10,25,41,0.6) 60%, rgba(10,25,41,0.2) 100%);
}

.dark-overlay {
    background: linear-gradient(90deg, rgba(10,25,41,0.95) 0%, rgba(10,25,41,0.9) 100%);
}