:root {
  --hotel-classic-dark: #1e3a5f;
  --hotel-classic-gold: #c49b63;
  --hotel-classic-bg: #f4f6f9;
  
  /* Default (Classic) */
  --hotel-dark: var(--hotel-classic-dark);
  --hotel-gold: var(--hotel-classic-gold);
  --hotel-bg: var(--hotel-classic-bg);
  --hotel-card-bg: #ffffff;
  --hotel-text: #334155;
  --hotel-navbar-text: #ffffff;
}

[data-theme="dark"] {
  --hotel-dark: #0f172a;
  --hotel-gold: #c49b63;
  --hotel-bg: #020617;
  --hotel-card-bg: #1e293b;
  --hotel-text: #f1f5f9;
  --hotel-navbar-text: #ffffff;
}

[data-theme="light"] {
  --hotel-dark: #334155;
  --hotel-gold: #0ea5e9;
  --hotel-bg: #ffffff;
  --hotel-card-bg: #f8fafc;
  --hotel-text: #0f172a;
  --hotel-navbar-text: #ffffff;
}

body { color: var(--hotel-text); background-color: var(--hotel-bg); }
.bg-light { background-color: var(--hotel-bg) !important; }
.bg-white { background-color: var(--hotel-card-bg) !important; }
.card { background-color: var(--hotel-card-bg); color: var(--hotel-text); }
.text-dark { color: var(--hotel-text) !important; }
.text-muted { color: var(--hotel-text) !important; opacity: 0.7; }

.navbar-hotel {
  background-color: var(--hotel-dark);
  border-bottom: 3px solid var(--hotel-gold);
}
.text-gold { color: var(--hotel-gold); }
