/**
 * Placer Partners - Luxury Industrial Theme
 */

:root {
    --pp-black: #000000;
    --pp-gold: #D4AF37;
    --pp-charcoal: #2a2a2a;
    --pp-white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--pp-black);
}

h2 {
    border-bottom: 3px solid var(--pp-gold);
    padding-bottom: 0.75rem;
}

.button, button {
    background-color: var(--pp-gold);
    color: var(--pp-black);
    border: 2px solid var(--pp-black);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.button:hover, button:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    border: 2px solid var(--pp-gold);
    padding: 10px 12px;
    border-radius: 4px;
}

.card, .portal-card {
    background-color: var(--pp-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover, .portal-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background-color: var(--pp-charcoal);
    color: var(--pp-white);
}

table th {
    padding: 12px;
    text-align: left;
    border-bottom: 3px solid var(--pp-gold);
}

table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-gold {
    background-color: var(--pp-gold);
    color: var(--pp-black);
}

.alert {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid var(--pp-gold);
}

@media (max-width: 768px) {
    .button, button {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
}
