/* ===== GLOBAL TYPOGRAPHY SYSTEM ===== */

/* Paragraphs, links, buttons, UI text */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: inherit;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* Buttons & CTAs */
button,
input[type="button"],
input[type="submit"],
a.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}




.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-header h1 {
  margin-bottom: 5px;
}

.dashboard-header h2 {
  font-weight: normal;
  color: #555;
}

.dashboard-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.action-btn {
  background: #ff6f00;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.logout-btn {
  background: #444;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}


.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
}

.card button {
  margin-top: 15px;
  background: #ff6f00;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}


/* ============hover================ */

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}


/* ================button================= */

.action-btn,
.card button {
  border-radius: 6px;
  transition: background 0.3s ease;
}

.action-btn:hover,
.card button:hover {
  background: #e65c00;
}
