/* ==========================================================================
   More Pages Refinement Stylesheet (Pink Model School)
   ========================================================================== */

/* 1. Academic Calendar Events */
.calendar-event-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.calendar-event-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(30, 38, 109, 0.05);
}

.event-date-badge {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: var(--theme-color);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
}

.event-date-badge span.day {
  font-size: 22px;
  line-height: 1;
}

.event-date-badge span.month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-event-card.holiday .event-date-badge {
  background: #ff4757;
}

.calendar-event-card.PTM .event-date-badge {
  background: var(--theme-color2);
}

.calendar-event-card.Exam .event-date-badge {
  background: #2f3542;
}

/* 2. Bulletin Notice Boards (Circulars & Notices) */
.notice-bulletin-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(30, 38, 109, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.notice-bulletin-card::after {
  content: "\f08d";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: rgba(200, 155, 44, 0.15);
  transform: rotate(45deg);
}

.notice-bulletin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 38, 109, 0.06);
}

.notice-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color2);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* 3. Document Download Blocks */
.download-item-row {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
}

.download-item-row:hover {
  box-shadow: 0 8px 25px rgba(30, 38, 109, 0.05);
  border-color: rgba(200, 155, 44, 0.2);
}

.download-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.download-icon {
  font-size: 24px;
  color: #ff4757;
}

.download-title h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 4px;
}

.download-title span {
  font-size: 12px;
  color: #747d8c;
}

/* 4. RBSE Corner Guides */
.rbse-dashboard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(30, 38, 109, 0.04);
  border: 1px solid rgba(30, 38, 109, 0.05);
  height: 100%;
}

.rbse-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: rgba(30, 38, 109, 0.02);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  color: var(--theme-color);
  font-weight: 600;
  text-decoration: none;
}

.rbse-link-item:hover {
  background: var(--theme-color);
  color: #ffffff;
  padding-left: 20px;
}
