:root {
  --primary: #bc2c3d; /* Crimson red */
  --primary-dark: #8a1c29;
  --secondary: #2c3e50;
  --bg: #fdfbf7; /* Cream */
  --white: #ffffff;
  --gray: #e5e7eb;
  --text: #1f2937;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.site-header { background: var(--white); border-bottom: 1px solid var(--gray); position: sticky; top: 0; z-index: 50; padding: 15px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }

/* Navigation */
.nav a { text-decoration: none; color: var(--secondary); margin-left: 20px; font-weight: 500; transition: 0.2s; }
.nav a:hover { color: var(--primary); }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-decoration: none; font-family: 'Dancing Script', cursive; }

/* Buttons & Forms */
.btn { display: inline-block; padding: 10px 20px; border-radius: var(--radius); text-decoration: none; font-weight: 600; cursor: pointer; border: none; transition: 0.2s; font-size: 0.95rem; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: transparent; border: 1px solid var(--gray); color: var(--secondary); }
.btn-ghost:hover { border-color: var(--secondary); background: white; }

input, select, textarea { width: 100%; padding: 12px; border: 1px solid var(--gray); border-radius: var(--radius); margin-bottom: 10px; font-family: inherit; }
input:focus { outline: 2px solid var(--primary); border-color: transparent; }

/* Cards & Grid */
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; margin-bottom: 20px; border: 1px solid var(--gray); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

/* Admin Tables */
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px; text-align: left; border-bottom: 1px solid var(--gray); }
th { background: #f9fafb; font-weight: 600; }
.status-pending { background: #fff7ed; color: #c2410c; padding: 4px 8px; border-radius: 4px; font-size: 0.85rem; font-weight: bold; }
.status-confirmed { background: #ecfdf5; color: #047857; padding: 4px 8px; border-radius: 4px; font-size: 0.85rem; font-weight: bold; }

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.alert { padding: 15px; border-radius: var(--radius); margin-bottom: 20px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }