/* 
   modern-components.css
   Premium UI System for Don Bosco School
   Developed for Phase 1 & Phase 2 Modernization
*/

:root {
  --school-primary: #003366; /* Navy */
  --school-accent: #F25C3A;  /* Theme Orange */
  --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
  --glass-bg: rgba(255, 255, 255, 0.95);
}

/* 1. Page Hero V3 (Unified) */
.page-hero-v3 {
  background: var(--school-primary);
  padding: 30px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-content-v3 h1 {
  color: var(--school-accent);
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 2. Dynamic Page Wrapper */
.dynamic-page-wrap {
  padding: 60px 0;
  background-color: #f4f7f9;
  min-height: 400px;
}

/* 3. Modern Card Container */
.modern-card-container {
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255,255,255,0.8);
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

/* 4. Modern Table Styling */
.table-modern {
  border: none !important;
  margin-top: 10px;
}

.table-modern thead th {
  background-color: #fcfcfc;
  color: var(--school-primary) !important;
  border: none !important;
  border-bottom: 2px solid #f0f0f0 !important;
  padding: 15px !important;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.table-modern tbody td {
  padding: 15px !important;
  border: none !important;
  border-bottom: 1px solid #f5f5f5 !important;
  vertical-align: middle !important;
  color: #444;
}

.notice-main-title {
  font-weight: 700;
  color: #333;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 2px;
}

.notice-sub-title {
  color: #888;
  font-style: italic;
}

/* 5. Modern Buttons */
.modern-download-btn {
  background-color: var(--school-accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-download-btn:hover {
  background-color: var(--school-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 92, 58, 0.2);
}

/* 6. Professional Staff Grid & Cards */
.staff-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #f0f0f0;
  height: 100%;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(242, 92, 58, 0.12);
  border-color: var(--school-accent);
}

.staff-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-info {
  padding: 20px;
  text-align: center;
}

.staff-info h4 {
  color: var(--school-primary);
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

.staff-info p {
  color: #777;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 0;
}
