/* * Aureum Vision | High-Class PMS Stylesheet
 * Brand: Aureum Hospitality Suite
 * Version: 1.0.0
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --aureum-gold: #af803a;
    --aureum-gold-glow: rgba(175, 128, 58, 0.4);
    --aureum-obsidian: #050505;
    --aureum-dark-grey: #121212;
    
    /* Text Colors */
    --text-primary: #af803a;
    --text-secondary: rgba(175, 128, 58, 0.7);
    --text-muted: rgba(175, 128, 58, 0.4);
    
    /* UI States */
    --status-success: #34d399;
    --status-warning: #fbbf24;
    --status-error: #f87171;
    --status-info: #60a5fa;

    /* Glassmorphism Specs */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(175, 128, 58, 0.2);
    --glass-blur: 20px;
    
    /* Shadows & Radii */
    --radius-lg: 24px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Global Reset & Base */
body {
    margin: 0;
    padding: 0;
    background-color: var(--aureum-obsidian);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Layout Containers */
.aureum-glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Typography Extensions */
.aureum-title-gold {
    color: var(--aureum-gold);
    letter-spacing: -0.02em;
}

.aureum-label {
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
}

/* PMS Data Tables */
.aureum-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.aureum-table th {
    text-align: left;
    padding: 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.aureum-table td {
    padding: 20px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(175, 128, 58, 0.1);
    transition: background 0.3s ease;
}

.aureum-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Interactive Elements */
.aureum-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    white-space: nowrap;
    text-decoration: none;
}

/* Small Variant */
.aureum-btn.btn-sm {
    padding: 4px 10px !important;
    font-size: 0.7rem;
    border-radius: var(--radius-sm);
    gap: 4px;
    letter-spacing: 0.05em;
}

.aureum-btn-primary {
    background-color: var(--aureum-gold);
    color: var(--aureum-obsidian);
}

.aureum-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--aureum-gold-glow);
}

.aureum-btn-outline {
    background: transparent;
    border-color: var(--glass-border);
    color: var(--text-primary);
}

.aureum-btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--aureum-gold);
}

/* Input Fields */
.aureum-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: white;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease;
}

.aureum-input:focus {
    outline: none;
    border-color: var(--aureum-gold);
    background: rgba(255, 255, 255, 0.05);
}

/* Fix for <select> dropdown background and text */
select.aureum-input option {
    background-color: var(--aureum-obsidian);
    color: white;
}

/* Ensure <select> elements themselves are readable */
select.aureum-input {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
}

/* Bootstrap Dropdown Overrides */
.dropdown-menu {
    background-color: var(--aureum-obsidian) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--shadow-soft) !important;
    backdrop-filter: blur(var(--glass-blur));
}

.dropdown-item {
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--aureum-gold) !important;
    color: var(--aureum-obsidian) !important;
}

.dropdown-divider {
    border-top: 1px solid var(--glass-border) !important;
}

/* Status Indicators */
.aureum-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.aureum-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-active .aureum-status-dot { background-color: var(--status-success); box-shadow: 0 0 8px var(--status-success); }
.status-pending .aureum-status-dot { background-color: var(--status-warning); }
.status-occupied .aureum-status-dot { background-color: var(--aureum-gold); }

/* Animation Utils */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.aureum-animate {
    animation: fadeIn 0.6s ease forwards;
}

/* Global Overrides for Text and Borders */
.text-white, 
.text-light,
.text-primary,
.text-secondary,
.text-info,
.text-warning,
.text-danger,
.text-success,
.text-dark { 
    color: var(--text-primary) !important; 
}

.border-primary,
.border-secondary,
.border-success,
.border-info,
.border-warning,
.border-danger,
.border-light,
.border-dark {
    border-color: var(--aureum-gold) !important;
}

/* Custom adjustment for muted text to be a variant of the new gold */
.text-muted {
    color: var(--text-muted) !important;
}