/* =========================
   Resume Pro Dark SaaS UI
   ========================= */

body.bg-dark {
  background: #0f172a;
  color: #e5e7eb;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Flex helpers */
.flex {
  display: flex;
}

.between {
  justify-content: space-between;
  align-items: center;
}

/* Header / Nav */
header {
  background: #020617;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav a {
  margin-left: 16px;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  color: #6366f1;
}

/* Buttons */
.btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #6366f1;
  color: white;
}

.btn.primary:hover {
  background: #4f46e5;
}

/* Cards */
.card {
  background: #020617;
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 90px 20px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero p {
  font-size: 16px;
  max-width: 600px;
  margin: auto;
  color: #9ca3af;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Pricing Boxes */
.pricing-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.pricing-box p {
  font-size: 28px;
  font-weight: bold;
  color: #6366f1;
}

/* Footer */
footer {
  background: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  padding: 30px 0;
}

/* Dashboard Layout (future use) */
.dashboard-wrapper {
  display: flex;
  min-height: 80vh;
}

.sidebar {
  width: 240px;
  background: #020617;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.sidebar a {
  display: block;
  color: #e5e7eb;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 6px;
}

.sidebar a:hover {
  background: #111827;
}

.dashboard-content {
  flex: 1;
  padding: 30px;
}

/* Forms */
input, textarea, select {
  width: 100%;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #6366f1;
}

/* Upload box */
.upload-box {
  border: 2px dashed rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  color: #9ca3af;
}
