/* ================================================================
   RESULTS 2025-26 SECTION — Additional styles for home.css
   ================================================================ */

/* ── Results Hero Banner ─────────────────────────────────────── */
.results-section {
  background: #0a1f44;
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.018) 0px,
    rgba(255,255,255,0.018) 1px,
    transparent 1px,
    transparent 22px
  );
  pointer-events: none;
}

/* gold glowing top strip */
.results-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f5a623, #ffcc5e, #f5a623, transparent);
}

.results-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}

/* ── Session Badge ───────────────────────────────────────────── */
.results-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1.5px solid rgba(245,166,35,0.40);
  border-radius: 50px;
  padding: 8px 20px 8px 10px;
  margin-bottom: 28px;
}

.results-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5a623;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.25);
  animation: pulse-dot 1.8s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,166,35,0.20); }
  50%       { box-shadow: 0 0 0 8px rgba(245,166,35,0.05); }
}

.results-badge span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f5a623;
}

/* ── Results heading ─────────────────────────────────────────── */
.results-heading {
  text-align: center;
  margin-bottom: 56px;
}

.results-heading h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.results-heading h2 span { color: #f5a623; }

.results-heading .accent-line {
  width: 60px;
  height: 3px;
  background: #f5a623;
  margin: 14px auto 0;
  border-radius: 3px;
}

/* ── Photo Gallery Grid ─────────────────────────────────────── */
.results-gallery {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
  margin-bottom: 64px;
}

.results-photo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.results-photo:first-child {
  grid-row: 1 / 3;
}

.results-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.results-photo:hover img {
  transform: scale(1.05);
}

.results-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,68,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.results-photo:hover .results-photo-overlay {
  opacity: 1;
}

/* ── Chairman Message Card ──────────────────────────────────── */
.chairman-msg-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.20);
  border-radius: 20px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}

.chairman-msg-wrap::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 32px;
  font-size: 180px;
  font-family: Georgia, serif;
  color: rgba(245,166,35,0.08);
  line-height: 1;
  pointer-events: none;
}

.chairman-msg-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  align-items: start;
}

/* Left: avatar + name */
.chairman-avatar-col { text-align: center; }

.chairman-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #f5a623;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  box-shadow: 0 0 0 6px rgba(245,166,35,0.15);
}

.chairman-avatar-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.chairman-role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #f5a623;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.chairman-sig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.10);
  border: 1px solid rgba(245,166,35,0.30);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}

.chairman-sig i { color: #f5a623; }

/* Right: message body */
.chairman-msg-body .to-line {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.chairman-msg-body .msg-paragraph {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.chairman-msg-body .msg-highlight {
  background: rgba(245,166,35,0.10);
  border-left: 3px solid #f5a623;
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  line-height: 1.8;
}

.chairman-msg-body .closing {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.chairman-msg-body .closing strong {
  color: #ffffff;
  font-weight: 700;
}

.chairman-msg-body .closing .school-name {
  color: #f5a623;
  font-weight: 600;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .results-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .results-photo:first-child { grid-row: auto; }
  .chairman-msg-grid { grid-template-columns: 1fr; gap: 28px; }
  .chairman-avatar-col { text-align: left; display: flex; align-items: center; gap: 20px; }
  .chairman-avatar { margin: 0; width: 80px; height: 80px; }
  .chairman-msg-wrap { padding: 32px 28px; }
}

@media (max-width: 600px) {
  .results-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .chairman-avatar-col { flex-direction: column; align-items: flex-start; }
}
