/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: #f4f6fb;
  color: #1f2937;
  line-height: 1.7;
}

/* ================= HEADER ================= */
.dashboard-header {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 22px 40px;
}

.dash-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  height: 200px;
    width: auto;
    display: middle
}

.header-text h1 {
  font-size: 24px;
  color: #eab308;
  font-weight: 600;
}

.header-text span {
  font-size: 13px;
  color: #cbd5e1;
}

.dash-apply-btn {
  background: #eab308;
  color: #0f172a;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.dash-apply-btn:hover {
  background: #fde047;
  transform: translateY(-1px);
}

/* ================= SECTIONS ================= */
.dashboard-section {
  padding: 70px 60px;
}

.dashboard-section h2 {
  font-size: 26px;
  margin-bottom: 35px;
  text-align: center;
  color: #0f172a;
}

/* ================= ANNOUNCEMENTS ================= */
#announcement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.announcement-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.announcement-card:hover {
  transform: translateY(-5px);
}

.announcement-card h4 {
  color: #0f172a;
  margin-bottom: 8px;
}

.announcement-card span {
  font-size: 12px;
  color: #64748b;
}

/* ================= COURSES ================= */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.course-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

.course-card:hover {
  transform: translateY(-6px);
}

.course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-card h3 {
  padding: 18px 18px 6px;
  font-size: 18px;
  color: #0f172a;
}

.course-card p {
  padding: 0 18px;
  font-size: 14px;
  color: #475569;
}

.course-card .price {
  padding: 14px 18px;
  font-weight: 600;
  color: #0f172a;
}

.course-card button {
  margin: 0 18px 20px;
  width: calc(100% - 36px);
  padding: 12px;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.course-card button:hover {
  background: #1e293b;
}

/* ================= COMBO ================= */
.combo-courses {
  background: #0f172a;
  color: #f8fafc;
}

.combo-courses h2 {
  color: #eab308;
}

.combo-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.combo-card {
  background: #1e293b;
  padding: 18px;
  border-radius: 18px;
  transition: 0.3s;
}

.combo-card:hover {
  transform: translateY(-4px);
}

.combo-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}

.combo-card h4 {
  margin: 10px 0 6px;
  color: #eab308;
}

.combo-card p {
  font-size: 14px;
  color: #cbd5f5;
}

.combo-card input {
  margin-bottom: 8px;
  transform: scale(1.15);
}

/* ================= COMBO PRICE ================= */
.combo-price-display {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
}

.combo-price-display button {
  margin-top: 14px;
  padding: 12px 36px;
  background: #eab308;
  color: #0f172a;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.combo-price-display button:hover {
  background: #fde047;
}

/* ================= SCHEDULE ================= */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.schedule-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.schedule-card h3 {
  color: #0f172a;
  margin-bottom: 6px;
}

/* ================= FOOTER ================= */
.dashboard-footer {
  background: #0f172a;
  color: #cbd5e1;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .dash-header-inner {
    flex-direction: column;
    text-align: center;
  }

  .dashboard-section {
    padding: 50px 20px;
  }
}