/* Base Brand Styles */
:root {
    --brand-primary: #667eea;
    --brand-secondary: #764ba2;
    --text-color: #2d2d2d;
    --bg-color: #ffffff;

    /* ALGPT Gold Palette */
    --algpt-gold-main: #C9A24D;
    --algpt-gold-soft: #E6C77A;
    --algpt-gold-dark: #9F7F2E;

    --accent-primary: var(--algpt-gold-main);
    --accent-secondary: var(--algpt-gold-soft);
    --accent-dark: var(--algpt-gold-dark);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.brand-text {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Hero Title Gradient */
.hero-title-gradient {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ffffff 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* RTL support – inactive unless enabled */
html[dir="rtl"] {
    direction: rtl;
}

