/* ===========================================
   GLOBAL.CSS — Brand Theme & Globals
   =========================================== */

/* ------------ VARIABLES ------------ */
:root {
    --gold: #d4af37;
    --gold-light: #e8c96e;

    --black: #0a0a0a;
    --graphite: #141414;

    --white: #ffffff;
    --gray-light: #f4f4f4;
    --gray-soft: #e6e6e6;

    --max-width: 1400px;

    --transition-fast: 0.25s ease;
    --transition-med: 0.45s ease;
}

/* ------------ GLOBAL LAYOUT ------------ */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

/* ------------ TYPOGRAPHY ------------ */
h1, h2, h3, h4 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    color: #dcdcdc;
    line-height: 1.6;
}

/* ------------ BUTTONS ------------ */
.btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-light {
    background: var(--gray-light);
    color: var(--black);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
}

.btn-gold-outline {
    padding: 10px 22px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* Larger CTA button */
.btn-large {
    padding: 18px 40px;
    font-size: 1.25rem;
}

/* Links */
a {
    transition: 0.2s ease;
}
a:hover {
    opacity: 0.8;
}

.form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-row.full-width {
    grid-column: 1 / 3;
}

.form-row label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #bbb;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #fff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}
