/* Imperial Offices — custom styles complementing Tailwind */
:root {
  --navy: #0f1e3c;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
}

/* Navbar */
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: #c9a84c; }
.nav-link.active { color: #c9a84c; }

/* Hero */
.hero-overlay {
  background: linear-gradient(135deg, rgba(15,30,60,0.88) 0%, rgba(15,30,60,0.65) 100%);
}

/* Gold button */
.btn-gold {
  background: #c9a84c;
  color: #0f1e3c;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-gold:hover {
  background: #e8c96a;
  transform: translateY(-1px);
}

/* Outline button */
.btn-outline {
  border: 2px solid #c9a84c;
  color: #c9a84c;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.75rem;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  background: #c9a84c;
  color: #0f1e3c;
}

/* Section divider */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1e3c;
}
.gold-bar {
  width: 56px;
  height: 3px;
  background: #c9a84c;
  margin: 0.75rem 0 1.5rem;
}

/* Cards */
.card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(15,30,60,0.12);
  transform: translateY(-3px);
}
.card-tag {
  background: #0f1e3c;
  color: #c9a84c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* Price badge */
.price-badge {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f1e3c;
}
.price-unit {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

/* Footer */
footer a:hover { color: #c9a84c; }

/* Mobile menu */
#mobile-menu { display: none; }
#mobile-menu.open { display: block; }

/* Login card */
.login-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(15,30,60,0.18);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}
