/* public/assets/css/style.css */
:root {
    --primary: #2596be;
    --primary-light: #4bb3d8;
    --primary-dark: #1b708e;
    --secondary: #007aff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --background: #f1f5f9;
    --card-bg: rgba(255, 255, 255, 0.85);
    --sidebar-bg: #1e293b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --radius: 12px;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    color: var(--text-main);
}

.main-content {
    flex: 1;
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Navbar */
.navbar {
    background: var(--sidebar-bg) !important;
    padding: 1rem 0;
}
.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Sidebar Simulation */
.admin-sidebar {
    background: var(--sidebar-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: white;
}
.admin-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}
.admin-nav-link:hover, .admin-nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
.admin-nav-link i {
    width: 24px;
    margin-right: 10px;
}

/* Food Cards */
.food-card {
    border: none;
    border-radius: var(--radius);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: white;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.food-card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-card:hover .food-card-img-top {
    transform: scale(1.05);
}

.price-tag {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
}

/* Admin Dashboard Stats */
.stat-card-premium {
    border: none;
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.2s;
    overflow: hidden;
    position: relative;
}
.stat-card-premium:hover {
    transform: scale(1.02);
}
.stat-card-premium .icon-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 5rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

/* Tables */
.table-premium {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
}
.table-premium thead th {
    background: #f8fafc;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}
.table-premium tbody td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

/* Animations */
.micro-fade {
    animation: fadeIn 0.4s ease-in-out;
}

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

/* Hero Section (Restored) */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
