/* ============================================
   Index Page - Specific Styles
   Homepage-only styles that won't affect other pages
   ============================================ */

/* Hide the title block on index page */
#title-block-header {
  display: none !important;
}

/* WIP Banner - Index Page */
.wip-banner {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #f39c12;
  padding: 1rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 1200px;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wip-banner strong {
  font-weight: 600;
  color: #856404;
}

/* Dark mode for WIP banner */
@media (prefers-color-scheme: dark) {
  .wip-banner {
    background: linear-gradient(135deg, #3a3a2e 0%, #4a4a3a 100%);
    border-left-color: #f39c12;
    color: #ffeaa7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .wip-banner strong {
    color: #ffd93d;
  }
}

/* Hero Section - Full Page Image Showcase */
.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: -56px; /* Offset navbar height */
  padding-top: 56px; /* Add padding for navbar */
}

.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Disable any pointer events on hero image (extra safety) */
.hero-image img {
  pointer-events: none !important;
  cursor: default !important;
}

/* Spotlight Box - Information Container */
.spotlight-box {
  background: rgb(220, 220, 220);
  padding: 3rem;
  margin: 0;
  border-top: 3px solid var(--bs-primary);
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

html[data-bs-theme="dark"] .spotlight-box {
  background: rgb(80, 80, 80) !important;
}

.spotlight-box h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.spotlight-box p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 100%;
  margin: 0;
}

.spotlight-box a {
  color: var(--bs-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.spotlight-box a:hover {
  border-bottom-color: var(--bs-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .spotlight-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  .spotlight-box h2 {
    font-size: 1.8rem;
    white-space: normal;
  }
}
