/* Custom styles for Auxers Investment Portal */

:root {
    /* Brand Colors extracted from auxers.com */
    --auxers-orange: #D65F49; /* Terracotta Orange */
    --auxers-dark: #393940;   /* Deep Dark Gray */
    --auxers-black: #000000;
    --auxers-white: #FFFFFF;
    --auxers-gray-light: #F4F4F4;
}

/* Typography Overrides */
body {
    font-family: 'Inter', sans-serif;
    color: var(--auxers-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--auxers-black);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Uppercase headers for brand consistency */
.brand-header {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
}

/* Button Upgrades - Square & Solid */
.btn-primary {
    background-color: var(--auxers-orange);
    color: white;
    border-radius: 0px; /* Sharp corners */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid var(--auxers-orange);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--auxers-orange);
}

.btn-outline {
    background-color: transparent;
    color: var(--auxers-dark);
    border: 2px solid var(--auxers-dark);
    border-radius: 0px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

/* Inputs - Square & Clean */
input[type="text"],
input[type="email"],
input[type="password"],
select {
    border-radius: 0px !important;
    border: 1px solid #E5E5E5;
    background-color: #FAFAFA;
    transition: all 0.2s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--auxers-orange);
    box-shadow: none; /* Removed glow for cleaner look */
    background-color: white;
}

/* Cards - Flat & Sharp */
.card-sharp {
    border-radius: 0px;
    border: 1px solid #EAEAEA;
    background: white;
    /* Minimal shadow */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--auxers-dark);
    border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--auxers-orange);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Utility Links */
a.link-orange {
    color: var(--auxers-orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
a.link-orange:hover {
    color: var(--auxers-dark);
    text-decoration: underline;
}
