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

:root {
    --primary: #c84132;
    --primary-hover: #a83227;
    --secondary: #2c3e50;
    --bg-body: #f8f9fa;
    --bg-card: rgba(255, 255, 255, 0.9);
    --text-main: #333;
    --text-light: #666;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    background-image: radial-gradient(circle at 10% 20%, rgba(200, 65, 50, 0.05) 0%, transparent 40%);
    min-height: 100vh;
}

/* Glassmorphism Container */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 10px;
}

.btn-modern:hover {
    background-color: var(--primary-hover);
    transform: scale(1.02);
}

.btn-secondary-modern {
    background-color: var(--secondary);
}

/* Forms */
.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-group-modern label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-input-modern {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
}

.form-input-modern:focus {
    border-color: var(--primary);
    outline: none;
    background-color: white;
}

/* Header */
.app-header {
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 40px;
    border-radius: 8px;
}

/* Navigation */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-card {
    text-align: center;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
}

.nav-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.nav-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

/* Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: #d1e7dd; color: #0a3622; }
.status-rejected { background: #f8d7da; color: #842029; }

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

.animate-fade {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr 1fr;
    }
}
